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
|
diff '--color=auto' -Nurd lxqt-runner-1.4.0/CMakeLists.txt lxqt-runner-1.4.0.new/CMakeLists.txt
--- lxqt-runner-1.4.0/CMakeLists.txt 2023-11-05 04:08:33.000000000 -0800
+++ lxqt-runner-1.4.0.new/CMakeLists.txt 2023-11-26 05:46:06.721141501 -0800
@@ -25,7 +25,7 @@
)
# Minimum Versions
-set(KF5_MINIMUM_VERSION "5.101.0")
+set(KF5_MINIMUM_VERSION "5.36.0")
set(LIBMENUCACHE_MINIMUM_VERSION "1.1.0")
set(LXQT_MINIMUM_VERSION "1.4.0")
set(LXQT_GLOBALKEYS_MINIMUM_VERSION "1.4.0")
diff '--color=auto' -Nurd lxqt-runner-1.4.0/dialog.cpp lxqt-runner-1.4.0.new/dialog.cpp
--- lxqt-runner-1.4.0/dialog.cpp 2023-11-05 04:08:33.000000000 -0800
+++ lxqt-runner-1.4.0.new/dialog.cpp 2023-11-26 05:46:44.460840536 -0800
@@ -55,7 +55,6 @@
#include <QScrollBar>
#include <KWindowSystem/KWindowSystem>
-#include <KWindowSystem/KX11Extras>
#define DEFAULT_SHORTCUT "Alt+F2"
@@ -201,8 +200,8 @@
************************************************/
void Dialog::showEvent(QShowEvent *event)
{
- connect(KX11Extras::self(), &KX11Extras::activeWindowChanged, this, &Dialog::onActiveWindowChanged);
- connect(KX11Extras::self(), &KX11Extras::currentDesktopChanged, this, &Dialog::onCurrentDesktopChanged);
+ connect(KWindowSystem::self(), &KWindowSystem::activeWindowChanged, this, &Dialog::onActiveWindowChanged);
+ connect(KWindowSystem::self(), &KWindowSystem::currentDesktopChanged, this, &Dialog::onCurrentDesktopChanged);
return QDialog::showEvent(event);
}
@@ -213,8 +212,8 @@
void Dialog::hideEvent(QHideEvent *event)
{
QDialog::hideEvent(event);
- disconnect(KX11Extras::self(), &KX11Extras::currentDesktopChanged, this, &Dialog::onCurrentDesktopChanged);
- disconnect(KX11Extras::self(), &KX11Extras::activeWindowChanged, this, &Dialog::onActiveWindowChanged);
+ disconnect(KWindowSystem::self(), &KWindowSystem::currentDesktopChanged, this, &Dialog::onCurrentDesktopChanged);
+ disconnect(KWindowSystem::self(), &KWindowSystem::activeWindowChanged, this, &Dialog::onActiveWindowChanged);
}
@@ -349,7 +348,7 @@
{
// Using KWindowSystem to detect the active window since
// QWidget::isActiveWindow is not working reliably.
- if (isVisible() && (KX11Extras::activeWindow() == winId()))
+ if (isVisible() && (KWindowSystem::activeWindow() == winId()))
{
hide();
}
@@ -357,7 +356,7 @@
{
realign();
show();
- KX11Extras::forceActiveWindow(winId());
+ KWindowSystem::forceActiveWindow(winId());
ui->commandEd->setFocus();
ui->commandEd->selectAll();
}
@@ -378,7 +377,7 @@
screenNumber = screen ? screens.indexOf(screen) : 0;
}
- desktop = screens.at(screenNumber)->availableGeometry().intersected(KX11Extras::workArea(screenNumber));
+ desktop = screens.at(screenNumber)->availableGeometry().intersected(KWindowSystem::workArea(screenNumber));
QRect rect = this->geometry();
rect.moveCenter(desktop.center());
@@ -452,7 +451,7 @@
if (mDesktopChanged)
{
mDesktopChanged = false;
- KX11Extras::forceActiveWindow(winId());
+ KWindowSystem::forceActiveWindow(winId());
} else
{
hide();
@@ -468,8 +467,8 @@
{
if (isVisible())
{
- KX11Extras::setOnDesktop(winId(), screen);
- KX11Extras::forceActiveWindow(winId());
+ KWindowSystem::setOnDesktop(winId(), screen);
+ KWindowSystem::forceActiveWindow(winId());
//Note: workaround for changing desktop while runner is shown
// The KWindowSystem::forceActiveWindow may fail to correctly activate runner if there
// are any other windows on the new desktop (probably because of the sequence while WM
|