/** * \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 #include "GuiTabularCreate.h" #include "Qt2BC.h" #include "EmptyTable.h" #include #include #include namespace lyx { namespace frontend { ///////////////////////////////////////////////////////////////////// // // GuiTabularCreateDialog // ///////////////////////////////////////////////////////////////////// GuiTabularCreateDialog::GuiTabularCreateDialog(GuiTabularCreate * form) : form_(form) { setupUi(this); rowsSB->setValue(5); columnsSB->setValue(5); connect(okPB, SIGNAL(clicked()), form_, SLOT(slotOK())); connect(closePB, SIGNAL(clicked()), form_, SLOT(slotClose())); connect(rowsSB, SIGNAL(valueChanged(int)), this, SLOT(rowsChanged(int))); connect(columnsSB, SIGNAL(valueChanged(int)), this, SLOT(columnsChanged(int))); } void GuiTabularCreateDialog::columnsChanged(int) { form_->changed(); } void GuiTabularCreateDialog::rowsChanged(int) { form_->changed(); } ///////////////////////////////////////////////////////////////////// // // GuiTabularCreate // ///////////////////////////////////////////////////////////////////// GuiTabularCreate::GuiTabularCreate(Dialog & parent) : GuiView(parent, _("Insert Table")) { } void GuiTabularCreate::build_dialog() { dialog_.reset(new GuiTabularCreateDialog(this)); bcview().setOK(dialog_->okPB); bcview().setCancel(dialog_->closePB); } void GuiTabularCreate::apply() { controller().params().first = dialog_->rowsSB->value(); controller().params().second = dialog_->columnsSB->value(); } } // namespace frontend } // namespace lyx #include "GuiTabularCreate_moc.cpp"