mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
a70b4ef051
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9874 a592a061-630c-0410-9148-cb99ea01b6c8
52 lines
947 B
C
52 lines
947 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/convert.h"
|
|
|
|
|
|
using std::string;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
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 const data = convert<string>(params().first) + ' ' + convert<string>(params().second);
|
|
kernel().dispatch(FuncRequest(getLfun(), data));
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|