summaryrefslogtreecommitdiffstats
path: root/kshutdown/msettingsdialog.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-07-28 02:30:20 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-28 02:30:20 +0200
commit48a589b8c526b34e79e8cdddc4cb7f5fc7b76815 (patch)
tree0f30d90998669b60a0aa840f824cc3d4ea7ddc66 /kshutdown/msettingsdialog.h
downloadkshutdown-48a589b8c526b34e79e8cdddc4cb7f5fc7b76815.tar.gz
kshutdown-48a589b8c526b34e79e8cdddc4cb7f5fc7b76815.zip
Initial import of kshutdown 1.0.4
Diffstat (limited to 'kshutdown/msettingsdialog.h')
-rw-r--r--kshutdown/msettingsdialog.h127
1 files changed, 127 insertions, 0 deletions
diff --git a/kshutdown/msettingsdialog.h b/kshutdown/msettingsdialog.h
new file mode 100644
index 0000000..6f3fec3
--- /dev/null
+++ b/kshutdown/msettingsdialog.h
@@ -0,0 +1,127 @@
+/*
+ msettingsdialog.h - A settings dialog
+ Copyright (C) 2003 Konrad Twardowski <kdtonline@poczta.onet.pl>
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
+#ifndef __MSETTINGSDIALOG_H__
+#define __MSETTINGSDIALOG_H__
+
+#include "actions.h"
+
+#include <kdialogbase.h>
+
+class QCheckBox;
+class QHButtonGroup;
+
+class KConfigDialogManager;
+class KIntNumInput;
+class KLineEdit;
+class KListView;
+class KListViewItem;
+class KPushButton;
+
+/** @short A settings dialog. */
+class MSettingsDialog: public KDialogBase
+{
+ Q_OBJECT
+public:
+ /**
+ * Constructor. Creates a new modal settings dialog.
+ * @param parent A parent widget
+ */
+ MSettingsDialog(QWidget *parent);
+
+ /**
+ * Destructor.
+ */
+ virtual ~MSettingsDialog();
+
+ inline static void freeInstance() {
+ if (_instance) {
+ delete _instance;
+ _instance = 0;
+ }
+ }
+
+ inline static bool isActive() {
+ if (_instance) {
+ _instance->raise();
+
+ return true;
+ }
+
+ return false;
+ }
+private:
+ static int _lastPage;
+ static MSettingsDialog *_instance;
+ KConfigDialogManager *_configDialogManager;
+ KIntNumInput *in_warningMessageDelay;
+ KLineEdit *in_customMessageCommand;
+ KListView *_actions;
+ KListViewItem
+ *_lockScreenItem,
+ *_logoutItem,
+ *_rebootItem,
+ *_shutDownItem;
+ KPushButton *b_enableAllMessages;
+ QCheckBox *c_autoLock;
+ QFrame
+ *_actionsPage,
+ *_advancedPage,
+ *_generalPage,
+ *_messagesPage;
+ QHButtonGroup *gb_systemTray;
+
+ QFrame *addPage(const QString &itemName, const QString &iconName);
+
+ /**
+ * Returns @c true if page has been disabled by the administrator (Kiosk mode).
+ * @param key A configuration entry (in the @c kshutdownrc file)
+ * @param page A dialog page
+ * @param pageLayout A dialog page layout
+ */
+ bool disabledByAdmin(const QString &key, QFrame *page = 0, QBoxLayout *pageLayout = 0) const;
+
+ void initActionsPage();
+ void initAdvancedPage();
+ void initGeneralPage();
+ void initMessagesPage();
+ Action::Type itemToActionType(const KListViewItem *item) const;
+ void updateActions();
+ void updateItem(KListViewItem *item);
+private slots:
+ void slotCheckSystemConfig();
+ void slotConfigChanged();
+ void slotCustomMessageTest();
+ void slotEditAction();
+ void slotEnableAllMessages();
+ void slotKDESettings();
+ void slotOKClicked();
+ void slotSetAmorCustomMessage();
+ void slotSetKDialogCustomMessage();
+ void slotShutDownProblem();
+ void slotTrayMessageProblem();
+ void slotWarningMessageTest();
+protected slots:
+ /**
+ * Sets default values in a current page.
+ */
+ virtual void slotDefault();
+};
+
+#endif // __MSETTINGSDIALOG_H__