////////////////////////////////////////////////////////////////////////////// // phasestyleconfig.cpp // ------------------- // Config dialog for Phase widget style // ------------------- // Copyright (c) 2004 David Johnson // Please see the header file for copyright and license information. ////////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include #include "phasestyleconfig.h" #include "styledialog.h" ////////////////////////////////////////////////////////////////////////////// // PhaseStyleConfig Class // ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // PhaseStyleConfig() // ---------------- // Constructor PhaseStyleConfig::PhaseStyleConfig(TQWidget* parent) : StyleDialog(parent) { TDEGlobal::locale()->insertCatalogue("tdestyle_phase_config"); TQSettings settings; oldgradients = settings.readBoolEntry("/phasestyle/Settings/gradients", true); gradients->setChecked(oldgradients); oldhighlights = settings.readBoolEntry("/phasestyle/Settings/highlights", true); highlights->setChecked(oldhighlights); // connections connect(gradients, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(updateChanged())); connect(highlights, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(updateChanged())); } ////////////////////////////////////////////////////////////////////////////// // ~PhaseStyleConfig() // ----------------- // Destructor PhaseStyleConfig::~PhaseStyleConfig() { TDEGlobal::locale()->removeCatalogue("tdestyle_phase_config"); } ////////////////////////////////////////////////////////////////////////////// // selectionChanged() // ------------------ // Selection has changed void PhaseStyleConfig::updateChanged() { bool update = false; if ((gradients->isChecked() != oldgradients) || (highlights->isChecked() != oldhighlights)) { update = true; } emit changed(update); } ////////////////////////////////////////////////////////////////////////////// // save() // ------ // Save the settings void PhaseStyleConfig::save() { TQSettings settings; settings.writeEntry("/phasestyle/Settings/gradients", gradients->isChecked()); settings.writeEntry("/phasestyle/Settings/highlights", highlights->isChecked()); } ////////////////////////////////////////////////////////////////////////////// // defaults() // ---------- // Set to the defaults void PhaseStyleConfig::defaults() { gradients->setChecked(true); highlights->setChecked(true); } ////////////////////////////////////////////////////////////////////////////// // Plugin Stuff // ////////////////////////////////////////////////////////////////////////////// extern "C" { KDE_EXPORT TQObject* allocate_tdestyle_config(TQWidget* parent) { return(new PhaseStyleConfig(parent)); } } #include "phasestyleconfig.moc"