summaryrefslogtreecommitdiffstats
path: root/tdeprint/cups/kpschedulepage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeprint/cups/kpschedulepage.cpp')
-rw-r--r--tdeprint/cups/kpschedulepage.cpp282
1 files changed, 282 insertions, 0 deletions
diff --git a/tdeprint/cups/kpschedulepage.cpp b/tdeprint/cups/kpschedulepage.cpp
new file mode 100644
index 000000000..4d8bab4d1
--- /dev/null
+++ b/tdeprint/cups/kpschedulepage.cpp
@@ -0,0 +1,282 @@
+/*
+ * This file is part of the KDE libraries
+ * Copyright (c) 2001 Michael Goffioul <tdeprint@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 "kpschedulepage.h"
+
+#include <tqlabel.h>
+#include <tqlayout.h>
+#include <tqcombobox.h>
+#include <tqregexp.h>
+#include <tqdatetimeedit.h>
+#include <tqdatetime.h>
+#include <tqlineedit.h>
+#include <tqwhatsthis.h>
+#include <klocale.h>
+#include <kseparator.h>
+#include <knuminput.h>
+
+#include <time.h>
+
+KPSchedulePage::KPSchedulePage(TQWidget *parent, const char *name)
+: KPrintDialogPage(parent, name)
+{
+ //WhatsThis strings.... (added by pfeifle@kde.org)
+ TQString whatsThisBillingInfo = i18n( " <qt> <p><b>Print Job Billing and Accounting</b></p> "
+ " <p>Insert a meaningful string here to associate"
+ " the current print job with a certain account. This"
+ " string will appear in the CUPS \"page_log\" to help"
+ " with the print accounting in your organization. (Leave"
+ " it empty if you do not need it.)"
+ " <p> It is useful for people"
+ " who print on behalf of different \"customers\", like"
+ " print service bureaux, letter shops, press and prepress"
+ " companies, or secretaries who serve different bosses, etc.</p>"
+ " <br> "
+ " <hr> "
+ " <p><em><b>Additional hint for power users:</b> This KDEPrint GUI element matches "
+ " with the CUPS commandline job option parameter:</em> "
+ " <pre>"
+ " -o job-billing=... # example: \"Marketing_Department\" or \"Joe_Doe\" "
+ " </pre>"
+ " </p> "
+ " </qt>" );
+
+ TQString whatsThisScheduledPrinting = i18n(" <qt> <p><b>Scheduled Printing</b></p> "
+ " <p>Scheduled printing lets you control the time"
+ " of the actual printout, while you can still send away your"
+ " job <b>now</b> and have it out of your way."
+ " <p> Especially useful"
+ " is the \"Never (hold indefinitely)\" option. It allows you"
+ " to park your job until a time when you (or a printer administrator)"
+ " decides to manually release it."
+ " <p> This is often required in"
+ " enterprise environments, where you normally are not"
+ " allowed to directly and immediately access the huge production"
+ " printers in your <em>Central Repro Department</em>. However it"
+ " is okay to send jobs to the queue which is under the control of the"
+ " operators (who, after all, need to make sure that the 10,000"
+ " sheets of pink paper which is required by the Marketing"
+ " Department for a particular job are available and loaded"
+ " into the paper trays).</p>"
+ " <br> "
+ " <hr> "
+ " <p><em><b>Additional hint for power users:</b> This KDEPrint GUI element matches "
+ " with the CUPS commandline job option parameter:</em> "
+ " <pre>"
+ " -o job-hold-until=... # example: \"indefinite\" or \"no-hold\" "
+ " </pre>"
+ " </p> "
+ " </qt>" );
+
+ TQString whatsThisPageLabel = i18n( " <qt> <p><b>Page Labels</b></p> "
+ " <p>Page Labels are printed by CUPS at the top and bottom"
+ " of each page. They appear on the pages surrounded by a little"
+ " frame box."
+ " <p>They contain any string you type into the line edit field.</p>"
+ " <br> "
+ " <hr> "
+ " <p><em><b>Additional hint for power users:</b> This KDEPrint GUI element matches "
+ " with the CUPS commandline job option parameter:</em> "
+ " <pre>"
+ " -o page-label=\"...\" # example: \"Company Confidential\" "
+ " </pre>"
+ " </p> "
+ " </qt>" );
+
+ TQString whatsThisJobPriority = i18n( " <qt> <p><b>Job Priority</b></p> "
+ " <p>Usually CUPS prints all jobs per queue according to"
+ " the \"FIFO\" principle: <em>First In, First Out</em>."
+ " <p> The"
+ " job priority option allows you to re-order the queue according"
+ " to your needs."
+ " <p> It works in both directions: you can increase"
+ " as well as decrease priorities. (Usually you can only control"
+ " your <b>own</b> jobs)."
+ " <p> Since the default job priority is \"50\", any job sent"
+ " with, for example, \"49\" will be printed only after all those"
+ " others have finished. Conversely, a"
+ " \"51\" or higher priority job will go right to the top of"
+ " a populated queue (if no other, higher prioritized one is present).</p>"
+ " <br> "
+ " <hr> "
+ " <p><em><b>Additional hint for power users:</b> This KDEPrint GUI element matches "
+ " with the CUPS commandline job option parameter:</em> "
+ " <pre>"
+ " -o job-priority=... # example: \"10\" or \"66\" or \"99\" "
+ " </pre>"
+ " </p> "
+ " </qt>" );
+
+ setTitle(i18n("Advanced Options"));
+ setOnlyRealPrinters(true);
+
+ // compute difference in hours between GMT and local time
+ time_t ct = time(0);
+ struct tm *ts = gmtime(&ct);
+ m_gmtdiff = ts->tm_hour;
+ ts = localtime(&ct);
+ m_gmtdiff -= ts->tm_hour;
+
+ m_time = new TQComboBox(this);
+ m_time->insertItem(i18n("Immediately"));
+ m_time->insertItem(i18n("Never (hold indefinitely)"));
+ m_time->insertItem(i18n("Daytime (6 am - 6 pm)"));
+ m_time->insertItem(i18n("Evening (6 pm - 6 am)"));
+ m_time->insertItem(i18n("Night (6 pm - 6 am)"));
+ m_time->insertItem(i18n("Weekend"));
+ m_time->insertItem(i18n("Second Shift (4 pm - 12 am)"));
+ m_time->insertItem(i18n("Third Shift (12 am - 8 am)"));
+ m_time->insertItem(i18n("Specified Time"));
+ TQWhatsThis::add(m_time, whatsThisScheduledPrinting);
+ m_tedit = new TQTimeEdit(this);
+ m_tedit->setAutoAdvance(true);
+ m_tedit->setTime(TQTime::currentTime());
+ m_tedit->setEnabled(false);
+ TQWhatsThis::add(m_tedit, whatsThisScheduledPrinting);
+ m_billing = new TQLineEdit(this);
+ TQWhatsThis::add(m_billing, whatsThisBillingInfo);
+ m_pagelabel = new TQLineEdit(this);
+ TQWhatsThis::add(m_pagelabel, whatsThisPageLabel);
+ m_priority = new KIntNumInput(50, this);
+ TQWhatsThis::add(m_priority, whatsThisJobPriority);
+ m_priority->setRange(1, 100, 10, true);
+
+ TQLabel *lab = new TQLabel(i18n("&Scheduled printing:"), this);
+ lab->setBuddy(m_time);
+ TQWhatsThis::add(lab, whatsThisScheduledPrinting);
+ TQLabel *lab1 = new TQLabel(i18n("&Billing information:"), this);
+ TQWhatsThis::add(lab1, whatsThisBillingInfo);
+ lab1->setBuddy(m_billing);
+ TQLabel *lab2 = new TQLabel(i18n("T&op/Bottom page label:"), this);
+ TQWhatsThis::add(lab2, whatsThisPageLabel);
+ lab2->setBuddy(m_pagelabel);
+ m_priority->setLabel(i18n("&Job priority:"), Qt::AlignVCenter|Qt::AlignLeft);
+ TQWhatsThis::add(m_priority, whatsThisJobPriority);
+
+ KSeparator *sep0 = new KSeparator(this);
+ sep0->setFixedHeight(10);
+
+ TQGridLayout *l0 = new TQGridLayout(this, 6, 2, 0, 7);
+ l0->addWidget(lab, 0, 0);
+ TQHBoxLayout *l1 = new TQHBoxLayout(0, 0, 5);
+ l0->addLayout(l1, 0, 1);
+ l1->addWidget(m_time);
+ l1->addWidget(m_tedit);
+ l0->addWidget(lab1, 1, 0);
+ l0->addWidget(lab2, 2, 0);
+ l0->addWidget(m_billing, 1, 1);
+ l0->addWidget(m_pagelabel, 2, 1);
+ l0->addMultiCellWidget(sep0, 3, 3, 0, 1);
+ l0->addMultiCellWidget(m_priority, 4, 4, 0, 1);
+ l0->setRowStretch(5, 1);
+
+ connect(m_time, TQT_SIGNAL(activated(int)), TQT_SLOT(slotTimeChanged()));
+}
+
+KPSchedulePage::~KPSchedulePage()
+{
+}
+
+bool KPSchedulePage::isValid(TQString& msg)
+{
+ if (m_time->currentItem() == 8 && !m_tedit->time().isValid())
+ {
+ msg = i18n("The time specified is not valid.");
+ return false;
+ }
+ return true;
+}
+
+void KPSchedulePage::setOptions(const TQMap<TQString,TQString>& opts)
+{
+ TQString t = opts["job-hold-until"];
+ if (!t.isEmpty())
+ {
+ int item(-1);
+
+ if (t == "no-hold") item = 0;
+ else if (t == "indefinite") item = 1;
+ else if (t == "day-time") item = 2;
+ else if (t == "evening") item = 3;
+ else if (t == "night") item = 4;
+ else if (t == "weekend") item = 5;
+ else if (t == "second-shift") item = 6;
+ else if (t == "third-shift") item = 7;
+ else
+ {
+ TQTime qt = TQT_TQTIME_OBJECT(TQTime::fromString(t));
+ m_tedit->setTime(TQT_TQTIME_OBJECT(qt.addSecs(-3600 * m_gmtdiff)));
+ item = 8;
+ }
+
+ if (item != -1)
+ {
+ m_time->setCurrentItem(item);
+ slotTimeChanged();
+ }
+ }
+ TQRegExp re("^\"|\"$");
+ t = opts["job-billing"].stripWhiteSpace();
+ t.replace(re, "");
+ m_billing->setText(t);
+ t = opts["page-label"].stripWhiteSpace();
+ t.replace(re, "");
+ m_pagelabel->setText(t);
+ int val = opts["job-priority"].toInt();
+ if (val != 0)
+ m_priority->setValue(val);
+}
+
+void KPSchedulePage::getOptions(TQMap<TQString,TQString>& opts, bool incldef)
+{
+ if (incldef || m_time->currentItem() != 0)
+ {
+ TQString t;
+ switch (m_time->currentItem())
+ {
+ case 0: t = "no-hold"; break;
+ case 1: t = "indefinite"; break;
+ case 2: t = "day-time"; break;
+ case 3: t = "evening"; break;
+ case 4: t = "night"; break;
+ case 5: t = "weekend"; break;
+ case 6: t = "second-shift"; break;
+ case 7: t = "third-shift"; break;
+ case 8:
+ t = m_tedit->time().addSecs(3600 * m_gmtdiff).toString();
+ break;
+ }
+ opts["job-hold-until"] = t;
+ }
+ if (incldef || !m_billing->text().isEmpty())
+ opts["job-billing"] = "\"" + m_billing->text() + "\"";
+ if (incldef || !m_pagelabel->text().isEmpty())
+ opts["page-label"] = "\"" + m_pagelabel->text() + "\"";
+ if (incldef || m_priority->value() != 50)
+ opts["job-priority"] = TQString::number(m_priority->value());
+}
+
+void KPSchedulePage::slotTimeChanged()
+{
+ m_tedit->setEnabled(m_time->currentItem() == 8);
+ if (m_time->currentItem() == 8)
+ m_tedit->setFocus();
+}
+
+#include "kpschedulepage.moc"