diff options
Diffstat (limited to 'client/config/crystalconfig.h')
-rw-r--r-- | client/config/crystalconfig.h | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/client/config/crystalconfig.h b/client/config/crystalconfig.h new file mode 100644 index 0000000..5bdc0fb --- /dev/null +++ b/client/config/crystalconfig.h @@ -0,0 +1,67 @@ +/*************************************************************************** + * Copyright (C) 2006 by Sascha Hlusiak * + * Spam84@gmx.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. * + * * + * This program 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 General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ + + +#ifndef CRYSTALCONFIG_H +#define CRYSTALCONFIG_H + +#include <qobject.h> + +#define TOP_LEFT 1 +#define TOP_RIGHT 2 +#define BOT_LEFT 4 +#define BOT_RIGHT 8 + +class KConfig; +class ConfigDialog; + +class CrystalConfig : public QObject +{ + Q_OBJECT +public: + CrystalConfig(KConfig* config, QWidget* parent); + ~CrystalConfig(); + +signals: + void changed(); + +public slots: + void load(KConfig*); + void save(KConfig*); + void defaults(); + void infoDialog(); + +protected slots: + void selectionChanged(int); + void overlay_active_changed(int); + void overlay_inactive_changed(int); + void boolChanged(bool) { selectionChanged(0); } + void colorChanged(const QColor&) { selectionChanged(0); } + void textChanged(const QString&) { selectionChanged(0); } + void logoTextChanged(const QString&); + +private: + KConfig *config_; + ConfigDialog *dialog_; + + void updateLogo(); +}; + +#endif // CRYSTALCONFIG_H |