From e16866e072f94410321d70daedbcb855ea878cac Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 15:56:40 -0600 Subject: Actually move the kde files that were renamed in the last commit --- tdeprint/cups/kmwusers.cpp | 96 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 tdeprint/cups/kmwusers.cpp (limited to 'tdeprint/cups/kmwusers.cpp') diff --git a/tdeprint/cups/kmwusers.cpp b/tdeprint/cups/kmwusers.cpp new file mode 100644 index 000000000..714f6f4d4 --- /dev/null +++ b/tdeprint/cups/kmwusers.cpp @@ -0,0 +1,96 @@ +/* + * This file is part of the KDE libraries + * Copyright (c) 2001 Michael Goffioul + * + * 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 + +#include "kmwusers.h" +#include "kmwizard.h" +#include "kmprinter.h" + +#include +#include +#include +#include +#include + +KMWUsers::KMWUsers(TQWidget *parent, const char *name) +: KMWizardPage(parent, name) +{ + m_ID = KMWizard::Custom+4; + m_title = i18n("Users Access Settings"); + m_nextpage = KMWizard::Name; + + m_users = new KEditListBox(i18n("Users"), this, 0, false, KEditListBox::Add|KEditListBox::Remove); + m_type = new TQComboBox(this); + m_type->insertItem(i18n("Allowed Users")); + m_type->insertItem(i18n("Denied Users")); + + TQLabel *lab1 = new TQLabel(i18n("Define here a group of allowed/denied users for this printer."), this); + TQLabel *lab2 = new TQLabel(i18n("&Type:"), this); + + lab2->setBuddy(m_type); + + TQVBoxLayout *l0 = new TQVBoxLayout(this, 0, 10); + TQHBoxLayout *l1 = new TQHBoxLayout(0, 0, 10); + l0->addWidget(lab1, 0); + l0->addLayout(l1, 0); + l1->addWidget(lab2, 0); + l1->addWidget(m_type, 1); + l0->addWidget(m_users, 1); +} + +KMWUsers::~KMWUsers() +{ +} + +void KMWUsers::initPrinter(KMPrinter *p) +{ + TQStringList l; + int i(1); + if (!p->option("requesting-user-name-denied").isEmpty()) + { + l = TQStringList::split(",", p->option("requesting-user-name-denied"), false); + if (l.count() == 1 && l[0] == "none") + l.clear(); + } + else if (!p->option("requesting-user-name-allowed").isEmpty()) + { + i = 0; + l = TQStringList::split(",", p->option("requesting-user-name-allowed"), false); + if (l.count() && l[0] == "all") + l.clear(); + } + m_users->insertStringList(l); + m_type->setCurrentItem(i); +} + +void KMWUsers::updatePrinter(KMPrinter *p) +{ + p->removeOption("requesting-user-name-denied"); + p->removeOption("requesting-user-name-allowed"); + + TQString str; + if (m_users->count() > 0) + str = m_users->items().join(","); + else + str = (m_type->currentItem() == 0 ? "all" : "none"); + TQString optname = (m_type->currentItem() == 0 ? "requesting-user-name-allowed" : "requesting-user-name-denied"); + p->setOption(optname, str); +} +#include "kmwusers.moc" -- cgit v1.2.1