3d47d9319d63482219fad17b8fd697f89c511f65
[staging/HomeScreen.git] / HomeScreen / src / applauncherwidget.cpp
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 #include "applauncherwidget.h"
18 #include "ui_applauncherwidget.h"
19 #include <include/daynightmode.hpp>
20 #include <QSettings>
21 #ifdef __i386__
22     #include <QProcess>
23 #endif
24
25 #define APP_LIST_COLUMN_COUNT 5
26
27 AppLauncherWidget::AppLauncherWidget(QWidget *parent) :
28     QWidget(parent),
29     mp_ui(new Ui::AppLauncherWidget),
30     mp_appList(new QList<AppInfo>()),
31     mp_appTable(0),
32     mp_dBusAppFrameworkProxy()
33 {
34     mp_ui->setupUi(this);
35
36     AppInfo ai;
37     for (int i = 0; i < 100; ++i)
38     {
39         ai.setName("test" + QString::number(i));
40         mp_appList->append(ai);
41     }
42
43     qDebug("D-Bus: connect to org.agl.homescreenappframeworkbinder /AppFramework");
44     mp_dBusAppFrameworkProxy = new org::agl::appframework("org.agl.homescreenappframeworkbinder",
45                                               "/AppFramework",
46                                               QDBusConnection::sessionBus(),
47                                               0);
48 }
49
50 AppLauncherWidget::~AppLauncherWidget()
51 {
52     delete mp_dBusAppFrameworkProxy;
53     if (0 != mp_appTable)
54     {
55         delete mp_appTable;
56     }
57     delete mp_appList;
58     delete mp_ui;
59 }
60
61 void AppLauncherWidget::updateColorScheme()
62 {
63     QSettings settings;
64     QSettings settings_cs(QApplication::applicationDirPath() +
65                           "/colorschemes/" +
66                           settings.value("systemsettings/colorscheme", "default").toString() +
67                           "/" +
68                           QString::number(settings.value("systemsettings/proximityobjectdetected", false).toBool()) +
69                           "/" +
70                           QString::number(settings.value("systemsettings/daynightmode", SystemDayNight::DAYNIGHTMODE_DAY).toInt()) +
71                           ".ini",
72                           QSettings::IniFormat);
73
74     mp_ui->widget_background->setStyleSheet(settings_cs.value("AppLauncherWidget/widget_Background").toString());
75     mp_ui->widget_homeIcon->setStyleSheet(settings_cs.value("AppLauncherWidget/widget_Home_Icon").toString());
76
77     setStyleSheet(settings_cs.value("AppLauncherWidget/common_css").toString());
78 }
79
80 void AppLauncherWidget::populateAppList()
81 {
82     if (0 == mp_appTable)
83     {
84         mp_appTable = new QTableWidget(this);
85         QObject::connect(mp_appTable, SIGNAL(cellClicked(int,int)), this, SLOT(on_tableView_clicked(int,int)));
86     }
87     else
88     {
89         mp_appTable->clear();
90     }
91
92     mp_appTable->setShowGrid(false);
93     mp_appTable->setFrameShape(QFrame::NoFrame);
94     mp_appTable->move(40, 40);
95     mp_appTable->resize(1000, 1920 - 40 - 40 - 60 - 60);
96     mp_appTable->horizontalHeader()->setVisible(false);
97     mp_appTable->verticalHeader()->setVisible(false);
98     mp_appTable->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
99     mp_appTable->setRowCount(100);
100     mp_appTable->setColumnCount(APP_LIST_COLUMN_COUNT);
101
102     int i;
103
104     QStringList apps = mp_dBusAppFrameworkProxy->getAvailableAppNames();
105     mp_appList->clear();
106
107     mp_appTable->setRowCount((apps.size() + (APP_LIST_COLUMN_COUNT - 1)) / APP_LIST_COLUMN_COUNT);
108
109     if (apps.size() >= (9 * APP_LIST_COLUMN_COUNT))
110     {
111         mp_appTable->resize(1000, 1920 - 40 - 40 - 60 - 60);
112     }
113     else
114     {
115         mp_appTable->resize(1000, mp_appTable->rowCount() * 190);
116     }
117
118
119     for (i = 0; i < (mp_appTable->rowCount() * APP_LIST_COLUMN_COUNT); i++)
120     {
121         mp_appTable->verticalHeader()->resizeSection(i, 190);
122         mp_appTable->horizontalHeader()->resizeSection(i, 190);
123     }
124
125     AppInfo ai;
126     for (i = 0; i < apps.size(); ++i)
127     {
128         qDebug("new app: %s", apps.at(i).toStdString().c_str());
129         ai.setName(apps.at(i));
130         mp_appList->append(ai);
131     }
132
133     for (i = 0; i < mp_appList->size(); i++)
134     {
135        mp_appTable->setItem(i / APP_LIST_COLUMN_COUNT,
136                             i % APP_LIST_COLUMN_COUNT,
137                             new QTableWidgetItem(mp_appList->at(i).getName()));
138        mp_appTable->item(i / APP_LIST_COLUMN_COUNT,
139                          i % APP_LIST_COLUMN_COUNT)->setFlags(Qt::ItemIsEnabled);
140        mp_appTable->item(i / APP_LIST_COLUMN_COUNT,
141                          i % APP_LIST_COLUMN_COUNT)->setTextAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
142     }
143 }
144
145 void AppLauncherWidget::on_tableView_clicked(int row, int col)
146 {
147     if (mp_appList->size() > row * APP_LIST_COLUMN_COUNT + col)
148     {
149         int pid = mp_dBusAppFrameworkProxy->launchApp(mp_appList->at(row * APP_LIST_COLUMN_COUNT + col).getName());
150         qDebug("%d, %d: start app %s", row, col, mp_appList->at(row * APP_LIST_COLUMN_COUNT + col).getName().toStdString().c_str());
151         qDebug("pid: %d", pid);
152
153         // the new app wants to be visible by default
154         newRequestsToBeVisibleApp(pid);
155     }
156 }