/*************************************************************************** begin : Fri Mar 25 2005 copyright : (C) 2005, 2007 Peter Hedlund (C) 2007 Frederik Gladhorn ***************************************************************************/ /*************************************************************************** * * * 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. * * * ***************************************************************************/ #ifndef PARLEYPREFS_H #define PARLEYPREFS_H #include /** *@author Peter Hedlund */ class GeneralOptions; class ViewOptions; class PasteOptions; class PluginOptions; class KEduVocDocument; class KComboBox; class ParleyPrefs : public KConfigDialog { Q_OBJECT public: /** * Creates a configuration dialog. */ ParleyPrefs(KEduVocDocument *doc, QWidget *parent, const QString &name, KConfigSkeleton *config); protected slots: /** * Called when the user clicks Apply or OK. */ void updateSettings(); /** * Updates dialog widgets. Here only used after loading a profile. * Profiles only store the settings of the last three pages in the dialog. */ void updateWidgets(); /** * Called when the user clicks Default */ void updateWidgetsDefault(); protected: /** * Returns true if the current state of the dialog is different from the saved settings */ bool hasChanged(); /** * Returns true if the current state of the dialog represents the default settings. */ bool isDefault(); private: GeneralOptions * m_generalOptions; ViewOptions * m_viewOptions; PasteOptions * m_pasteOptions; PluginOptions * m_pluginOptions; KConfigSkeleton *m_config; KEduVocDocument *m_doc; KComboBox *m_lessons; }; #endif