summaryrefslogtreecommitdiffstats
path: root/kwordquiz/src/wqprintdialogpage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kwordquiz/src/wqprintdialogpage.cpp')
-rw-r--r--kwordquiz/src/wqprintdialogpage.cpp83
1 files changed, 83 insertions, 0 deletions
diff --git a/kwordquiz/src/wqprintdialogpage.cpp b/kwordquiz/src/wqprintdialogpage.cpp
new file mode 100644
index 00000000..2e5710d1
--- /dev/null
+++ b/kwordquiz/src/wqprintdialogpage.cpp
@@ -0,0 +1,83 @@
+/* This file is part of KWordQuiz
+ Copyright (C) 2004 Peter Hedlund <peter.hedlund@kdemail.net>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License version 2 as published by the Free Software Foundation.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ Boston, MA 02110-1301, USA.
+*/
+
+#include <qbuttongroup.h>
+#include <qradiobutton.h>
+#include <qlayout.h>
+#include <qwhatsthis.h>
+
+#include <klocale.h>
+
+#include "wqprintdialogpage.h"
+
+WQPrintDialogPage::WQPrintDialogPage(QWidget *parent, const char *name )
+ : KPrintDialogPage( parent, name )
+{
+ setTitle(i18n("Vocabulary Options"));
+
+ QGridLayout * l = new QGridLayout( this, 1, 1, 11, 6);
+
+ g = new QButtonGroup(i18n("Select Type of Printout"), this );
+ g->setColumnLayout(0, Qt::Vertical );
+ g->layout()->setSpacing( 6 );
+ g->layout()->setMargin( 11 );
+ QGridLayout * v = new QGridLayout( g->layout() );
+ v->setAlignment( Qt::AlignTop );
+
+ rb0 = new QRadioButton(i18n("Vocabulary &list"), g );
+ v->addWidget( rb0, 0, 0 );
+ rb1 = new QRadioButton(i18n("Vocabulary e&xam"), g);
+ v->addWidget( rb1, 1, 0 );
+ rb2 = new QRadioButton(i18n("&Flashcards"), g);
+ v->addWidget( rb2, 2, 0 );
+ l->addWidget( g, 0, 0 );
+
+ QWhatsThis::add(g, i18n("Specify type of printout to make"));
+ QWhatsThis::add(rb0, i18n("Select to print the vocabulary as displayed in the editor"));
+ QWhatsThis::add(rb1, i18n("Select to print the vocabulary as a vocabulary exam"));
+ QWhatsThis::add(rb2, i18n("Select to print flashcards"));
+}
+
+
+WQPrintDialogPage::~WQPrintDialogPage()
+{
+}
+
+void WQPrintDialogPage::getOptions(QMap< QString, QString > & opts, bool incldef)
+{
+ opts[ "kde-kwordquiz-type" ] = QString::number(g->selectedId());
+}
+
+void WQPrintDialogPage::setOptions(const QMap< QString, QString > & opts )
+{
+ QString type = opts[ "kde-kwordquiz-type" ];
+ switch (type.toInt())
+ {
+ case 0: rb0->setChecked(true); break;
+ case 1: rb1->setChecked(true); break;
+ case 2: rb2->setChecked(true); break;
+ }
+}
+
+bool WQPrintDialogPage::isValid(const QString & msg )
+{
+ return true;
+}
+
+
+#include "wqprintdialogpage.moc"