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.
104 lines
2.8 KiB
104 lines
2.8 KiB
15 years ago
|
/***************************************************************************
|
||
|
plugin_configuration_dialog.cpp - description
|
||
|
-------------------
|
||
|
begin : Sam Jun 21 2003
|
||
|
copyright : (C) 2003 by Martin Witte
|
||
|
email : witte@kawo1.rwth-aachen.de
|
||
|
***************************************************************************/
|
||
|
|
||
|
/***************************************************************************
|
||
|
* *
|
||
|
* This program is free software; you can redistribute it and/or modify *
|
||
|
* it under the terms of the GNU General Public License as published by *
|
||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||
|
* (at your option) any later version. *
|
||
|
* *
|
||
|
***************************************************************************/
|
||
|
|
||
|
#include "include/plugin_configuration_dialog.h"
|
||
12 years ago
|
#include <tdeconfig.h>
|
||
12 years ago
|
#include <tdelocale.h>
|
||
15 years ago
|
|
||
|
PluginConfigurationDialog::PluginConfigurationDialog(
|
||
14 years ago
|
int dialogFace, const TQString &caption,
|
||
15 years ago
|
int buttonMask, ButtonCode defaultButton,
|
||
13 years ago
|
TQWidget *parent, const char *name,
|
||
15 years ago
|
bool modal, bool separator)
|
||
|
: KDialogBase(dialogFace, caption, buttonMask, defaultButton,
|
||
13 years ago
|
parent, name, modal, separator),
|
||
15 years ago
|
WidgetPluginBase (name, i18n("Configuration Dialog")),
|
||
|
m_Caption(caption)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
// PluginBase
|
||
|
|
||
12 years ago
|
void PluginConfigurationDialog::saveState (TDEConfig *c) const
|
||
15 years ago
|
{
|
||
14 years ago
|
c->setGroup(TQString("config-dialog-") + WidgetPluginBase::name());
|
||
15 years ago
|
WidgetPluginBase::saveState(c);
|
||
|
}
|
||
|
|
||
12 years ago
|
void PluginConfigurationDialog::restoreState (TDEConfig *c)
|
||
15 years ago
|
{
|
||
14 years ago
|
c->setGroup(TQString("config-dialog-") + WidgetPluginBase::name());
|
||
15 years ago
|
WidgetPluginBase::restoreState(c, true);
|
||
|
}
|
||
|
|
||
|
|
||
|
ConfigPageInfo PluginConfigurationDialog::createConfigurationPage()
|
||
|
{
|
||
|
return ConfigPageInfo();
|
||
|
}
|
||
|
|
||
|
|
||
|
AboutPageInfo PluginConfigurationDialog::createAboutPage()
|
||
|
{
|
||
|
return AboutPageInfo();
|
||
|
}
|
||
|
|
||
|
|
||
|
// WidgetPluginBase
|
||
|
|
||
|
void PluginConfigurationDialog::show()
|
||
|
{
|
||
|
WidgetPluginBase::pShow();
|
||
|
KDialogBase::show();
|
||
|
}
|
||
|
|
||
|
|
||
|
void PluginConfigurationDialog::showOnOrgDesktop()
|
||
|
{
|
||
|
WidgetPluginBase::pShowOnOrgDesktop();
|
||
|
//KDialogBase::show();
|
||
|
}
|
||
|
|
||
|
|
||
|
void PluginConfigurationDialog::hide()
|
||
|
{
|
||
|
WidgetPluginBase::pHide();
|
||
|
KDialogBase::hide();
|
||
|
}
|
||
|
|
||
|
|
||
14 years ago
|
// TQWidget overrides
|
||
15 years ago
|
|
||
14 years ago
|
void PluginConfigurationDialog::showEvent(TQShowEvent *e)
|
||
15 years ago
|
{
|
||
|
KDialogBase::showEvent(e);
|
||
14 years ago
|
TQWidget::setCaption(m_Caption);
|
||
15 years ago
|
WidgetPluginBase::pShowEvent(e);
|
||
|
}
|
||
|
|
||
|
|
||
14 years ago
|
void PluginConfigurationDialog::hideEvent(TQHideEvent *e)
|
||
15 years ago
|
{
|
||
|
KDialogBase::hideEvent(e);
|
||
|
WidgetPluginBase::pHideEvent(e);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
#include "plugin_configuration_dialog.moc"
|