add more spacing
[personal-kdebase.git] / workspace / kcontrol / style / styleconfdialog.h
blob44a6431e715e13974cfb992183726e557de1686a
1 /*
2 * KCMStyle's container dialog for custom style setup dialogs
4 * (c) 2003 Maksim Orlovich <maksim.orlovich@kdemail.net>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; see the file COPYING. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
21 #ifndef STYLE_CONF_DIALOG
22 #define STYLE_CONF_DIALOG
24 #include <kdialog.h>
27 class StyleConfigDialog: public KDialog
29 Q_OBJECT
30 public:
31 StyleConfigDialog(QWidget* parent, QString styleName);
33 bool isDirty() const;
35 public Q_SLOTS:
36 void setDirty(bool dirty);
38 Q_SIGNALS:
39 void defaults();
40 void save();
42 private:
43 bool m_dirty;
46 #endif