xref: /OK3568_Linux_fs/app/QLauncher/desktopwindow.cpp (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /****************************************************************************
2*4882a593Smuzhiyun **
3*4882a593Smuzhiyun ** Copyright (C) 2016 The Qt Company Ltd.
4*4882a593Smuzhiyun ** Contact: https://www.qt.io/licensing/
5*4882a593Smuzhiyun **
6*4882a593Smuzhiyun ** This file is part of the examples of the Qt Toolkit.
7*4882a593Smuzhiyun **
8*4882a593Smuzhiyun ** $QT_BEGIN_LICENSE:BSD$
9*4882a593Smuzhiyun ** Commercial License Usage
10*4882a593Smuzhiyun ** Licensees holding valid commercial Qt licenses may use this file in
11*4882a593Smuzhiyun ** accordance with the commercial license agreement provided with the
12*4882a593Smuzhiyun ** Software or, alternatively, in accordance with the terms contained in
13*4882a593Smuzhiyun ** a written agreement between you and The Qt Company. For licensing terms
14*4882a593Smuzhiyun ** and conditions see https://www.qt.io/terms-conditions. For further
15*4882a593Smuzhiyun ** information use the contact form at https://www.qt.io/contact-us.
16*4882a593Smuzhiyun **
17*4882a593Smuzhiyun ** BSD License Usage
18*4882a593Smuzhiyun ** Alternatively, you may use this file under the terms of the BSD license
19*4882a593Smuzhiyun ** as follows:
20*4882a593Smuzhiyun **
21*4882a593Smuzhiyun ** "Redistribution and use in source and binary forms, with or without
22*4882a593Smuzhiyun ** modification, are permitted provided that the following conditions are
23*4882a593Smuzhiyun ** met:
24*4882a593Smuzhiyun **   * Redistributions of source code must retain the above copyright
25*4882a593Smuzhiyun **     notice, this list of conditions and the following disclaimer.
26*4882a593Smuzhiyun **   * Redistributions in binary form must reproduce the above copyright
27*4882a593Smuzhiyun **     notice, this list of conditions and the following disclaimer in
28*4882a593Smuzhiyun **     the documentation and/or other materials provided with the
29*4882a593Smuzhiyun **     distribution.
30*4882a593Smuzhiyun **   * Neither the name of The Qt Company Ltd nor the names of its
31*4882a593Smuzhiyun **     contributors may be used to endorse or promote products derived
32*4882a593Smuzhiyun **     from this software without specific prior written permission.
33*4882a593Smuzhiyun **
34*4882a593Smuzhiyun **
35*4882a593Smuzhiyun ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36*4882a593Smuzhiyun ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37*4882a593Smuzhiyun ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
38*4882a593Smuzhiyun ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
39*4882a593Smuzhiyun ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40*4882a593Smuzhiyun ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41*4882a593Smuzhiyun ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
42*4882a593Smuzhiyun ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
43*4882a593Smuzhiyun ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
44*4882a593Smuzhiyun ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
45*4882a593Smuzhiyun ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
46*4882a593Smuzhiyun **
47*4882a593Smuzhiyun ** $QT_END_LICENSE$
48*4882a593Smuzhiyun **
49*4882a593Smuzhiyun ****************************************************************************/
50*4882a593Smuzhiyun #include "desktopwindow.h"
51*4882a593Smuzhiyun #include "xdgdesktopfile.h"
52*4882a593Smuzhiyun #include <QAbstractScrollArea>
53*4882a593Smuzhiyun 
54*4882a593Smuzhiyun #define DESKTOP_DIR "/usr/share/applications"
55*4882a593Smuzhiyun 
56*4882a593Smuzhiyun #define ICON_SIZE 128
57*4882a593Smuzhiyun #define ITEM_SPACE ICON_SIZE / 2
58*4882a593Smuzhiyun #define FONT_SIZE ICON_SIZE / 6
DesktopWindow()59*4882a593Smuzhiyun DesktopWindow::DesktopWindow()
60*4882a593Smuzhiyun {
61*4882a593Smuzhiyun     QDesktopWidget *desktopwidget = QApplication::desktop();
62*4882a593Smuzhiyun     QRect desktoprect = desktopwidget->availableGeometry();
63*4882a593Smuzhiyun     qDebug() << "QLauncher available size :" << desktoprect.width() << "x" << desktoprect.height();
64*4882a593Smuzhiyun 
65*4882a593Smuzhiyun     QDir dir(DESKTOP_DIR);
66*4882a593Smuzhiyun     QStringList filters;
67*4882a593Smuzhiyun     filters << "*.desktop";
68*4882a593Smuzhiyun     dir.setNameFilters(filters);
69*4882a593Smuzhiyun     list = dir.entryInfoList();
70*4882a593Smuzhiyun 
71*4882a593Smuzhiyun     if (list.length()!=0) {
72*4882a593Smuzhiyun         QListWidget *desktopList = new QListWidget();
73*4882a593Smuzhiyun         for (int i = 0; i < list.size(); ++i) {
74*4882a593Smuzhiyun             XdgDesktopFile df;
75*4882a593Smuzhiyun             df.load(list.at(i).fileName());
76*4882a593Smuzhiyun             QListWidgetItem *item = new QListWidgetItem(df.icon(ICON_SIZE), df.name());
77*4882a593Smuzhiyun //            qDebug() << "QLauncher add application:" << i << df.name();
78*4882a593Smuzhiyun             QFont font;
79*4882a593Smuzhiyun             font.setPixelSize(FONT_SIZE);
80*4882a593Smuzhiyun             item->setFont(font);
81*4882a593Smuzhiyun             item->setSizeHint(QSize(ICON_SIZE + ITEM_SPACE, ICON_SIZE + FONT_SIZE + ITEM_SPACE));
82*4882a593Smuzhiyun             desktopList->addItem(item);
83*4882a593Smuzhiyun         }
84*4882a593Smuzhiyun         desktopList->setSpacing(ITEM_SPACE);
85*4882a593Smuzhiyun         desktopList->setViewMode(QListView::IconMode);
86*4882a593Smuzhiyun         desktopList->setFlow(QListView::LeftToRight);
87*4882a593Smuzhiyun         desktopList->setDragEnabled(false);
88*4882a593Smuzhiyun         desktopList->setWordWrap(true);
89*4882a593Smuzhiyun         desktopList->setWrapping(true);
90*4882a593Smuzhiyun         desktopList->setFrameShape(QListWidget::NoFrame);
91*4882a593Smuzhiyun         desktopList->setGridSize(QSize(ICON_SIZE + ITEM_SPACE, ICON_SIZE + ITEM_SPACE));
92*4882a593Smuzhiyun         desktopList->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
93*4882a593Smuzhiyun         desktopList->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
94*4882a593Smuzhiyun         desktopList->setStyleSheet("background-color:transparent");
95*4882a593Smuzhiyun         desktopList->setIconSize(QSize(ICON_SIZE, ICON_SIZE));
96*4882a593Smuzhiyun         desktopList->setResizeMode(QListWidget::Adjust);
97*4882a593Smuzhiyun         setCentralWidget(desktopList);
98*4882a593Smuzhiyun         setWindowState(Qt::WindowMaximized);
99*4882a593Smuzhiyun         setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnBottomHint);
100*4882a593Smuzhiyun         setStyleSheet("QListWidget{background-color:transparent}");
101*4882a593Smuzhiyun         QProcess p;
102*4882a593Smuzhiyun         p.start("cat /etc/os-release");
103*4882a593Smuzhiyun         p.waitForStarted();
104*4882a593Smuzhiyun         p.waitForFinished();
105*4882a593Smuzhiyun         QTextStream tt(p.readAllStandardOutput());
106*4882a593Smuzhiyun         QString ll;
107*4882a593Smuzhiyun         bool found = 0;
108*4882a593Smuzhiyun         do{
109*4882a593Smuzhiyun             ll = tt.readLine();
110*4882a593Smuzhiyun //            qDebug() << ll;
111*4882a593Smuzhiyun             if(!ll.compare("NAME=\"Debian GNU/Linux\"")){
112*4882a593Smuzhiyun                 found = true;
113*4882a593Smuzhiyun             }
114*4882a593Smuzhiyun         }while (! ll.isNull());
115*4882a593Smuzhiyun         if(found)
116*4882a593Smuzhiyun             setStyleSheet("QMainWindow{border-image: url(:/resources/background_debian.jpg);}");
117*4882a593Smuzhiyun         else
118*4882a593Smuzhiyun             setStyleSheet("QMainWindow{border-image: url(:/resources/background_linux.jpg);}");
119*4882a593Smuzhiyun         connect(desktopList, SIGNAL(itemPressed(QListWidgetItem *)), this, SLOT(on_itemClicked(QListWidgetItem *)));
120*4882a593Smuzhiyun     } else
121*4882a593Smuzhiyun         qDebug()<<"QLauncher no found .desktop file in"<<DESKTOP_DIR;
122*4882a593Smuzhiyun         resize(QGuiApplication::primaryScreen()->availableSize());
123*4882a593Smuzhiyun }
124*4882a593Smuzhiyun 
on_itemClicked(QListWidgetItem * item)125*4882a593Smuzhiyun void DesktopWindow::on_itemClicked(QListWidgetItem * item)
126*4882a593Smuzhiyun {
127*4882a593Smuzhiyun     for (int i = 0; i < list.size(); ++i) {
128*4882a593Smuzhiyun         XdgDesktopFile df;
129*4882a593Smuzhiyun         df.load(list.at(i).fileName());
130*4882a593Smuzhiyun         if (df.name() == item->text()) {
131*4882a593Smuzhiyun             qDebug()<<"QLauncher start"<<df.name();
132*4882a593Smuzhiyun             df.startDetached();
133*4882a593Smuzhiyun         }
134*4882a593Smuzhiyun     }
135*4882a593Smuzhiyun }
136*4882a593Smuzhiyun 
137*4882a593Smuzhiyun 
138