lyx_mirror/src/frontends/controllers/ControlTabularCreate.C
Angus Leeming 0be0fcfd59 If I ever see another licence blurb again, it'll be too soon...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7598 a592a061-630c-0410-9148-cb99ea01b6c8
2003-08-23 00:17:00 +00:00

44 lines
827 B
C

/**
* \file ControlTabularCreate.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author unknown
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "ControlTabularCreate.h"
#include "funcrequest.h"
#include "support/tostr.h"
ControlTabularCreate::ControlTabularCreate(Dialog & parent)
: Dialog::Controller(parent)
{}
bool ControlTabularCreate::initialiseParams(string const &)
{
params_.first = 5;
params_.second = 5;
return true;
}
void ControlTabularCreate::clearParams()
{
params_.first = 0;
params_.second = 0;
}
void ControlTabularCreate::dispatchParams()
{
string data = tostr(params().first) + ' ' + tostr(params().second);
kernel().dispatch(FuncRequest(LFUN_TABULAR_INSERT, data));
}