mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2026-06-19 03:45:50 +00:00
This is a big update which requires existing users to migrate their desktop setup (Plasmoids, their configurations, layout changes, etc.) to a new desktop session. This commit replaces the modified desktop shell (org.kde.plasma.desktop) with ATP's shell (io.gitgud.wackyideas.desktop) which requires new session options. This is similar to how plasma-bigscreen and plasma-mobile are used - logging into a separate session via the login manager (SDDM). ATP will provide sessions for both X11 and Wayland. This, along with now providing a forked panel as well, is a step forward regarding separating ATP's codebase and KDE's upstream code. Further goals are to be able to further isolate the ATP session from the regular KDE session in terms of shared configurations, etc. For existing users - Rerun install_plasmoids.sh and install_plasma_components.sh, you can delete the old shell (shells/org.kde.plasma.desktop) and panel plasmoid (plasmoids/org.kde.panel). As mentioned previously, panel and desktop layouts, plasmoids and their configurations will not be migrated to the newly available sessions, so they need to be set up manually.
191 lines
7 KiB
QML
191 lines
7 KiB
QML
/*
|
|
SPDX-FileCopyrightText: 2013 Marco Martin <mart@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls 2.3 as QQC2
|
|
import QtQuick.Layouts 1.0
|
|
|
|
import org.kde.kirigami 2.20 as Kirigami
|
|
|
|
Item {
|
|
id: root
|
|
|
|
signal configurationChanged
|
|
implicitWidth: mainColumn.implicitWidth
|
|
implicitHeight: mainColumn.implicitHeight
|
|
|
|
property var prettyStrings: {
|
|
"LeftButton": i18nd("plasma_shell_org.kde.plasma.desktop", "Left-Button"),
|
|
"RightButton": i18nd("plasma_shell_org.kde.plasma.desktop", "Right-Button"),
|
|
"MiddleButton": i18nd("plasma_shell_org.kde.plasma.desktop", "Middle-Button"),
|
|
"BackButton": i18nd("plasma_shell_org.kde.plasma.desktop", "Back-Button"),
|
|
"ForwardButton": i18nd("plasma_shell_org.kde.plasma.desktop", "Forward-Button"),
|
|
|
|
"wheel:Vertical": i18nd("plasma_shell_org.kde.plasma.desktop", "Vertical-Scroll"),
|
|
"wheel:Horizontal": i18nd("plasma_shell_org.kde.plasma.desktop", "Horizontal-Scroll"),
|
|
|
|
"ShiftModifier": i18nd("plasma_shell_org.kde.plasma.desktop", "Shift"),
|
|
"ControlModifier": i18nd("plasma_shell_org.kde.plasma.desktop", "Ctrl"),
|
|
"AltModifier": i18nd("plasma_shell_org.kde.plasma.desktop", "Alt"),
|
|
"MetaModifier": i18nd("plasma_shell_org.kde.plasma.desktop", "Meta")
|
|
}
|
|
|
|
function saveConfig() {
|
|
configDialog.currentContainmentActionsModel.save();
|
|
}
|
|
|
|
Connections {
|
|
target: configDialog.currentContainmentActionsModel
|
|
function onConfigurationChanged() {
|
|
root.configurationChanged()
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: aboutComponent
|
|
|
|
Kirigami.OverlaySheet {
|
|
id: internalAboutDialog
|
|
|
|
property alias metaData: aboutPluginPage.metaData
|
|
|
|
width: Math.round(root.width * 0.8)
|
|
onClosed: destroy()
|
|
|
|
AboutPlugin {
|
|
id: aboutPluginPage
|
|
metaData: internalAboutDialog.metaData
|
|
}
|
|
|
|
Component.onCompleted: open();
|
|
}
|
|
}
|
|
|
|
GridLayout {
|
|
id: mainColumn
|
|
flow: GridLayout.TopToBottom
|
|
y: 25
|
|
width: parent.width - Kirigami.Units.largeSpacing * 4
|
|
x: Kirigami.Units.largeSpacing * 2
|
|
|
|
Repeater {
|
|
id: actionsRepeater
|
|
model: configDialog.currentContainmentActionsModel
|
|
|
|
MouseEventInputButton {
|
|
Layout.column: 0
|
|
Layout.row: index
|
|
Layout.fillWidth: true
|
|
Layout.minimumWidth: implicitWidth
|
|
defaultText: {
|
|
var splitAction = model.action.split(';');
|
|
|
|
var button = splitAction[0];
|
|
var modifiers = (splitAction[1] || "").split('|').filter(function (item) {
|
|
return item !== "NoModifier";
|
|
});
|
|
|
|
var parts = modifiers;
|
|
modifiers.push(button);
|
|
|
|
return parts.map(function (item) {
|
|
return prettyStrings[item] || item;
|
|
}).join(i18ndc("plasma_shell_org.kde.plasma.desktop", "Concatenation sign for shortcuts, e.g. Ctrl+Shift", "+"));
|
|
}
|
|
eventString: model.action
|
|
onEventStringChanged: {
|
|
configDialog.currentContainmentActionsModel.update(index, eventString, model.pluginName);
|
|
}
|
|
}
|
|
}
|
|
|
|
Repeater {
|
|
model: configDialog.currentContainmentActionsModel
|
|
|
|
QQC2.ComboBox {
|
|
id: pluginsCombo
|
|
// "index" argument of onActivated shadows the model index
|
|
readonly property int pluginIndex: index
|
|
Layout.fillWidth: true
|
|
Layout.column: 1
|
|
Layout.row: index
|
|
// both MouseEventInputButton and this ComboBox have fillWidth for a uniform layout
|
|
// however, their implicit sizes is taken into account and they compete against
|
|
// each other for available space. By setting an insane preferredWidth we give
|
|
// ComboBox a greater share of the available space
|
|
Layout.preferredWidth: 9000
|
|
model: configDialog.containmentActionConfigModel
|
|
textRole: "name"
|
|
property bool initialized: false
|
|
Component.onCompleted: {
|
|
for (var i = 0; i < configDialog.containmentActionConfigModel.count; ++i) {
|
|
if (configDialog.containmentActionConfigModel.get(i).pluginName === pluginName) {
|
|
pluginsCombo.currentIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
pluginsCombo.initialized = true;
|
|
}
|
|
onActivated: {
|
|
if (initialized) {
|
|
var newPluginName = configDialog.containmentActionConfigModel.get(index).pluginName;
|
|
if (newPluginName !== pluginName) {
|
|
configDialog.currentContainmentActionsModel.update(pluginIndex, action, newPluginName);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Repeater {
|
|
model: configDialog.currentContainmentActionsModel
|
|
|
|
RowLayout {
|
|
Layout.column: 2
|
|
Layout.row: index
|
|
|
|
QQC2.Button {
|
|
icon.name: "configure"
|
|
width: height
|
|
enabled: model.hasConfigurationInterface
|
|
onClicked: {
|
|
configDialog.currentContainmentActionsModel.showConfiguration(index, this);
|
|
}
|
|
}
|
|
QQC2.Button {
|
|
icon.name: "dialog-information"
|
|
width: height
|
|
onClicked: {
|
|
const metaData = configDialog.currentContainmentActionsModel.aboutMetaData(index);
|
|
if (!metaData) {
|
|
return;
|
|
}
|
|
aboutComponent.incubateObject(root.Window.window.contentItem, {
|
|
"metaData": metaData,
|
|
"title": i18ndc("plasma_shell_org.kde.plasma.desktop", "@title", "About"),
|
|
}, Qt.Asynchronous);
|
|
}
|
|
}
|
|
QQC2.Button {
|
|
icon.name: "list-remove"
|
|
width: height
|
|
onClicked: {
|
|
configDialog.currentContainmentActionsModel.remove(index);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
MouseEventInputButton {
|
|
defaultText: i18nd("plasma_shell_org.kde.plasma.desktop", "Add Action");
|
|
icon.name: checked ? "input-mouse-symbolic" : "list-add"
|
|
onEventStringChanged: {
|
|
configDialog.currentContainmentActionsModel.append(eventString, "org.kde.contextmenu");
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|