forked from KDE/liquidshell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuickLaunch.cxx
156 lines (124 loc) · 4.51 KB
/
QuickLaunch.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
Copyright 2017 Martin Koller, [email protected]
This file is part of liquidshell.
liquidshell is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
liquidshell is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with liquidshell. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QuickLaunch.hxx>
#include <QFrame>
#include <QIcon>
#include <QToolButton>
#include <QMimeDatabase>
#include <QFileInfo>
#include <QDir>
#include <QDebug>
#include <KDesktopFile>
#include <KRun>
#include <KFileItem>
#include <KConfigGroup>
#include <KLocalizedString>
#include <KIconLoader>
//--------------------------------------------------------------------------------
QuickLaunch::QuickLaunch(DesktopPanel *parent)
: Launcher(parent, "QuickLaunch")
{
QFrame *frame = new QFrame;
frame->setFrameShape(QFrame::StyledPanel);
grid = new QGridLayout(frame);
grid->setContentsMargins(QMargins());
grid->setSpacing(2);
layout()->addWidget(frame);
loadConfig();
connect(parent, &DesktopPanel::rowsChanged, this, &QuickLaunch::fill);
connect(KIconLoader::global(), &KIconLoader::iconLoaderSettingsChanged, this, &QuickLaunch::fill);
}
//--------------------------------------------------------------------------------
void QuickLaunch::fill()
{
const int MAX_ROWS = qobject_cast<DesktopPanel *>(parentWidget())->getRows();
QLayoutItem *child;
while ( (child = grid->takeAt(0)) )
{
delete child->widget();
delete child;
}
if ( !dirPath.isEmpty() )
{
QDir dir(dirPath);
QFileInfoList entries = dir.entryInfoList(QDir::Files);
int row = 0, col = 0;
for (const QFileInfo &info : entries)
{
QUrl url(QUrl::fromLocalFile(info.absoluteFilePath()));
QIcon icon;
QString name = info.fileName();
KFileItem item(url);
if ( item.isDesktopFile() )
{
KDesktopFile desktopFile(info.absoluteFilePath());
if ( desktopFile.noDisplay() )
continue;
name = desktopFile.readName();
if ( name.isEmpty() )
name = desktopFile.readGenericName();
QString iconName = desktopFile.readIcon();
icon = QIcon::fromTheme(iconName.isEmpty() ? name : iconName);
}
else
{
QMimeDatabase db;
icon = QIcon::fromTheme(db.mimeTypeForFile(info.absoluteFilePath()).iconName());
}
QToolButton *button = new QToolButton(this);
button->setAutoRaise(true);
button->setIcon(icon);
button->setToolTip(name);
if ( MAX_ROWS > 1 )
button->setIconSize(QSize(22, 22));
else
{
int size = KIconLoader::global()->currentSize(KIconLoader::Panel);
button->setIconSize(QSize(size, size));
}
connect(button, &QToolButton::clicked, [url]() { new KRun(url, nullptr); });
grid->addWidget(button, row, col, Qt::AlignCenter);
row = (row + 1) % MAX_ROWS;
if ( row == 0 ) col++;
// limit width in case one selects a directory with too many items
const int MAX_COLS = 15;
if ( col > MAX_COLS )
break;
}
}
if ( grid->count() == 0 )
{
// add default entry
QToolButton *button = new QToolButton(this);
button->setAutoRaise(true);
button->setIcon(QIcon::fromTheme("user-home"));
button->setIconSize(QSize(22, 22));
button->setToolTip(QStandardPaths::displayName(QStandardPaths::HomeLocation));
QUrl url = QUrl::fromLocalFile(QStandardPaths::writableLocation(QStandardPaths::HomeLocation));
connect(button, &QToolButton::clicked, [url]() { new KRun(url, nullptr); });
grid->addWidget(button, 0, 0, Qt::AlignCenter);
button = new QToolButton(this);
button->setAutoRaise(true);
button->setIcon(QIcon::fromTheme("internet-web-browser"));
button->setIconSize(QSize(22, 22));
button->setToolTip(i18n("Web Browser"));
connect(button, &QToolButton::clicked, []() { new KRun(QUrl("http://www.kde.org"), nullptr); });
if ( MAX_ROWS == 1 )
grid->addWidget(button, 0, 1, Qt::AlignCenter);
else
grid->addWidget(button, 1, 0, Qt::AlignCenter);
}
}
//--------------------------------------------------------------------------------