-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Pager.cxx
141 lines (106 loc) · 3.89 KB
/
Pager.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
/*
This file is part of liquidshell.
SPDX-FileCopyrightText: 2017 - 2024 Martin Koller <[email protected]>
SPDX-License-Identifier: GPL-3.0-or-later
*/
#include <Pager.hxx>
#include <PagerButton.hxx>
#include <DesktopPanel.hxx>
#include <KWinCompat.hxx>
#include <QGridLayout>
#include <QButtonGroup>
#include <QPushButton>
#include <QAction>
#include <QWheelEvent>
#include <QDebug>
#include <KLocalizedString>
#include <KCMultiDialog>
#include <KConfig>
#include <KConfigGroup>
#include <KPluginMetaData>
//--------------------------------------------------------------------------------
Pager::Pager(DesktopPanel *parent)
: QWidget(parent)
{
group = new QButtonGroup(this);
QGridLayout *grid = new QGridLayout(this);
grid->setSpacing(2);
grid->setContentsMargins(QMargins());
connect(KWinCompat::self(), &KWinCompat::numberOfDesktopsChanged, this, &Pager::fill);
connect(KWinCompat::self(), &KWinCompat::currentDesktopChanged,
[this]()
{
if ( KWinCompat::currentDesktop() <= buttons.count() )
buttons[KWinCompat::currentDesktop() - 1]->setChecked(true);
}
);
connect(parent, &DesktopPanel::rowsChanged, this, &Pager::fill);
KConfig config;
KConfigGroup group = config.group("Pager");
if ( !group.hasKey("showIcons") ) // create config entry so that one knows it exists
group.writeEntry("showIcons", true);
showIcons = group.readEntry("showIcons", true);
fill();
QAction *action = new QAction(this);
action->setIcon(QIcon::fromTheme("configure"));
action->setText(i18n("Configure Virtual Desktops..."));
addAction(action);
connect(action, &QAction::triggered,
[this]()
{
auto dialog = new KCMultiDialog(parentWidget());
dialog->setAttribute(Qt::WA_DeleteOnClose);
dialog->setWindowTitle(i18n("Configure Virtual Desktops"));
KPluginMetaData data("plasma/kcms/systemsettings/kcm_kwin_virtualdesktops");
dialog->addModule(data);
dialog->adjustSize();
dialog->show();
}
);
setContextMenuPolicy(Qt::ActionsContextMenu);
}
//--------------------------------------------------------------------------------
void Pager::fill()
{
qDeleteAll(buttons);
buttons.clear();
NETRootInfo ri(qApp->nativeInterface<QNativeInterface::QX11Application>()->connection(), NET::Property(), NET::WM2DesktopLayout);
int row = 0, col = 0;
const int MAX_COLUMNS = std::max(1, ri.desktopLayoutColumnsRows().width());
for (int i = 1; i <= KWinCompat::numberOfDesktops(); i++)
{
PagerButton *b = new PagerButton(i, qobject_cast<DesktopPanel *>(parentWidget()), showIcons);
b->setCheckable(true);
b->setFocusPolicy(Qt::NoFocus);
group->addButton(b);
buttons.append(b);
if ( i == KWinCompat::currentDesktop() )
b->setChecked(true);
connect(b, &PagerButton::clicked, this, &Pager::changeDesktop);
static_cast<QGridLayout *>(layout())->addWidget(b, row, col);
col = (col + 1) % MAX_COLUMNS;
if ( col == 0 ) row++;
}
}
//--------------------------------------------------------------------------------
void Pager::changeDesktop(bool checked)
{
if ( !checked )
return;
int desktopNum = qobject_cast<PagerButton *>(sender())->getDesktop();
if ( KWinCompat::currentDesktop() == desktopNum )
KWindowSystem::setShowingDesktop(!KWindowSystem::showingDesktop());
else
KWinCompat::setCurrentDesktop(desktopNum);
}
//--------------------------------------------------------------------------------
void Pager::wheelEvent(QWheelEvent *event)
{
int desktopNum = KWinCompat::currentDesktop() - 1 + KWinCompat::numberOfDesktops();
if ( event->angleDelta().y() > 0 )
desktopNum++;
else
desktopNum--;
KWinCompat::setCurrentDesktop((desktopNum % KWinCompat::numberOfDesktops()) + 1);
}
//--------------------------------------------------------------------------------