summaryrefslogtreecommitdiffstats
path: root/kdeprint/management/kmwend.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
commite16866e072f94410321d70daedbcb855ea878cac (patch)
treeee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /kdeprint/management/kmwend.cpp
parenta58c20c1a7593631a1b50213c805507ebc16adaf (diff)
downloadtdelibs-e16866e072f94410321d70daedbcb855ea878cac.tar.gz
tdelibs-e16866e072f94410321d70daedbcb855ea878cac.zip
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'kdeprint/management/kmwend.cpp')
-rw-r--r--kdeprint/management/kmwend.cpp119
1 files changed, 0 insertions, 119 deletions
diff --git a/kdeprint/management/kmwend.cpp b/kdeprint/management/kmwend.cpp
deleted file mode 100644
index 54294fb13..000000000
--- a/kdeprint/management/kmwend.cpp
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
- * 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 "kmwend.h"
-#include "kmprinter.h"
-#include "kmwizard.h"
-#include "util.h"
-
-#include <tqtextview.h>
-#include <klocale.h>
-#include <tqlayout.h>
-
-KMWEnd::KMWEnd(TQWidget *parent, const char *name)
-: KMWizardPage(parent,name)
-{
- m_ID = KMWizard::End;
- m_title = i18n("Confirmation");
- m_nextpage = KMWizard::Error;
-
- m_view = new TQTextView(this);
-
- TQVBoxLayout *lay = new TQVBoxLayout(this, 0, 0);
- lay->addWidget(m_view,1);
-}
-
-void KMWEnd::initPrinter(KMPrinter *p)
-{
- TQString txt;
- TQString s(TQString::tqfromLatin1("<li><u>%1</u>: %2</li>"));
- int ID = p->option("kde-backend").toInt();
-
- // general information
- txt.append(TQString::tqfromLatin1("<b>%1</b><ul type=circle>").arg(i18n("General")));
- txt.append(s.arg(i18n("Type")).arg(p->option("kde-backend-description")));
- txt.append(s.arg(i18n("Name")).arg(p->name()));
- txt.append(s.arg(i18n("Location")).arg(p->location()));
- txt.append(s.arg(i18n("Description")).arg(p->description()));
- txt.append("</ul><br>");
-
- if (ID == KMWizard::Class)
- {
- // class members
- txt.append(TQString::tqfromLatin1("<b>%1</b><ul type=circle>").arg(i18n("Members")));
- TQStringList m(p->members());
- TQString s1(TQString::tqfromLatin1("<li>%1</li>"));
- for (TQStringList::ConstIterator it=m.begin(); it!=m.end(); ++it)
- txt.append(s1.arg(*it));
- txt.append("</ul><br>");
- }
- else
- {
- // backend information
- txt.append(TQString::tqfromLatin1("<b>%1</b><ul type=circle>").arg(i18n("Backend")));
- KURL url ( p->device() );
- switch (ID)
- {
- case KMWizard::Local:
- txt.append(s.arg(i18n("Device")).arg(url.path()));
- break;
- case KMWizard::TCP:
- txt.append(s.arg(i18n("Printer IP")).arg(url.host()));
- txt.append(s.arg(i18n("Port")).arg(url.port()));
- break;
- case KMWizard::LPD:
- txt.append(s.arg(i18n("Host")).arg(url.host()));
- txt.append(s.arg(i18n("Queue")).arg(url.path().right(url.path().length()-1)));
- break;
- case KMWizard::File:
- txt.append(s.arg(i18n("File")).arg(url.path()));
- break;
- case KMWizard::IPP:
- txt.append(s.arg(i18n("Host")).arg(url.host()));
- txt.append(s.arg(i18n("Port")).arg(url.port()));
- txt.append(s.arg(i18n("Printer")).arg(url.path().right(url.path().length()-1)));
- if (url.hasUser()) txt.append(s.arg(i18n("Account")).arg(url.user()));
- break;
- default:
- // double decoding in case the printer name contains chars like '#' that are
- // not decoded by "prettyURL".
- txt.append(s.arg(i18n("URI")).arg(KURL( p->device()).prettyURL()));
- break;
- }
- txt.append("</ul><br>");
-
- if (p->option("kde-driver") == "raw" || p->driver())
- {
- // driver information
- txt.append(TQString::tqfromLatin1("<b>%1</b><ul type=circle>").arg(i18n("Driver")));
- if (p->option("kde-driver") == "raw")
- txt.append(s.arg(i18n("Type")).arg(i18n("Raw printer")));
- else
- {
- txt.append(s.arg(i18n("Type")).arg((p->dbEntry() ? i18n("DB driver") : i18n("External driver"))));
- txt.append(s.arg(i18n("Manufacturer")).arg(p->manufacturer()));
- txt.append(s.arg(i18n("Model")).arg(p->model()));
- txt.append(s.arg(i18n("Description")).arg(p->driverInfo()));
- }
- txt.append("</ul><br>");
- }
- }
-
- m_view->setText(txt);
-}