aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/pages/page_soundtheme.h
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core-utils/lumina-config/pages/page_soundtheme.h')
-rw-r--r--src-qt5/core-utils/lumina-config/pages/page_soundtheme.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src-qt5/core-utils/lumina-config/pages/page_soundtheme.h b/src-qt5/core-utils/lumina-config/pages/page_soundtheme.h
new file mode 100644
index 00000000..5d3bed66
--- /dev/null
+++ b/src-qt5/core-utils/lumina-config/pages/page_soundtheme.h
@@ -0,0 +1,42 @@
+//===========================================
+// Lumina Desktop Source Code
+// Copyright (c) 2017, JT (q5sys)
+// Available under the 3-clause BSD license
+// See the LICENSE file for full details
+//===========================================
+#ifndef _LUMINA_CONFIG_PAGE_SOUNDTHEME_H
+#define _LUMINA_CONFIG_PAGE_SOUNDTHEME_H
+#include "../globals.h"
+#include "PageWidget.h"
+
+namespace Ui{
+ class page_soundtheme;
+};
+
+class page_soundtheme : public PageWidget{
+ Q_OBJECT
+public:
+ page_soundtheme(QWidget *parent);
+ ~page_soundtheme();
+
+public slots:
+
+ void SaveSettings();
+ void LoadSettings(int screennum);
+
+
+private:
+ Ui::page_soundtheme *ui;
+ QString startupsound, logoutsound, batterysound;
+ QSettings *sessionsettings;
+
+private slots:
+
+ void on_pushButton_startup_clicked();
+ void on_pushButton_logout_clicked();
+ void on_pushButton_battery_clicked();
+ void on_checkBox_startup_toggled(bool checked);
+ void on_checkBox_logout_toggled(bool checked);
+ void on_checkBox_battery_toggled(bool checked);
+};
+#endif
bgstack15