Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/generalsettings.h')
-rw-r--r--src/gui/generalsettings.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/gui/generalsettings.h b/src/gui/generalsettings.h
new file mode 100644
index 000000000..50dfd7a6f
--- /dev/null
+++ b/src/gui/generalsettings.h
@@ -0,0 +1,48 @@
+/*
+ * Copyright (C) by Daniel Molkentin <danimo@owncloud.com>
+ *
+ * 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; version 2 of the License.
+ *
+ * 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.
+ */
+
+#ifndef MIRALL_GENERALSETTINGS_H
+#define MIRALL_GENERALSETTINGS_H
+
+#include <QWidget>
+
+
+namespace Mirall {
+
+namespace Ui {
+class GeneralSettings;
+}
+
+class GeneralSettings : public QWidget
+{
+ Q_OBJECT
+
+public:
+ explicit GeneralSettings(QWidget *parent = 0);
+ ~GeneralSettings();
+
+private slots:
+ void saveMiscSettings();
+ void slotToggleLaunchOnStartup(bool);
+ void slotToggleOptionalDesktopNotifications(bool);
+ void slotUpdateInfo();
+
+private:
+ void loadMiscSettings();
+
+ Ui::GeneralSettings *_ui;
+};
+
+
+} // namespace Mirall
+#endif // MIRALL_GENERALSETTINGS_H