mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
4792af4928
some assert related to grfx, help me Angus :) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4596 a592a061-630c-0410-9148-cb99ea01b6c8
47 lines
906 B
C
47 lines
906 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(ControlTabularCreate & c, Dialogs &)
|
|
: base_class(c, _("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();
|
|
}
|