Say hello to the first settings page in our shiny new, almost working SettingsDlg...
[quassel.git] / src / uisupport / settingspage.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by the Quassel IRC Team                         *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
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         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef _SETTINGSPAGE_H_
22 #define _SETTINGSPAGE_H_
23
24 #include <QWidget>
25
26 //! A SettingsPage is a page in the settings dialog.
27 class SettingsPage : public QWidget {
28   Q_OBJECT
29
30   public:
31     SettingsPage(const QString &category, const QString &name, QWidget *parent = 0);
32     virtual ~SettingsPage() {};
33     virtual QString category() const;
34     virtual QString title() const;
35
36     virtual bool hasChanged() const = 0;
37
38   public slots:
39     virtual void save() = 0;
40     virtual void load() = 0;
41     virtual void defaults() = 0;
42
43   protected slots:
44     //! Calling this slot is equivalent to emitting changed(true).
45     void changed();
46
47   protected:
48     //! This should be called whenever the widget state changes from unchanged to change or the other way round.
49     void changeState(bool hasChanged = true);
50
51   signals:
52     void changed(bool hasChanged);
53
54   private:
55     QString _category, _title;
56     bool _changed;
57 };
58
59 #endif