/*************************************************************************** dlglrc.cpp - description ------------------- copyright : (C) 2003 by Peter Hedlund email : peter.hedlund@kdemail.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include #include #include "dlgrc.h" DlgRC::DlgRC(TQWidget *parent, const char *name, bool modal): KDialogBase(Swallow, i18n("Rows & Columns"), Ok|Cancel, Ok, parent, name, modal, true) { dlgBase = new DlgRCBase( this, "Dlg" ); setMainWidget(dlgBase); dlgBase->txtNumRows->setFocus(); } DlgRC::~DlgRC() { } void DlgRC::setNumRows( int r ) { dlgBase->txtNumRows->setText(TQString::number(r, 10)); } void DlgRC::setRowHeight( int h ) { dlgBase->txtRowHeight->setText(TQString::number(h, 10)); } void DlgRC::setColWidth( int w ) { dlgBase->txtColWidth->setText(TQString::number(w, 10)); } int DlgRC::numRows( ) { return dlgBase->txtNumRows->text().toInt(); } int DlgRC::rowHeight( ) { return dlgBase->txtRowHeight->text().toInt(); } int DlgRC::colWidth( ) { return dlgBase->txtColWidth->text().toInt(); } #include "dlgrc.moc"