blob: 1fc6ad37d784cd74af276951c7b279d770d90cd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#include <qcheckbox.h>
#include <qlayout.h>
#include <qwidget.h>
#include <klocale.h>
#include <kdialog.h>
#include <kdebug.h>
#include "printdialogpage.h"
PrintDialogPage::PrintDialogPage(QWidget *parent, const char *name)
: KPrintDialogPage( parent, name )
{
setTitle(i18n("Kolf Options"));
QVBoxLayout *layout = new QVBoxLayout(this, KDialog::marginHint(), KDialog::spacingHint());
titleCheck = new QCheckBox(i18n("Draw title text"), this);
titleCheck->setChecked(true);
layout->addWidget(titleCheck);
}
void PrintDialogPage::getOptions(QMap<QString, QString> &opts, bool /*incldef*/)
{
opts["kde-kolf-title"] = titleCheck->isChecked()? "true" : "false";
}
void PrintDialogPage::setOptions(const QMap<QString, QString> &opts)
{
QString setting = opts["kde-kolf-title"];
if (!!setting)
titleCheck->setChecked(setting == "true");
}
#include "printdialogpage.moc"
|