aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreen/src/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'HomeScreen/src/mainwindow.h')
-rw-r--r--HomeScreen/src/mainwindow.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/HomeScreen/src/mainwindow.h b/HomeScreen/src/mainwindow.h
index d984c3e..cb2243e 100644
--- a/HomeScreen/src/mainwindow.h
+++ b/HomeScreen/src/mainwindow.h
@@ -20,9 +20,12 @@
#include <QMainWindow>
#include "daynightmode_proxy.h"
+#include "homescreencontrolinterface.h"
+
#include "statusbarwidget.h"
#include "controlbarwidget.h"
#include "settingswidget.h"
+#include "applauncherwidget.h"
#include "popupwidget.h"
@@ -42,6 +45,7 @@ public:
public Q_SLOTS:
void dayNightModeSlot(int mode);
+
public slots:
void updateColorScheme();
@@ -49,6 +53,9 @@ protected:
// called when the translator loaded a new language set
void changeEvent(QEvent* event);
+private slots:
+ void on_pushButton_clicked();
+
private:
Ui::MainWindow *mp_ui;
@@ -57,9 +64,12 @@ private:
ControlBarWidget *mp_controlBarWidget;
org::agl::daynightmode *mp_dBusDayNightMode_ControlBarWidget;
SettingsWidget *mp_settingsWidget;
+ AppLauncherWidget *mp_applauncherwidget;
PopupWidget *mp_popupWidget;
- org::agl::daynightmode *mp_dayNightModeProxy;
+ org::agl::daynightmode *mp_dBusDayNightModeProxy;
+
+ HomeScreenControlInterface *mp_homeScreenControlInterface;
};
#endif // MAINWINDOW_H