mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
5fd921e9e6
Dialogs.h: remove static from redrawGUI and toggleTooltips. And changes because of this. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4517 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.4 KiB
C
59 lines
1.4 KiB
C
/**
|
|
* \file xforms/FormTabularCreate.C
|
|
* Copyright 2000-2001 The LyX Team.
|
|
* See the file COPYING.
|
|
*
|
|
* \author Jürgen Vigna, jug@sad.it
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <utility>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "xformsBC.h"
|
|
#include "ControlTabularCreate.h"
|
|
#include "FormTabularCreate.h"
|
|
#include "forms/form_tabular_create.h"
|
|
#include "support/lstrings.h"
|
|
#include FORMS_H_LOCATION
|
|
|
|
|
|
using std::make_pair;
|
|
|
|
|
|
typedef FormCB<ControlTabularCreate, FormDB<FD_tabular_create> > base_class;
|
|
|
|
FormTabularCreate::FormTabularCreate(ControlTabularCreate & c, Dialogs & d)
|
|
: base_class(c, d, _("Insert Tabular"))
|
|
{}
|
|
|
|
|
|
void FormTabularCreate::build()
|
|
{
|
|
dialog_.reset(build_tabular_create(this));
|
|
|
|
fl_set_slider_bounds(dialog_->slider_rows, 1, 50);
|
|
fl_set_slider_bounds(dialog_->slider_columns, 1, 50);
|
|
fl_set_slider_value(dialog_->slider_rows, 5);
|
|
fl_set_slider_value(dialog_->slider_columns, 5);
|
|
fl_set_slider_precision(dialog_->slider_rows, 0);
|
|
fl_set_slider_precision(dialog_->slider_columns, 0);
|
|
|
|
// Manage the ok, apply and cancel/close buttons
|
|
bc().setOK(dialog_->button_ok);
|
|
bc().setApply(dialog_->button_apply);
|
|
bc().setCancel(dialog_->button_close);
|
|
}
|
|
|
|
|
|
void FormTabularCreate::apply()
|
|
{
|
|
unsigned int ysize = (unsigned int)(fl_get_slider_value(dialog_->slider_columns) + 0.5);
|
|
unsigned int xsize = (unsigned int)(fl_get_slider_value(dialog_->slider_rows) + 0.5);
|
|
|
|
controller().params() = make_pair(xsize, ysize);
|
|
}
|