2006-03-05 17:24:44 +00:00
|
|
|
/**
|
|
|
|
* \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 {
|
|
|
|
|
2007-03-22 23:07:24 +00:00
|
|
|
typedef QController<ControlTabularCreate, QView<QTabularCreateDialog> > tabularcreate_base_class;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
QTabularCreate::QTabularCreate(Dialog & parent)
|
2007-03-22 23:07:24 +00:00
|
|
|
: tabularcreate_base_class(parent, _("Insert Table"))
|
2006-03-05 17:24:44 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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
|