summaryrefslogtreecommitdiffstats
path: root/kwordquiz/src/dlgrc.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 (patch)
treed3bb9f5d25a2dc09ca81adecf39621d871534297 /kwordquiz/src/dlgrc.cpp
downloadtdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.tar.gz
tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kwordquiz/src/dlgrc.cpp')
-rw-r--r--kwordquiz/src/dlgrc.cpp65
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"