/* This is the new kwindecoration kcontrol module Copyright (c) 2001 Karol Szwed http://gallium.n3.net/ Supports new kwin configuration plugins, and titlebar button position modification via dnd interface. Based on original "kwintheme" (Window Borders) Copyright (C) 2001 Rik Hemsley (rikkus) 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 KWINDECORATION_H #define KWINDECORATION_H #include #include #include #include #include #include #include "kwindecorationIface.h" class KComboBox; class QCheckBox; class QLabel; class QTabWidget; class QVBox; class QSlider; class KDecorationPlugins; class KDecorationPreview; // Stores themeName and its corresponding library Name struct DecorationInfo { QString name; QString libraryName; }; class KWinDecorationModule : public KCModule, virtual public KWinDecorationIface, public KDecorationDefines { Q_OBJECT public: KWinDecorationModule(QWidget* parent, const char* name, const QStringList &); ~KWinDecorationModule(); virtual void load(); virtual void save(); virtual void defaults(); QString quickHelp() const; virtual void dcopUpdateClientList(); signals: void pluginLoad( KConfig* conf ); void pluginSave( KConfig* conf ); void pluginDefaults(); protected slots: // Allows us to turn "save" on void slotSelectionChanged(); void slotChangeDecoration( const QString & ); void slotBorderChanged( int ); void slotButtonsChanged(); private: void readConfig( KConfig* conf ); void writeConfig( KConfig* conf ); void findDecorations(); void createDecorationList(); void updateSelection(); QString decorationLibName( const QString& name ); QString decorationName ( QString& libName ); static QString styleToConfigLib( QString& styleLib ); void resetPlugin( KConfig* conf, const QString& currentDecoName = QString::null ); void resetKWin(); void checkSupportedBorderSizes(); static int borderSizeToIndex( BorderSize size, QValueList< BorderSize > sizes ); static BorderSize indexToBorderSize( int index, QValueList< BorderSize > sizes ); QTabWidget* tabWidget; // Page 1 KComboBox* decorationList; QValueList decorations; KDecorationPreview* preview; KDecorationPlugins* plugins; KConfig kwinConfig; QCheckBox* cbUseCustomButtonPositions; // QCheckBox* cbUseMiniWindows; QCheckBox* cbShowToolTips; QLabel* lBorder; QComboBox* cBorder; BorderSize border_size; QObject* pluginObject; QWidget* pluginConfigWidget; QString currentLibraryName; QString oldLibraryName; QObject* (*allocatePlugin)( KConfig* conf, QWidget* parent ); // Page 2 ButtonPositionWidget *buttonPositionWidget; QVBox* buttonPage; }; #endif // vim: ts=4 // kate: space-indent off; tab-width 4;