lyx_mirror/src/frontends/qt4/GuiTabularCreate.cpp
André Pönitz 540a00cd02 next one
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20773 a592a061-630c-0410-9148-cb99ea01b6c8
2007-10-06 09:39:29 +00:00

105 lines
1.8 KiB
C++

/**
* \file GuiTabularCreate.cpp
* 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 "GuiTabularCreate.h"
#include "EmptyTable.h"
#include "FuncRequest.h"
#include "support/convert.h"
#include <QCloseEvent>
#include <QSpinBox>
#include <QPushButton>
using std::string;
namespace lyx {
namespace frontend {
GuiTabularCreate::GuiTabularCreate(LyXView & lv)
: GuiDialog(lv, "tabularcreate"), Controller(this)
{
setupUi(this);
setViewTitle(_("Insert Table"));
setController(this, false);
rowsSB->setValue(5);
columnsSB->setValue(5);
connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
connect(rowsSB, SIGNAL(valueChanged(int)),
this, SLOT(rowsChanged(int)));
connect(columnsSB, SIGNAL(valueChanged(int)),
this, SLOT(columnsChanged(int)));
bc().setPolicy(ButtonPolicy::IgnorantPolicy);
bc().setOK(okPB);
bc().setCancel(closePB);
}
void GuiTabularCreate::columnsChanged(int)
{
changed();
}
void GuiTabularCreate::rowsChanged(int)
{
changed();
}
void GuiTabularCreate::applyView()
{
params_.first = rowsSB->value();
params_.second = columnsSB->value();
}
bool GuiTabularCreate::initialiseParams(string const &)
{
params_.first = 5;
params_.second = 5;
return true;
}
void GuiTabularCreate::clearParams()
{
params_.first = 0;
params_.second = 0;
}
void GuiTabularCreate::dispatchParams()
{
string const data = convert<string>(params().first) + ' ' + convert<string>(params().second);
dispatch(FuncRequest(getLfun(), data));
}
Dialog * createGuiTabularCreate(LyXView & lv)
{
return new GuiTabularCreate(lv);
}
} // namespace frontend
} // namespace lyx
#include "GuiTabularCreate_moc.cpp"