2 * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
20 #include <QMainWindow>
21 #include "daynightmode_proxy.h"
22 #include "proximity_adaptor.h"
24 #include "homescreencontrolinterface.h"
26 #include "statusbarwidget.h"
27 #include "controlbarwidget.h"
28 #include "settingswidget.h"
29 //#include "applauncher.h"
30 #include "popupwidget.h"
32 #include "layouthandler.h"
39 class MainWindow : public QMainWindow
44 explicit MainWindow(QWidget *parent = 0);
49 void dayNightModeSlot(int mode);
51 // from proximity_adaptor.h
53 void setObjectDetected(bool detected);
56 void updateColorScheme();
59 // called when the translator loaded a new language set
60 void changeEvent(QEvent* event);
64 Ui::MainWindow *mp_ui;
66 StatusBarWidget *mp_statusBarWidget;
67 org::agl::daynightmode *mp_dBusDayNightMode_StatusBarWidget;
68 ControlBarWidget *mp_controlBarWidget;
69 org::agl::daynightmode *mp_dBusDayNightMode_ControlBarWidget;
70 SettingsWidget *mp_settingsWidget;
71 //AppLauncherWidget *mp_applauncherwidget;
72 PopupWidget *mp_popupWidget;
74 LayoutHandler *mp_layoutHandler;
76 org::agl::daynightmode *mp_dBusDayNightModeProxy;
78 ProximityAdaptor *mp_proximityAdaptor;
80 HomeScreenControlInterface *mp_homeScreenControlInterface;
83 #endif // MAINWINDOW_H