lyx_mirror/src/frontends/qt2/QTabularCreate.C
Angus Leeming 1e3d2fce7f No longer pass Controller & or Dialogs & to the View c-tors.
GUI now contains a controller rather than derives from a controller.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4942 a592a061-630c-0410-9148-cb99ea01b6c8
2002-08-12 14:28:43 +00:00

47 lines
868 B
C

/**
* \file QTabularCreate.C
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author John Levon <moz@compsoc.man.ac.uk>
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "ControlTabularCreate.h"
#include "QTabularCreateDialog.h"
#include "QTabularCreate.h"
#include "Qt2BC.h"
#include "gettext.h"
#include "debug.h"
#include <qspinbox.h>
#include <qpushbutton.h>
typedef Qt2CB<ControlTabularCreate, Qt2DB<QTabularCreateDialog> > base_class;
QTabularCreate::QTabularCreate()
: base_class(_("Insert table"))
{
}
void QTabularCreate::build_dialog()
{
dialog_.reset(new QTabularCreateDialog(this));
bc().setOK(dialog_->okPB);
bc().setCancel(dialog_->closePB);
}
void QTabularCreate::apply()
{
controller().params().first = dialog_->rowsSB->value();
controller().params().second = dialog_->columnsSB->value();
}