diff options
Diffstat (limited to 'kwordquiz/src/dlgrc.cpp')
-rw-r--r-- | kwordquiz/src/dlgrc.cpp | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/kwordquiz/src/dlgrc.cpp b/kwordquiz/src/dlgrc.cpp new file mode 100644 index 00000000..07694b63 --- /dev/null +++ b/kwordquiz/src/dlgrc.cpp @@ -0,0 +1,65 @@ +/*************************************************************************** + 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 <klocale.h> +#include <krestrictedline.h> + +#include "dlgrc.h" + +DlgRC::DlgRC(QWidget *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(QString::number(r, 10)); +} + +void DlgRC::setRowHeight( int h ) +{ + dlgBase->txtRowHeight->setText(QString::number(h, 10)); +} + +void DlgRC::setColWidth( int w ) +{ + dlgBase->txtColWidth->setText(QString::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" |