From ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- kwordquiz/src/wqprintdialogpage.cpp | 83 +++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 kwordquiz/src/wqprintdialogpage.cpp (limited to 'kwordquiz/src/wqprintdialogpage.cpp') 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 + + 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 +#include +#include +#include + +#include + +#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" -- cgit v1.2.1