//============================================== // copyright : (C) 2003-2004 by Will Stokes //============================================== // 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 CONFIGURATION_THEMESWIDGET_H #define CONFIGURATION_THEMESWIDGET_H #include //forward declarations class QGridLayout; class QLabel; //===================================== /*! \brief Themes Settings */ //===================================== //====================== class ThemesWidget : public QWidget { //---------------------- public: ThemesWidget( QWidget *parent=0, const char* name=0); //---------------------- private: QGridLayout* grid; QLabel* categoryLabel; QFrame* horizontalLine; //---------------------- }; //====================== #endif //CONFIGURATION_THEMESWIDGET_H