kwin/kcmkwin/kwincompositing/qml/EffectView.qml

291 lines
9.6 KiB
QML
Raw Normal View History

2013-08-17 08:28:09 +00:00
/**************************************************************************
* KWin - the KDE window manager *
* This file is part of the KDE project. *
* *
* Copyright (C) 2013 Antonis Tsiapaliokas <kok3rs@gmail.com> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
**************************************************************************/
import QtQuick 2.1
import QtQuick.Controls 1.0
import QtQuick.Layouts 1.0
import org.kde.kwin.kwincompositing 1.0
2013-09-10 07:54:46 +00:00
import org.kde.plasma.components 2.0 as PlasmaComponents
2013-08-17 08:28:09 +00:00
Item {
Component {
id: sectionHeading
Rectangle {
width: parent.width
height:25
color: "white"
Text {
text: section
font.bold: true
font.pointSize: 16
color: "gray"
}
}
}
CompositingType {
id: compositingType
}
RowLayout {
id: row
width: parent.width
2013-08-17 08:28:09 +00:00
height: parent.height
CheckBox {
id: windowManagement
2013-09-10 08:41:42 +00:00
text: i18n("Improved Window Management")
checked: false
anchors.left: col.right
anchors.top: parent.top
anchors.topMargin: col.height/4
onClicked: searchModel.enableWidnowManagement(windowManagement.checked)
2013-08-17 08:28:09 +00:00
}
ComboBox {
id: openGLType
model: compositingType
currentIndex: compositingType.currentOpenGLType()
anchors.top: windowManagement.bottom
anchors.left: col.right
onCurrentIndexChanged: {
apply.enabled = true;
glScaleFilter.visible = currentIndex != 3;
xrScaleFilter.visible = currentIndex == 3;
2013-09-12 11:55:25 +00:00
glColorCorrection.enabled = currentIndex !=3 && glColorCorrection !=4;
}
}
2013-09-11 08:54:09 +00:00
Label {
id: animationText
text: i18n("Animation Speed:")
anchors {
top: openGLType.bottom
horizontalCenter: windowManagement.horizontalCenter
topMargin: 20
}
}
Slider {
id: animationSpeed
maximumValue: 6.0
stepSize: 1.0
tickmarksEnabled: true
value: compositing.animationSpeed
anchors {
top: animationText.bottom
left: col.right
}
onValueChanged: {
apply.enabled = true;
}
}
2013-09-11 11:11:39 +00:00
Label {
id: windowThumbnailText
text: i18n("Keep Window Thumbnails:")
anchors {
top: animationSpeed.bottom
horizontalCenter: windowManagement.horizontalCenter
topMargin: 20
}
}
ComboBox {
id: windowThumbnail
model: [i18n("Always (Breaks Animations)"), i18n("Only for Shown Windows"), i18n("Never")]
currentIndex: compositing.windowThumbnail
Layout.fillWidth: true
anchors {
top: windowThumbnailText.bottom
left: col.right
right: parent.right
}
onCurrentIndexChanged: apply.enabled = true;
}
Label {
id: scaleFilterText
text: i18n("Scale Method:")
anchors {
top: windowThumbnail.bottom
horizontalCenter: windowManagement.horizontalCenter
topMargin: 20
}
}
ComboBox {
id: glScaleFilter
model: [i18n("Crisp"), i18n("Smooth"), i18n("Accurate")]
visible: openGLType.currentIndex != 3
currentIndex: compositing.glScaleFilter
anchors {
top: scaleFilterText.bottom
left: col.right
}
onCurrentIndexChanged: apply.enabled = true;
}
ComboBox {
id: xrScaleFilter
model: [i18n("Crisp"), i18n("Smooth (slower)")]
visible: openGLType.currentIndex == 3
currentIndex: compositing.xrScaleFilter ? 1 : 0
anchors {
top: scaleFilterText.bottom
left: glScaleFilter.visible ? glScaleFilter.right : col.right
right: parent.right
}
onCurrentIndexChanged: apply.enabled = true;
}
CheckBox {
id: unredirectFullScreen
text: i18n("Suspend desktop effects for \nfull screen windows")
checked: compositing.unredirectFullscreen
anchors.left: col.right
anchors.top: xrScaleFilter.bottom
onClicked: apply.enabled = true
}
2013-09-12 11:42:18 +00:00
Label {
id: glSwapStrategyText
text: i18n("Tearing Prevention (VSync):")
anchors {
top: unredirectFullScreen.bottom
horizontalCenter: windowManagement.horizontalCenter
topMargin: 20
}
}
ComboBox {
id: glSwapStrategy
model: [i18n("Never"), i18n("Automatic"), i18n("Only when cheap"), i18n("Full screen repaints"), i18n("Re-use screen content")]
currentIndex: compositing.glSwapStrategy
anchors {
top: glSwapStrategyText.bottom
left: col.right
right: parent.right
}
onCurrentIndexChanged: apply.enabled = true;
}
2013-09-12 11:55:25 +00:00
CheckBox {
id: glColorCorrection
text: i18n("Enable color correction (experimental)")
checked: compositing.glColorCorrection
enabled: openGLType.currentIndex != 3 && openGLType.currentIndex != 4
anchors {
top: glSwapStrategy.bottom
left: col.right
}
onClicked: apply.enabled = true
}
ColumnLayout {
id: col
height: parent.height
2013-08-29 09:32:38 +00:00
Layout.minimumWidth: parent.width - windowManagement.width
2013-08-17 08:28:09 +00:00
anchors {
top: parent.top
2013-08-17 08:28:09 +00:00
left: parent.left
}
2013-09-10 08:47:16 +00:00
Label {
id: hint
text: i18n("Hint: To find out or configure how to activate an effect, look at the effect's settings.")
anchors {
top: parent.top
left: parent.left
}
}
2013-09-10 07:54:46 +00:00
PlasmaComponents.TextField {
id: searchField
2013-09-10 07:54:46 +00:00
clearButtonShown: true
2013-08-17 08:28:09 +00:00
Layout.fillWidth: true
height: 20
anchors {
2013-09-10 08:47:16 +00:00
top: hint.bottom
2013-08-17 08:28:09 +00:00
}
focus: true
}
2013-08-17 08:28:09 +00:00
EffectFilterModel {
id: searchModel
filter: searchField.text
signal effectState(int rowIndex, bool enabled)
onEffectState: {
searchModel.updateEffectStatus(rowIndex, enabled);
}
2013-08-17 08:28:09 +00:00
}
ScrollView {
id: scroll
highlightOnFocus: true
Layout.fillWidth: true
Layout.fillHeight: true
anchors {
top: searchField.bottom
left: parent.left
bottom: apply.top
}
ListView {
id: effectView
Layout.fillWidth: true
anchors.fill: parent
model: searchModel
delegate: Effect{}
section.property: "CategoryRole"
section.delegate: sectionHeading
}
2013-08-17 08:28:09 +00:00
}
ExclusiveGroup {
id: desktopSwitching
//Our ExclusiveGroup must me outside of the
//ListView, otherwise it will not work
2013-08-17 08:28:09 +00:00
}
Button {
id: apply
2013-09-10 08:41:42 +00:00
text: i18n("Apply")
enabled: false
anchors {
bottom: parent.bottom
}
onClicked: {
searchModel.syncConfig();
apply.enabled = false;
2013-09-12 11:55:25 +00:00
compositingType.syncConfig(openGLType.currentIndex, animationSpeed.value, windowThumbnail.currentIndex, glScaleFilter.currentIndex, xrScaleFilter.currentIndex == 1,
unredirectFullScreen.checked, glSwapStrategy.currentIndex, glColorCorrection.checked);
}
}
}//End ColumnLayout
}//End RowLayout
}//End item