summaryrefslogtreecommitdiffstats
path: root/kdeprint/cups/cupsdconf2/cupsdjobspage.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
commitce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch)
tree5ac38a06f3dde268dc7927dc155896926aaf7012 /kdeprint/cups/cupsdconf2/cupsdjobspage.cpp
downloadtdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz
tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.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/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeprint/cups/cupsdconf2/cupsdjobspage.cpp')
-rw-r--r--kdeprint/cups/cupsdconf2/cupsdjobspage.cpp123
1 files changed, 123 insertions, 0 deletions
diff --git a/kdeprint/cups/cupsdconf2/cupsdjobspage.cpp b/kdeprint/cups/cupsdconf2/cupsdjobspage.cpp
new file mode 100644
index 000000000..bfb2832eb
--- /dev/null
+++ b/kdeprint/cups/cupsdconf2/cupsdjobspage.cpp
@@ -0,0 +1,123 @@
+/*
+ * This file is part of the KDE libraries
+ * Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
+ *
+ * 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 "cupsdjobspage.h"
+#include "cupsdconf.h"
+
+#include <qlabel.h>
+#include <qcheckbox.h>
+#include <qlayout.h>
+#include <qwhatsthis.h>
+
+#include <klocale.h>
+#include <knuminput.h>
+
+CupsdJobsPage::CupsdJobsPage(QWidget *parent, const char *name)
+ : CupsdPage(parent, name)
+{
+ setPageLabel(i18n("Jobs"));
+ setHeader(i18n("Print Jobs Settings"));
+ setPixmap("fileprint");
+
+ keepjobhistory_ = new QCheckBox(i18n("Preserve job history"), this);
+ keepjobfiles_ = new QCheckBox(i18n("Preserve job files"), this);
+ autopurgejobs_ = new QCheckBox(i18n("Auto purge jobs"), this);
+ maxjobs_ = new KIntNumInput(this);
+ maxjobsperprinter_ = new KIntNumInput(this);
+ maxjobsperuser_ = new KIntNumInput(this);
+
+ maxjobs_->setRange(0, 1000, 1, true);
+ maxjobs_->setSteps(1, 10);
+ maxjobs_->setSpecialValueText(i18n("Unlimited"));
+ maxjobsperprinter_->setRange(0, 1000, 1, true);
+ maxjobsperprinter_->setSpecialValueText(i18n("Unlimited"));
+ maxjobsperprinter_->setSteps(1, 10);
+ maxjobsperuser_->setRange(0, 1000, 1, true);
+ maxjobsperuser_->setSpecialValueText(i18n("Unlimited"));
+ maxjobsperuser_->setSteps(1, 10);
+
+ QLabel *l1 = new QLabel(i18n("Max jobs:"), this);
+ QLabel *l2 = new QLabel(i18n("Max jobs per printer:"), this);
+ QLabel *l3 = new QLabel(i18n("Max jobs per user:"), this);
+
+ QGridLayout *m1 = new QGridLayout(this, 7, 2, 10, 7);
+ m1->setRowStretch(6, 1);
+ m1->setColStretch(1, 1);
+ m1->addWidget(keepjobhistory_, 0, 1);
+ m1->addWidget(keepjobfiles_, 1, 1);
+ m1->addWidget(autopurgejobs_, 2, 1);
+ m1->addWidget(l1, 3, 0, Qt::AlignRight);
+ m1->addWidget(l2, 4, 0, Qt::AlignRight);
+ m1->addWidget(l3, 5, 0, Qt::AlignRight);
+ m1->addWidget(maxjobs_, 3, 1);
+ m1->addWidget(maxjobsperprinter_, 4, 1);
+ m1->addWidget(maxjobsperuser_, 5, 1);
+
+ connect(keepjobhistory_, SIGNAL(toggled(bool)), SLOT(historyChanged(bool)));
+ keepjobhistory_->setChecked(true);
+}
+
+bool CupsdJobsPage::loadConfig(CupsdConf *conf, QString&)
+{
+ conf_ = conf;
+ keepjobhistory_->setChecked(conf_->keepjobhistory_);
+ if (conf_->keepjobhistory_)
+ {
+ keepjobfiles_->setChecked(conf_->keepjobfiles_);
+ autopurgejobs_->setChecked(conf_->autopurgejobs_);
+ }
+ maxjobs_->setValue(conf_->maxjobs_);
+ maxjobsperprinter_->setValue(conf_->maxjobsperprinter_);
+ maxjobsperuser_->setValue(conf_->maxjobsperuser_);
+
+ return true;
+}
+
+bool CupsdJobsPage::saveConfig(CupsdConf *conf, QString&)
+{
+ conf->keepjobhistory_ = keepjobhistory_->isChecked();
+ if (conf->keepjobhistory_)
+ {
+ conf->keepjobfiles_ = keepjobfiles_->isChecked();
+ conf->autopurgejobs_ = autopurgejobs_->isChecked();
+ }
+ conf->maxjobs_ = maxjobs_->value();
+ conf->maxjobsperprinter_ = maxjobsperprinter_->value();
+ conf->maxjobsperuser_ = maxjobsperuser_->value();
+
+ return true;
+}
+
+void CupsdJobsPage::setInfos(CupsdConf *conf)
+{
+ QWhatsThis::add(keepjobhistory_, conf->comments_.toolTip("preservejobhistory"));
+ QWhatsThis::add(keepjobfiles_, conf->comments_.toolTip("preservejobfiles"));
+ QWhatsThis::add(autopurgejobs_, conf->comments_.toolTip("autopurgejobs"));
+ QWhatsThis::add(maxjobs_, conf->comments_.toolTip("maxjobs"));
+ QWhatsThis::add(maxjobsperprinter_, conf->comments_.toolTip("maxjobsperprinter"));
+ QWhatsThis::add(maxjobsperuser_, conf->comments_.toolTip("maxjobsperuser"));
+}
+
+void CupsdJobsPage::historyChanged(bool on)
+{
+ keepjobfiles_->setEnabled(on);
+ autopurgejobs_->setEnabled(on);
+}
+
+#include "cupsdjobspage.moc"