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.
95 lines
2.4 KiB
95 lines
2.4 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 "kmpropertypage.h"
|
|
#include "kmpropwidget.h"
|
|
#include "kmpropcontainer.h"
|
|
#include "kmprinter.h"
|
|
#include "kmfactory.h"
|
|
#include "kmuimanager.h"
|
|
|
|
#include "kmpropgeneral.h"
|
|
|
|
#include <qvbox.h>
|
|
#include <kiconloader.h>
|
|
|
|
KMPropertyPage::KMPropertyPage(QWidget *parent, const char *name)
|
|
: CJanusWidget(parent,name)
|
|
{
|
|
m_widgets.setAutoDelete(false);
|
|
|
|
initialize();
|
|
}
|
|
|
|
KMPropertyPage::~KMPropertyPage()
|
|
{
|
|
}
|
|
|
|
void KMPropertyPage::setPrinter(KMPrinter *p)
|
|
{
|
|
QPtrListIterator<KMPropWidget> it(m_widgets);
|
|
for (;it.current();++it)
|
|
it.current()->setPrinterBase(p);
|
|
}
|
|
|
|
void KMPropertyPage::addPropPage(KMPropWidget *w)
|
|
{
|
|
if (w)
|
|
{
|
|
m_widgets.append(w);
|
|
KMPropContainer *ctn = new KMPropContainer(this,"Container");
|
|
ctn->setWidget(w);
|
|
connect(ctn,SIGNAL(enable(bool)),SLOT(slotEnable(bool)));
|
|
|
|
QPixmap icon = KGlobal::instance()->iconLoader()->loadIcon(
|
|
w->pixmap(),
|
|
KIcon::NoGroup,
|
|
KIcon::SizeMedium
|
|
);
|
|
addPage(ctn,w->title(),w->header(),icon);
|
|
}
|
|
}
|
|
|
|
void KMPropertyPage::slotEnable(bool on)
|
|
{
|
|
QWidget *w = (QWidget*)(sender());
|
|
if (on)
|
|
enablePage(w);
|
|
else
|
|
disablePage(w);
|
|
}
|
|
|
|
void KMPropertyPage::initialize()
|
|
{
|
|
// add General page
|
|
addPropPage(new KMPropGeneral(this, "General"));
|
|
// add plugin specific pages
|
|
KMFactory::self()->uiManager()->setupPropertyPages(this);
|
|
}
|
|
|
|
void KMPropertyPage::reload()
|
|
{
|
|
clearPages();
|
|
m_widgets.clear();
|
|
initialize();
|
|
setPrinter(0);
|
|
}
|
|
|
|
#include "kmpropertypage.moc"
|