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.5 KiB
95 lines
2.5 KiB
15 years ago
|
/*
|
||
|
* This file is part of the KDE libraries
|
||
13 years ago
|
* Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
|
||
15 years ago
|
*
|
||
|
* 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"
|
||
|
|
||
14 years ago
|
#include <tqvbox.h>
|
||
15 years ago
|
#include <kiconloader.h>
|
||
|
|
||
14 years ago
|
KMPropertyPage::KMPropertyPage(TQWidget *parent, const char *name)
|
||
15 years ago
|
: CJanusWidget(parent,name)
|
||
|
{
|
||
|
m_widgets.setAutoDelete(false);
|
||
|
|
||
|
initialize();
|
||
|
}
|
||
|
|
||
|
KMPropertyPage::~KMPropertyPage()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void KMPropertyPage::setPrinter(KMPrinter *p)
|
||
|
{
|
||
14 years ago
|
TQPtrListIterator<KMPropWidget> it(m_widgets);
|
||
15 years ago
|
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);
|
||
14 years ago
|
connect(ctn,TQT_SIGNAL(enable(bool)),TQT_SLOT(slotEnable(bool)));
|
||
15 years ago
|
|
||
14 years ago
|
TQPixmap icon = KGlobal::instance()->iconLoader()->loadIcon(
|
||
15 years ago
|
w->pixmap(),
|
||
|
KIcon::NoGroup,
|
||
|
KIcon::SizeMedium
|
||
|
);
|
||
|
addPage(ctn,w->title(),w->header(),icon);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void KMPropertyPage::slotEnable(bool on)
|
||
|
{
|
||
14 years ago
|
TQWidget *w = (TQWidget*)(sender());
|
||
15 years ago
|
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"
|