summaryrefslogtreecommitdiffstats
path: root/kdeprint/management/kminfopage.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/management/kminfopage.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/management/kminfopage.cpp')
-rw-r--r--kdeprint/management/kminfopage.cpp143
1 files changed, 143 insertions, 0 deletions
diff --git a/kdeprint/management/kminfopage.cpp b/kdeprint/management/kminfopage.cpp
new file mode 100644
index 000000000..4366265ab
--- /dev/null
+++ b/kdeprint/management/kminfopage.cpp
@@ -0,0 +1,143 @@
+/*
+ * 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 "kminfopage.h"
+#include "kmprinter.h"
+
+#include <qpixmap.h>
+#include <qlabel.h>
+#include <qlayout.h>
+#include <klocale.h>
+#include <kiconloader.h>
+#include <kseparator.h>
+
+KMInfoPage::KMInfoPage(QWidget *parent, const char *name)
+: QWidget(parent,name)
+{
+ m_title = new QLabel(this);
+ m_titlepixmap = new QLabel(this);
+ m_titlepixmap->setAlignment(Qt::AlignCenter);
+ KSeparator* sep = new KSeparator( KSeparator::HLine, this);
+ m_type = new QLabel(this);
+ m_description = new QLabel(this);
+ m_state = new QLabel(this);
+ m_location = new QLabel(this);
+ m_model = new QLabel(this);
+ m_uri = new QLabel(this);
+ m_device = new QLabel(this);
+ QLabel *m_loclabel = new QLabel(i18n("Physical Location", "Location:"), this);
+ m_loclabel->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
+ QLabel *m_desclabel = new QLabel(i18n("Description:"), this);
+ m_desclabel->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
+ QLabel *m_typelabel = new QLabel(i18n("Type:"), this);
+ m_typelabel->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
+ QLabel *m_statelabel = new QLabel(i18n("Status", "State:"), this);
+ m_statelabel->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
+ QLabel *m_urilabel = new QLabel(i18n("URI:"), this);
+ m_urilabel->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
+ m_devlabel = new QLabel(i18n("Device:"), this);
+ m_devlabel->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
+ QLabel *m_modellabel = new QLabel(i18n("Model:"), this);
+ m_modellabel->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
+
+ QGridLayout *lay0 = new QGridLayout(this, 11, 2, 0, 5);
+ QHBoxLayout *lay1 = new QHBoxLayout(0, 0, 10);
+ lay0->addRowSpacing(7,20);
+ lay0->setRowStretch(7,0);
+ lay0->setRowStretch(10,1);
+ lay0->setColStretch(1,1);
+ lay0->addMultiCellLayout(lay1, 0, 0, 0, 1);
+ lay0->addMultiCellWidget(sep, 1, 1, 0, 1);
+ lay0->addWidget(m_typelabel, 2, 0);
+ lay0->addWidget(m_statelabel, 3, 0);
+ lay0->addWidget(m_loclabel, 4, 0);
+ lay0->addWidget(m_desclabel, 5, 0);
+ lay0->addWidget(m_urilabel, 6, 0);
+ lay0->addWidget(m_devlabel, 8, 0);
+ lay0->addWidget(m_modellabel, 9, 0);
+ lay0->addWidget(m_type, 2, 1);
+ lay0->addWidget(m_state, 3, 1);
+ lay0->addWidget(m_location, 4, 1);
+ lay0->addWidget(m_description, 5, 1);
+ lay0->addWidget(m_uri, 6, 1);
+ lay0->addWidget(m_device, 8, 1);
+ lay0->addWidget(m_model, 9, 1);
+ lay1->addWidget(m_title, 1);
+ lay1->addWidget(m_titlepixmap, 0);
+}
+
+KMInfoPage::~KMInfoPage()
+{
+}
+
+void KMInfoPage::setPrinter(KMPrinter *p)
+{
+ // change "Device" label if it's a real class (not true for implicit classes)
+ if (p && p->isClass(false)) m_devlabel->setText(i18n("Members:"));
+ else m_devlabel->setText(i18n("Device:"));
+
+ // clear everything if p == 0
+ if (!p)
+ {
+ m_title->setText(QString::null);
+ m_titlepixmap->setPixmap(QPixmap());
+ m_type->setText(QString::null);
+ m_state->setText(QString::null);
+ m_location->setText(QString::null);
+ m_description->setText(QString::null);
+ m_uri->setText(QString::null);
+ m_device->setText(QString::null);
+ m_model->setText(QString::null);
+ }
+ else
+ {
+ m_title->setText(QString::fromLatin1("<b>%1</b>").arg(p->name()));
+ m_titlepixmap->setPixmap(SmallIcon(p->pixmap()));
+ if (p->isImplicit()) m_type->setText(i18n("Implicit class"));
+ else if (p->isClass(false))
+ if (p->isRemote()) m_type->setText(i18n("Remote class"));
+ else m_type->setText(i18n("Local class"));
+ else if (p->isPrinter())
+ if (p->isRemote()) m_type->setText(i18n("Remote printer"));
+ else m_type->setText(i18n("Local printer"));
+ else if (p->isSpecial())
+ m_type->setText(i18n("Special (pseudo) printer"));
+ else m_type->setText(i18n("Unknown class of printer", "Unknown"));
+ m_state->setText(p->stateString());
+ m_location->setText(p->location());
+ m_description->setText(p->description());
+ m_uri->setText(p->uri().prettyURL());
+ if (p->isClass(false))
+ {
+ QString s;
+ for (QStringList::ConstIterator it=p->members().begin(); it!=p->members().end(); ++it)
+ s.append(KURL(*it).prettyURL() + ", ");
+ s.truncate(s.length()-2);
+ m_device->setText(s);
+ }
+ else
+ {
+ // double decoding in case printer name contains
+ // annoying chars like '#'
+ KURL dev(p->device());
+ m_device->setText(KURL::decode_string(dev.prettyURL()));
+ }
+ m_model->setText(p->driverInfo());
+ }
+}