26b80a0a0ab08b5ee91433bd317ad157f08bd78b
[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     m_appList(),
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_ui;
58 }
59
60 void AppLauncherWidget::updateColorScheme()
61 {
62     QSettings settings;
63     QSettings settings_cs(QApplication::applicationDirPath() +
64                           "/colorschemes/" +
65                           settings.value("systemsettings/colorscheme", "default").toString() +
66                           "/" +
67                           QString::number(settings.value("systemsettings/proximityobjectdetected", false).toBool()) +
68                           "/" +
69                           QString::number(settings.value("systemsettings/daynightmode", SystemDayNight::DAYNIGHTMODE_DAY).toInt()) +
70                           ".ini",
71                           QSettings::IniFormat);
72
73     mp_ui->widget_background->setStyleSheet(settings_cs.value("AppLauncherWidget/widget_Background").toString());
74     mp_ui->widget_homeIcon->setStyleSheet(settings_cs.value("AppLauncherWidget/widget_Home_Icon").toString());
75
76     setStyleSheet(settings_cs.value("AppLauncherWidget/common_css").toString());
77 }
78
79 void AppLauncherWidget::populateAppList()
80 {
81     if (0 == mp_appTable)
82     {
83         mp_appTable = new QTableWidget(this);
84         QObject::connect(mp_appTable, SIGNAL(cellClicked(int,int)), this, SLOT(on_tableView_clicked(int,int)));
85     }
86     else
87     {
88         mp_appTable->clear();
89     }
90
91     mp_appTable->setShowGrid(false);
92     mp_appTable->setFrameShape(QFrame::NoFrame);
93     mp_appTable->move(40, 40);
94     mp_appTable->resize(1000, 1920 - 40 - 40 - 60 - 60);
95     mp_appTable->horizontalHeader()->setVisible(false);
96     mp_appTable->verticalHeader()->setVisible(false);
97     mp_appTable->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
98     mp_appTable->setRowCount(100);
99     mp_appTable->setColumnCount(APP_LIST_COLUMN_COUNT);
100
101     int i;
102
103     m_appList = mp_dBusAppFrameworkProxy->getAvailableApps();
104
105     mp_appTable->setRowCount((m_appList.size() + (APP_LIST_COLUMN_COUNT - 1)) / APP_LIST_COLUMN_COUNT);
106
107     if (m_appList.size() >= (9 * APP_LIST_COLUMN_COUNT))
108     {
109         mp_appTable->resize(1000, 1920 - 40 - 40 - 60 - 60);
110     }
111     else
112     {
113         mp_appTable->resize(1000, mp_appTable->rowCount() * 190);
114     }
115
116
117     /*for (i = 0; i < (mp_appTable->rowCount() * APP_LIST_COLUMN_COUNT); i++)
118     {
119         mp_appTable->verticalHeader()->resizeSection(i, 190);
120         mp_appTable->horizontalHeader()->resizeSection(i, 190);
121     }*/
122
123     for (i = 0; i < m_appList.size(); i++)
124     {
125        mp_appTable->setItem(i / APP_LIST_COLUMN_COUNT,
126                             i % APP_LIST_COLUMN_COUNT,
127                             new QTableWidgetItem(m_appList.at(i).name()));
128        mp_appTable->item(i / APP_LIST_COLUMN_COUNT,
129                          i % APP_LIST_COLUMN_COUNT)->setFlags(Qt::ItemIsEnabled);
130        mp_appTable->item(i / APP_LIST_COLUMN_COUNT,
131                          i % APP_LIST_COLUMN_COUNT)->setTextAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
132     }
133 }
134
135 void AppLauncherWidget::on_tableView_clicked(int row, int col)
136 {
137     if (m_appList.size() > row * APP_LIST_COLUMN_COUNT + col)
138     {
139         int pid = mp_dBusAppFrameworkProxy->launchApp(m_appList.at(row * APP_LIST_COLUMN_COUNT + col).id());
140         qDebug("%d, %d: start app %s", row, col, m_appList.at(row * APP_LIST_COLUMN_COUNT + col).id().toStdString().c_str());
141         qDebug("pid: %d", pid);
142
143         // the new app wants to be visible by default
144         emit newRequestsToBeVisibleApp(pid);
145
146         emit showAppLayer();
147     }
148 }