diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /kdeprint/kprinterpropertydialog.cpp | |
download | tdelibs-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/kprinterpropertydialog.cpp')
-rw-r--r-- | kdeprint/kprinterpropertydialog.cpp | 147 |
1 files changed, 147 insertions, 0 deletions
diff --git a/kdeprint/kprinterpropertydialog.cpp b/kdeprint/kprinterpropertydialog.cpp new file mode 100644 index 000000000..8bafeb171 --- /dev/null +++ b/kdeprint/kprinterpropertydialog.cpp @@ -0,0 +1,147 @@ +/* + * 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 "kprinterpropertydialog.h" +#include "kprintdialogpage.h" +#include "kmfactory.h" +#include "kmuimanager.h" +#include "kmvirtualmanager.h" +#include "kmprinter.h" +#include "driver.h" + +#include <kmessagebox.h> +#include <qtabwidget.h> +#include <klocale.h> +#include <kpushbutton.h> +#include <kguiitem.h> + +KPrinterPropertyDialog::KPrinterPropertyDialog(KMPrinter *p, QWidget *parent, const char *name) +: KDialogBase(parent, name, true, QString::null, KDialogBase::Ok|KDialogBase::Cancel|KDialogBase::User1, KDialogBase::Ok, false, KStdGuiItem::save()), + m_printer(p), m_driver(0), m_current(0) +{ + m_pages.setAutoDelete(false); + + // set a margin + m_tw = new QTabWidget(this); + m_tw->setMargin(10); + connect(m_tw,SIGNAL(currentChanged(QWidget*)),SLOT(slotCurrentChanged(QWidget*))); + setMainWidget(m_tw); + + if (m_printer) + m_options = (m_printer->isEdited() ? m_printer->editedOptions() : m_printer->defaultOptions()); +} + +KPrinterPropertyDialog::~KPrinterPropertyDialog() +{ + delete m_driver; +} + +void KPrinterPropertyDialog::slotCurrentChanged(QWidget *w) +{ + if (m_current) m_current->getOptions(m_options,true); + m_current = (KPrintDialogPage*)w; + if (m_current) m_current->setOptions(m_options); +} + +void KPrinterPropertyDialog::addPage(KPrintDialogPage *page) +{ + m_tw->addTab(page,page->title()); + m_pages.append(page); +} + +bool KPrinterPropertyDialog::synchronize() +{ + if (m_current) m_current->getOptions(m_options,true); + QString msg; + QPtrListIterator<KPrintDialogPage> it(m_pages); + for (;it.current();++it) + { + it.current()->setOptions(m_options); + if (!it.current()->isValid(msg)) + { + KMessageBox::error(this, msg.prepend("<qt>").append("</qt>"), i18n("Printer Configuration")); + return false; + } + } + return true; +} + +void KPrinterPropertyDialog::setOptions(const QMap<QString,QString>& opts) +{ + // merge the 2 options sets + for (QMap<QString,QString>::ConstIterator it=opts.begin(); it!=opts.end(); ++it) + m_options[it.key()] = it.data(); + // update all existing pages + QPtrListIterator<KPrintDialogPage> it(m_pages); + for (; it.current(); ++it) + it.current()->setOptions(m_options); +} + +void KPrinterPropertyDialog::getOptions(QMap<QString,QString>& opts, bool incldef) +{ + collectOptions(opts, incldef); +} + +void KPrinterPropertyDialog::collectOptions(QMap<QString,QString>& opts, bool incldef) +{ + QPtrListIterator<KPrintDialogPage> it(m_pages); + for (;it.current();++it) + it.current()->getOptions(opts,incldef); +} + +void KPrinterPropertyDialog::slotOk() +{ + if (!synchronize()) + return; + KDialogBase::slotOk(); +} + +void KPrinterPropertyDialog::slotUser1() +{ + if (m_printer && synchronize()) + { + QMap<QString,QString> opts; + collectOptions(opts, false); + m_printer->setDefaultOptions(opts); + m_printer->setEditedOptions(QMap<QString,QString>()); + m_printer->setEdited(false); + KMFactory::self()->virtualManager()->triggerSave(); + } +} + +void KPrinterPropertyDialog::enableSaveButton(bool state) +{ + showButton(KDialogBase::User1, state); +} + +void KPrinterPropertyDialog::setupPrinter(KMPrinter *pr, QWidget *parent) +{ + KPrinterPropertyDialog dlg(pr,parent,"PropertyDialog"); + KMFactory::self()->uiManager()->setupPropertyDialog(&dlg); + if (dlg.m_pages.count() == 0) + KMessageBox::information(parent,i18n("No configurable options for that printer."),i18n("Printer Configuration")); + else if (dlg.exec()) + { + QMap<QString,QString> opts; + dlg.collectOptions(opts, false); + pr->setEditedOptions(opts); + pr->setEdited(true); + } +} +#include "kprinterpropertydialog.moc" |