You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
211 lines
8.3 KiB
211 lines
8.3 KiB
/*
|
|
* 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 "cupsdbrowsingpage.h"
|
|
#include "cupsdconf.h"
|
|
#include "editlist.h"
|
|
#include "browsedialog.h"
|
|
|
|
#include <qlabel.h>
|
|
#include <qlayout.h>
|
|
#include <qcheckbox.h>
|
|
#include <qcombobox.h>
|
|
#include <qwhatsthis.h>
|
|
|
|
#include <klocale.h>
|
|
#include <knuminput.h>
|
|
|
|
CupsdBrowsingPage::CupsdBrowsingPage(QWidget *parent, const char *name)
|
|
: CupsdPage(parent, name)
|
|
{
|
|
setPageLabel(i18n("Browsing"));
|
|
setHeader(i18n("Browsing Settings"));
|
|
setPixmap("kdeprint_printer_remote");
|
|
|
|
browseinterval_ = new KIntNumInput(this);
|
|
browseport_ = new KIntNumInput(this);
|
|
browsetimeout_ = new KIntNumInput(this);
|
|
browsing_ = new QCheckBox(i18n("Use browsing"), this);
|
|
cups_ = new QCheckBox("CUPS", this);
|
|
slp_ = new QCheckBox("SLP", this);
|
|
browseaddresses_ = new EditList(this);
|
|
browseorder_ = new QComboBox(this);
|
|
useimplicitclasses_ = new QCheckBox(i18n("Implicit classes"), this);
|
|
hideimplicitmembers_ = new QCheckBox(i18n("Hide implicit members"), this);
|
|
useshortnames_ = new QCheckBox(i18n("Use short names"), this);
|
|
useanyclasses_ = new QCheckBox(i18n("Use \"any\" classes"), this);
|
|
|
|
browseorder_->insertItem(i18n("Allow, Deny"));
|
|
browseorder_->insertItem(i18n("Deny, Allow"));
|
|
|
|
browseport_->setRange(0, 9999, 1, true);
|
|
browseport_->setSteps(1, 5);
|
|
browseinterval_->setRange(0, 10000, 1, true);
|
|
browseinterval_->setSteps(1, 10);
|
|
browseinterval_->setSuffix(i18n(" sec"));
|
|
browsetimeout_->setRange(0, 10000, 1, true);
|
|
browsetimeout_->setSteps(1, 10);
|
|
browsetimeout_->setSuffix(i18n(" sec"));
|
|
|
|
QLabel *l1 = new QLabel(i18n("Browse port:"), this);
|
|
QLabel *l2 = new QLabel(i18n("Browse interval:"), this);
|
|
QLabel *l3 = new QLabel(i18n("Browse timeout:"), this);
|
|
QLabel *l4 = new QLabel(i18n("Browse addresses:"), this);
|
|
QLabel *l5 = new QLabel(i18n("Browse order:"), this);
|
|
QLabel *l6 = new QLabel(i18n("Browse options:"), this);
|
|
|
|
QGridLayout *m1 = new QGridLayout(this, 8, 2, 10, 7);
|
|
m1->setRowStretch(7, 1);
|
|
m1->setColStretch(1, 1);
|
|
QHBoxLayout *m2 = new QHBoxLayout(0, 0, 10);
|
|
m1->addMultiCellLayout(m2, 0, 0, 0, 1);
|
|
m2->addWidget(browsing_);
|
|
m2->addWidget(cups_);
|
|
m2->addWidget(slp_);
|
|
m2->addStretch(1);
|
|
m1->addWidget(l1, 1, 0, Qt::AlignRight);
|
|
m1->addWidget(l2, 2, 0, Qt::AlignRight);
|
|
m1->addWidget(l3, 3, 0, Qt::AlignRight);
|
|
m1->addWidget(l4, 4, 0, Qt::AlignRight|Qt::AlignTop);
|
|
m1->addWidget(l5, 5, 0, Qt::AlignRight);
|
|
m1->addWidget(l6, 6, 0, Qt::AlignRight|Qt::AlignTop);
|
|
m1->addWidget(browseport_, 1, 1);
|
|
m1->addWidget(browseinterval_, 2, 1);
|
|
m1->addWidget(browsetimeout_, 3, 1);
|
|
m1->addWidget(browseaddresses_, 4, 1);
|
|
m1->addWidget(browseorder_, 5, 1);
|
|
QGridLayout *m3 = new QGridLayout(0, 2, 2, 0, 5);
|
|
m1->addLayout(m3, 6, 1);
|
|
m3->addWidget(useimplicitclasses_, 0, 0);
|
|
m3->addWidget(useanyclasses_, 0, 1);
|
|
m3->addWidget(hideimplicitmembers_, 1, 0);
|
|
m3->addWidget(useshortnames_, 1, 1);
|
|
|
|
connect(browsing_, SIGNAL(toggled(bool)), cups_, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), slp_, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), browseport_, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), browseinterval_, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), browsetimeout_, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), browseaddresses_, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), browseorder_, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), useimplicitclasses_, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), useanyclasses_, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), hideimplicitmembers_, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), useshortnames_, SLOT(setEnabled(bool)));
|
|
|
|
connect(browsing_, SIGNAL(toggled(bool)), l1, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), l2, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), l3, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), l4, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), l5, SLOT(setEnabled(bool)));
|
|
connect(browsing_, SIGNAL(toggled(bool)), l6, SLOT(setEnabled(bool)));
|
|
|
|
connect(browseaddresses_, SIGNAL(add()), SLOT(slotAdd()));
|
|
connect(browseaddresses_, SIGNAL(edit(int)), SLOT(slotEdit(int)));
|
|
connect(browseaddresses_, SIGNAL(defaultList()), SLOT(slotDefaultList()));
|
|
connect(browseinterval_, SIGNAL(valueChanged(int)), SLOT(intervalChanged(int)));
|
|
browsing_->setChecked(true);
|
|
}
|
|
|
|
bool CupsdBrowsingPage::loadConfig(CupsdConf *conf, QString&)
|
|
{
|
|
conf_ = conf;
|
|
browsing_->setChecked(conf_->browsing_);
|
|
cups_->setChecked(conf_->browseprotocols_.findIndex("CUPS") != -1);
|
|
slp_->setChecked(conf_->browseprotocols_.findIndex("SLP") != -1);
|
|
browseport_->setValue(conf_->browseport_);
|
|
browseinterval_->setValue(conf_->browseinterval_);
|
|
browsetimeout_->setValue(conf_->browsetimeout_);
|
|
browseaddresses_->insertItems(conf_->browseaddresses_);
|
|
browseorder_->setCurrentItem(conf_->browseorder_);
|
|
useimplicitclasses_->setChecked(conf_->useimplicitclasses_);
|
|
useanyclasses_->setChecked(conf_->useanyclasses_);
|
|
hideimplicitmembers_->setChecked(conf_->hideimplicitmembers_);
|
|
useshortnames_->setChecked(conf_->useshortnames_);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool CupsdBrowsingPage::saveConfig(CupsdConf *conf, QString&)
|
|
{
|
|
conf->browsing_ = browsing_->isChecked();
|
|
QStringList l;
|
|
if (cups_->isChecked()) l << "CUPS";
|
|
if (slp_->isChecked()) l << "SLP";
|
|
conf->browseprotocols_ = l;
|
|
conf->browseport_ = browseport_->value();
|
|
conf->browseinterval_ = browseinterval_->value();
|
|
conf->browsetimeout_ = browsetimeout_->value();
|
|
conf->browseaddresses_ = browseaddresses_->items();
|
|
conf->browseorder_ = browseorder_->currentItem();
|
|
conf->useimplicitclasses_ = useimplicitclasses_->isChecked();
|
|
conf->useanyclasses_ = useanyclasses_->isChecked();
|
|
conf->hideimplicitmembers_ = hideimplicitmembers_->isChecked();
|
|
conf->useshortnames_ = useshortnames_->isChecked();
|
|
|
|
return true;
|
|
}
|
|
|
|
void CupsdBrowsingPage::setInfos(CupsdConf *conf)
|
|
{
|
|
QWhatsThis::add(browsing_, conf->comments_.toolTip("browsing"));
|
|
QWhatsThis::add(cups_, conf->comments_.toolTip("browseprotocols"));
|
|
QWhatsThis::add(slp_, conf->comments_.toolTip("browseprotocols"));
|
|
QWhatsThis::add(browseinterval_, conf->comments_.toolTip("browseinterval"));
|
|
QWhatsThis::add(browseport_, conf->comments_.toolTip("browseport"));
|
|
QWhatsThis::add(browsetimeout_, conf->comments_.toolTip("browsetimeout"));
|
|
QWhatsThis::add(browseaddresses_, conf->comments_.toolTip("browseaddresses"));
|
|
QWhatsThis::add(browseorder_, conf->comments_.toolTip("browseorder"));
|
|
QWhatsThis::add(useimplicitclasses_, conf->comments_.toolTip("implicitclasses"));
|
|
QWhatsThis::add(useanyclasses_, conf->comments_.toolTip("implicitanyclasses"));
|
|
QWhatsThis::add(hideimplicitmembers_, conf->comments_.toolTip("hideimplicitmembers"));
|
|
QWhatsThis::add(useshortnames_, conf->comments_.toolTip("browseshortnames"));
|
|
}
|
|
|
|
void CupsdBrowsingPage::slotAdd()
|
|
{
|
|
QString s = BrowseDialog::newAddress(this, conf_);
|
|
if (!s.isEmpty())
|
|
browseaddresses_->insertItem(s);
|
|
}
|
|
|
|
void CupsdBrowsingPage::slotEdit(int index)
|
|
{
|
|
QString s = browseaddresses_->text(index);
|
|
s = BrowseDialog::editAddress(s, this, conf_);
|
|
if (!s.isEmpty())
|
|
browseaddresses_->setText(index, s);
|
|
}
|
|
|
|
void CupsdBrowsingPage::slotDefaultList()
|
|
{
|
|
browseaddresses_->clear();
|
|
QStringList l;
|
|
l << "Send 255.255.255.255";
|
|
browseaddresses_->insertItems(l);
|
|
}
|
|
|
|
void CupsdBrowsingPage::intervalChanged(int val)
|
|
{
|
|
browsetimeout_->setRange(val, 10000, 1, true);
|
|
browsetimeout_->setSteps(1, 10);
|
|
}
|
|
|
|
#include "cupsdbrowsingpage.moc"
|