a58148e9c9ff15c292521cb89838d8d072be4d5f
[staging/HomeScreen.git] / HomeScreen / src / applauncherwidget.h
1 /*
2  * Copyright (C) 2016 Mentor Graphics Development (Deutschland) GmbH
3  *
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
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 #ifndef APPLAUNCHERWIDGET_H
18 #define APPLAUNCHERWIDGET_H
19
20 #include <QWidget>
21 #include <QList>
22 #include <QTableWidget>
23 #include <include/appframework.hpp>
24 #include <appframework_proxy.h>
25
26 namespace Ui {
27 class AppLauncherWidget;
28 }
29
30 class AppLauncherWidget : public QWidget
31 {
32     Q_OBJECT
33
34 public:
35     explicit AppLauncherWidget(QWidget *parent = 0);
36     ~AppLauncherWidget();
37
38     void populateAppList();
39
40 public slots:
41     void updateColorScheme();
42
43 private slots:
44     void on_tableView_clicked(int row, int col);
45
46 signals:
47     void newRequestsToBeVisibleApp(int pid);
48
49 private:
50     Ui::AppLauncherWidget *mp_ui;
51     QList<AppInfo> *mp_appList;
52     QTableWidget *mp_appTable;
53     org::agl::appframework *mp_dBusAppFrameworkProxy;
54 };
55
56 #endif // APPLAUNCHERWIDGET_H