mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
12e5a52b92
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13294 a592a061-630c-0410-9148-cb99ea01b6c8
51 lines
1005 B
C
51 lines
1005 B
C
/**
|
|
* \file QTabularCreate.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "QTabularCreateDialog.h"
|
|
#include "QTabularCreate.h"
|
|
#include "Qt2BC.h"
|
|
|
|
#include "controllers/ControlTabularCreate.h"
|
|
|
|
#include <qspinbox.h>
|
|
#include <qpushbutton.h>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
typedef QController<ControlTabularCreate, QView<QTabularCreateDialog> > base_class;
|
|
|
|
|
|
QTabularCreate::QTabularCreate(Dialog & parent)
|
|
: base_class(parent, _("Insert Table"))
|
|
{
|
|
}
|
|
|
|
|
|
void QTabularCreate::build_dialog()
|
|
{
|
|
dialog_.reset(new QTabularCreateDialog(this));
|
|
|
|
bcview().setOK(dialog_->okPB);
|
|
bcview().setCancel(dialog_->closePB);
|
|
}
|
|
|
|
|
|
void QTabularCreate::apply()
|
|
{
|
|
controller().params().first = dialog_->rowsSB->value();
|
|
controller().params().second = dialog_->columnsSB->value();
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|