DesktopChangeOSD reads its configuration on startup and change
This commit is contained in:
parent
87fede97a1
commit
6232f0005e
1 changed files with 14 additions and 1 deletions
|
@ -30,13 +30,22 @@ Item {
|
||||||
// we count desktops starting from 0 to have it better match the layout in the Grid
|
// we count desktops starting from 0 to have it better match the layout in the Grid
|
||||||
property int currentDesktop: 0
|
property int currentDesktop: 0
|
||||||
property int previousDesktop: 0
|
property int previousDesktop: 0
|
||||||
// TODO: read from config
|
|
||||||
property int animationDuration: 1000
|
property int animationDuration: 1000
|
||||||
property bool showGrid: true
|
property bool showGrid: true
|
||||||
|
|
||||||
|
function loadConfig() {
|
||||||
|
root.animationDuration = readConfig("PopupHideDelay", 1000);
|
||||||
|
if (readConfig("TextOnly", "false") == "true") {
|
||||||
|
root.showGrid = false;
|
||||||
|
} else {
|
||||||
|
root.showGrid = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
var screen = workspace.clientArea(KWin.FullScreenArea, workspace.activeScreen, workspace.currentDesktop);
|
var screen = workspace.clientArea(KWin.FullScreenArea, workspace.activeScreen, workspace.currentDesktop);
|
||||||
root.screenWidth = screen.width;
|
root.screenWidth = screen.width;
|
||||||
root.screenHeight = screen.height;
|
root.screenHeight = screen.height;
|
||||||
|
loadConfig();
|
||||||
}
|
}
|
||||||
PlasmaCore.Dialog {
|
PlasmaCore.Dialog {
|
||||||
id: dialog
|
id: dialog
|
||||||
|
@ -284,4 +293,8 @@ Item {
|
||||||
dialog.visible = true;
|
dialog.visible = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Connections {
|
||||||
|
target: options
|
||||||
|
onConfigChanged: root.loadConfig()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue