@ -507,55 +507,68 @@ PlasmaComponents.Page {
}
/ / ! E N D : D e l a y
/ / ! B E G I N : Be h a v i o r
/ / ! B E G I N : Ap p l e t s
ColumnLayout {
spacing: units . smallSpacing
Layout.rightMargin: units . smallSpacing * 2
visible: dialog . expertLevel
LatteExtraControls . Header {
text: i18n c( "adjust properties to differentiate" , "Adjust ")
text: i18n ( "Applets ")
}
PlasmaComponents . CheckBox {
id: titleTooltipsChk
Layout.leftMargin: units . smallSpacing * 2
text: i18n ( " Activate KWin edge after hid ing")
checked: latteView. visibility . enableKWinEdge s
text: i18n ( " Show title tooltips on hover ing")
checked: plasmoid. configuration . titleTooltip s
onClicked: {
latteView. visibility . enableKWinEdge s = checked ;
plasmoid. configuration . titleTooltip s = checked ;
}
}
PlasmaComponents . CheckBox {
Layout.leftMargin: units . smallSpacing * 2
text: i18n ( "Decrease applets size when it is needed")
text: i18n ( "Decrease size automatically when needed")
checked: plasmoid . configuration . autoDecreaseIconSize
tooltip: i18n ( "Applets size is decreased automatically when the contents \n exceed the maximum length \n\nHint: this option is disabled when only plasma taskmanagers are present")
tooltip: i18n ( "Applets size is decreased automatically when the contents exceed the maximum length \n\nHint: this option is disabled when plasma taskmanagers are present")
enabled: ! ( latteView . tasksPresent ( ) && ! latteView . latteTasksPresent ( ) ) ;
onClicked: {
plasmoid . configuration . autoDecreaseIconSize = checked
}
}
}
/ / ! E N D : A p p l e t s
/ / ! B E G I N : A d j u s t
ColumnLayout {
spacing: units . smallSpacing
Layout.rightMargin: units . smallSpacing * 2
visible: dialog . expertLevel
LatteExtraControls . Header {
text: i18n ( "Environment" )
}
PlasmaComponents . CheckBox {
Layout.leftMargin: units . smallSpacing * 2
text: i18n ( "Add launchers only in the corresponding area" )
checked: plasmoid . configuration . addLaunchersInTaskManager
tooltip: i18n ( "Launchers are added only in the taskmanager and not as plasma applets" )
text: i18n ( "A ctivate KWin edge after hiding ")
checked: latteView. visibility . enableKWinEdges
tooltip: i18n ( " After the view becomes hidden, KWin is informed to track user feedback. For example an edge visual hint is shown whenever the mouse approaches the hidden view ")
onClicked: {
plasmoid . configuration . addLaunchersInTaskManager = checked ;
latteView. visibility . enableKWinEdges = checked ;
}
}
PlasmaComponents . CheckBox {
Layout.leftMargin: units . smallSpacing * 2
text: i18n ( "Prefer for global shortcuts activation")
text: i18n ( "Prefer this view for global shortcuts activation")
checked: latteView . isPreferredForShortcuts
tooltip: i18n ( " Enable highest priority for global shortcuts activation ")
tooltip: i18n ( " This view is preferred with highest priority for activating global shortcuts ")
onClicked: {
latteView . isPreferredForShortcuts = checked
@ -564,12 +577,12 @@ PlasmaComponents.Page {
PlasmaComponents . CheckBox {
Layout.leftMargin: units . smallSpacing * 2
text: i18n ( " A bove fullscreen windows")
text: i18n ( " Can be a bove fullscreen windows")
checked: latteView . byPassWM
enabled: ! ( latteView . visibility . mode === Latte . Types . AlwaysVisible
|| latteView . visibility . mode === Latte . Types . WindowsGoBelow )
tooltip: i18n ( "BypassWindowManagerHint flag for the window. \n The view will be above all windows even those set as 'Always On Top'")
tooltip: i18n ( "BypassWindowManagerHint flag for the window. The view will be above all windows even those set as 'Always On Top'")
onCheckedChanged: {
latteView . byPassWM = checked ;
@ -598,7 +611,7 @@ PlasmaComponents.Page {
}
}
}
/ / ! E N D : Be h a v i o r
/ / ! E N D : Ad j u s t
/ / ! B o t t o m s p a c e r
PlasmaComponents . Label {