- remove the settings for the font color, size and the possibility to show/hide the...
[rsibreak.git] / src / setupmaximized.h
blob1cae38fbf3f396503af8058d509130a46e56970a
1 /* ============================================================
2 * Copyright 2005,2007 by Tom Albers <tomalbers@kde.nl>
4 * This program is free software; you can redistribute it
5 * and/or modify it under the terms of the GNU General
6 * Public License as published by the Free Software Foundation;
7 * either version 2, or (at your option)
8 * any later version.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * ============================================================ */
20 #ifndef SETUPMAXIMIZED_H
21 #define SETUPMAXIMIZED_H
23 #include <qwidget.h>
25 class SetupMaximizedPriv;
27 /**
28 * @class SetupMaximized
29 * These contain the general settings of RSIBreak when maximized
30 * that means settings for the Counter, Image Path and
31 * minimize button
32 * @author Tom Albers <tomalbers@kde.nl>
35 class SetupMaximized : public QWidget
37 Q_OBJECT
39 public:
41 /**
42 * Constructor
43 * @param parent Parent Widget
45 SetupMaximized(QWidget* parent = 0);
47 /**
48 * Destructor
50 ~SetupMaximized();
52 /**
53 * Call this if you want the settings saved from this page.
55 void applySettings();
57 private slots:
58 void slotFolderPicker();
59 void slotFolderEdited(const QString& newPath);
60 void slotHideFlash();
61 void slotUseImages();
63 private:
64 void readSettings();
65 SetupMaximizedPriv *d;
68 #endif /* SETUPMAXIMIZED_H */