mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
1eb8155fa0
Licence details can be found in the file COPYING. and thank God for sed. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5211 a592a061-630c-0410-9148-cb99ea01b6c8
61 lines
1.5 KiB
C
61 lines
1.5 KiB
C
/**
|
|
* \file xforms/FormTabularCreate.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Jürgen Vigna
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#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()
|
|
: base_class(_("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);
|
|
}
|