|
|
|
@ -70,46 +70,67 @@ PlasmaComponents.Page {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PlasmaComponents.CheckBox {
|
|
|
|
|
id: audioIndicatorChk
|
|
|
|
|
id: dotsOnActive
|
|
|
|
|
Layout.leftMargin: units.smallSpacing * 2
|
|
|
|
|
text: i18n("Indicator for audio streams")
|
|
|
|
|
checked: plasmoid.configuration.indicateAudioStreams
|
|
|
|
|
tooltip: i18n("Audio indicator from which the user can mute/unmute an app")
|
|
|
|
|
text: i18n("Show an extra dot for grouped windows when active")
|
|
|
|
|
checked: plasmoid.configuration.dotsOnActive
|
|
|
|
|
tooltip: i18n("Grouped windows show both a line and a dot when \none of them is active and the Line Active Indicator \nis enabled")
|
|
|
|
|
visible: dialog.highLevel
|
|
|
|
|
enabled: plasmoid.configuration.activeIndicatorType === Latte.Types.LineIndicator
|
|
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
|
plasmoid.configuration.indicateAudioStreams = checked
|
|
|
|
|
plasmoid.configuration.dotsOnActive = checked
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
//! END: Tasks Appearance
|
|
|
|
|
|
|
|
|
|
//! BEGIN: Badges
|
|
|
|
|
ColumnLayout {
|
|
|
|
|
spacing: units.smallSpacing
|
|
|
|
|
Layout.topMargin: units.smallSpacing
|
|
|
|
|
Layout.rightMargin: units.smallSpacing * 2
|
|
|
|
|
visible: dialog.highLevel
|
|
|
|
|
|
|
|
|
|
LatteExtraControls.Header {
|
|
|
|
|
text: i18n("Badges")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PlasmaComponents.CheckBox {
|
|
|
|
|
id: smartLaunchersChk
|
|
|
|
|
Layout.leftMargin: units.smallSpacing * 2
|
|
|
|
|
text: i18n("Progress information for tasks")
|
|
|
|
|
checked: plasmoid.configuration.smartLaunchersEnabled
|
|
|
|
|
tooltip: i18n("Show a beautiful progress animation e.g. when copying \nfiles with Dolphin")
|
|
|
|
|
text: i18n("Unread messages from tasks")
|
|
|
|
|
checked: plasmoid.configuration.showInfoBadge
|
|
|
|
|
tooltip: i18n("Show unread messages or information from tasks")
|
|
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
|
plasmoid.configuration.smartLaunchersEnabled = checked
|
|
|
|
|
plasmoid.configuration.showInfoBadge = checked
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PlasmaComponents.CheckBox {
|
|
|
|
|
id: dotsOnActive
|
|
|
|
|
Layout.leftMargin: units.smallSpacing * 2
|
|
|
|
|
text: i18n("Show an extra dot for grouped windows when active")
|
|
|
|
|
checked: plasmoid.configuration.dotsOnActive
|
|
|
|
|
tooltip: i18n("Grouped windows show both a line and a dot when \none of them is active and the Line Active Indicator \nis enabled")
|
|
|
|
|
visible: dialog.highLevel
|
|
|
|
|
enabled: plasmoid.configuration.activeIndicatorType === Latte.Types.LineIndicator
|
|
|
|
|
text: i18n("Progress information for tasks")
|
|
|
|
|
checked: plasmoid.configuration.showProgressBadge
|
|
|
|
|
tooltip: i18n("Show a progress animation for tasks e.g. when copying files with Dolphin")
|
|
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
|
plasmoid.configuration.dotsOnActive = checked
|
|
|
|
|
plasmoid.configuration.showProgressBadge = checked
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PlasmaComponents.CheckBox {
|
|
|
|
|
Layout.leftMargin: units.smallSpacing * 2
|
|
|
|
|
text: i18n("Audio playing from tasks")
|
|
|
|
|
checked: plasmoid.configuration.showAudioBadge
|
|
|
|
|
tooltip: i18n("Show audio playing from tasks, the user is able to mute/unmute or change the volume")
|
|
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
|
plasmoid.configuration.showAudioBadge = checked
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//! END: Tasks Appearance
|
|
|
|
|
//! END: Badges
|
|
|
|
|
|
|
|
|
|
//! BEGIN: Tasks Interaction
|
|
|
|
|
ColumnLayout {
|
|
|
|
|