2014-03-07 09:09:47 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* KWin - the KDE window manager *
|
|
|
|
* This file is part of the KDE project. *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2013 Antonis Tsiapaliokas <kok3rs@gmail.com> *
|
|
|
|
* Copyright (C) 2014 Martin Gräßlin <mgraesslin@kde.org> *
|
|
|
|
* *
|
|
|
|
* 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
|
|
|
|
|
|
|
|
Item {
|
|
|
|
signal changed
|
|
|
|
property alias animationSpeedValue: animationSpeed.value
|
|
|
|
property alias windowThumbnailIndex: windowThumbnail.currentIndex
|
|
|
|
property alias glScaleFilterIndex: glScaleFilter.currentIndex
|
|
|
|
property bool xrScaleFilterChecked: xrScaleFilter.currentIndex > 0
|
|
|
|
property alias unredirectFullScreenChecked: unredirectFullScreen.checked
|
|
|
|
property alias glSwapStrategyIndex: glSwapStrategy.currentIndex
|
|
|
|
property alias glColorCorrectionChecked: glColorCorrection.checked
|
2014-03-10 08:37:17 +00:00
|
|
|
property alias compositingTypeIndex: backend.type
|
2014-03-07 09:09:47 +00:00
|
|
|
property bool compositingEnabledChecked: useCompositing.checked
|
2014-04-23 06:21:35 +00:00
|
|
|
property alias openGLPlatformInterfaceIndex: openGLPlatformInterface.currentIndex
|
2014-03-07 09:09:47 +00:00
|
|
|
|
2014-03-26 11:06:01 +00:00
|
|
|
implicitWidth: mainLayout.implicitWidth
|
|
|
|
implicitHeight: mainLayout.implicitHeight
|
|
|
|
|
2014-03-07 09:09:47 +00:00
|
|
|
CompositingType {
|
|
|
|
id: compositingType
|
|
|
|
}
|
|
|
|
|
|
|
|
GridLayout {
|
2014-03-26 11:06:01 +00:00
|
|
|
id: mainLayout
|
2014-03-07 09:09:47 +00:00
|
|
|
columns: 2
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
CheckBox {
|
|
|
|
id: useCompositing
|
|
|
|
checked: compositing.compositingEnabled
|
|
|
|
text: i18n("Enable compositor on startup")
|
|
|
|
Connections {
|
|
|
|
target: compositing
|
|
|
|
onCompositingEnabledChanged: {
|
|
|
|
useCompositing.checked = compositing.compositingEnabled
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: animationText
|
|
|
|
text: i18n("Animation Speed:")
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
|
|
|
|
|
|
Slider {
|
|
|
|
id: animationSpeed
|
|
|
|
maximumValue: 6.0
|
|
|
|
stepSize: 1.0
|
|
|
|
tickmarksEnabled: true
|
|
|
|
value: compositing.animationSpeed
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
text: i18n("Rendering backend:")
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
|
|
ComboBox {
|
2014-03-10 08:37:17 +00:00
|
|
|
id: backend
|
2014-03-07 09:09:47 +00:00
|
|
|
property int type: 0
|
|
|
|
model: compositingType
|
|
|
|
textRole: "NameRole"
|
|
|
|
onCurrentIndexChanged: {
|
|
|
|
type = compositingType.compositingTypeForIndex(currentIndex);
|
|
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
|
|
type = compositingType.compositingTypeForIndex(currentIndex);
|
|
|
|
}
|
|
|
|
Connections {
|
|
|
|
target: compositing
|
|
|
|
onCompositingTypeChanged: {
|
2014-03-10 08:37:17 +00:00
|
|
|
backend.currentIndex = compositingType.indexForCompositingType(compositing.compositingType)
|
2014-03-07 09:09:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: scaleFilterText
|
|
|
|
text: i18n("Scale Method:")
|
|
|
|
visible: glScaleFilter.visible
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
|
|
|
|
|
|
ComboBox {
|
|
|
|
id: glScaleFilter
|
|
|
|
model: [i18n("Crisp"), i18n("Smooth"), i18n("Accurate")]
|
2014-03-10 08:37:17 +00:00
|
|
|
visible: backend.type != CompositingType.XRENDER_INDEX
|
2014-03-07 09:09:47 +00:00
|
|
|
currentIndex: compositing.glScaleFilter
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
text: i18n("Scale Method:")
|
|
|
|
visible: xrScaleFilter.visible
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
|
|
|
|
|
|
ComboBox {
|
|
|
|
id: xrScaleFilter
|
|
|
|
model: [i18n("Crisp"), i18n("Smooth (slower)")]
|
2014-03-10 08:37:17 +00:00
|
|
|
visible: backend.type == CompositingType.XRENDER_INDEX
|
2014-03-07 09:09:47 +00:00
|
|
|
currentIndex: compositing.xrScaleFilter ? 1 : 0
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: glSwapStrategyText
|
|
|
|
text: i18n("Tearing Prevention (VSync):")
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
|
|
|
|
|
|
ComboBox {
|
|
|
|
id: glSwapStrategy
|
|
|
|
model: [i18n("Never"), i18n("Automatic"), i18n("Only when cheap"), i18n("Full screen repaints"), i18n("Re-use screen content")]
|
|
|
|
currentIndex: compositing.glSwapStrategy
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: windowThumbnailText
|
|
|
|
text: i18n("Keep Window Thumbnails:")
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
|
|
|
|
|
|
ComboBox {
|
|
|
|
id: windowThumbnail
|
|
|
|
model: [i18n("Always (Breaks Animations)"), i18n("Only for Shown Windows"), i18n("Never")]
|
|
|
|
currentIndex: compositing.windowThumbnail
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
2014-04-23 06:21:35 +00:00
|
|
|
Label {
|
|
|
|
text: i18n("OpenGL Platform Interface:")
|
|
|
|
visible: backend.type != CompositingType.XRENDER_INDEX
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
|
|
|
|
|
|
ComboBox {
|
|
|
|
id: openGLPlatformInterface
|
|
|
|
model: compositing.openGLPlatformInterfaceModel
|
|
|
|
currentIndex: compositing.openGLPlatformInterface
|
|
|
|
textRole: "display"
|
|
|
|
visible: backend.type != CompositingType.XRENDER_INDEX
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
|
|
|
2014-03-07 09:09:47 +00:00
|
|
|
Label {
|
|
|
|
text: i18n("Expert:")
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
|
|
|
|
|
|
CheckBox {
|
|
|
|
id: unredirectFullScreen
|
|
|
|
checked: compositing.unredirectFullscreen
|
|
|
|
text: i18n("Suspend compositor for full screen windows")
|
|
|
|
Connections {
|
|
|
|
target: compositing
|
|
|
|
onUnredirectFullscreenChanged: {
|
|
|
|
unredirectFullScreen.checked = compositing.unredirectFullscreen
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
text: i18n("Experimental:")
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
|
|
|
|
|
|
CheckBox {
|
|
|
|
id: glColorCorrection
|
|
|
|
checked: compositing.glColorCorrection
|
2014-03-10 08:37:17 +00:00
|
|
|
enabled: backend.type == CompositingType.OPENGL31_INDEX || backend.type == CompositingType.OPENGL20_INDEX
|
2014-03-07 09:09:47 +00:00
|
|
|
text: i18n("Enable color correction")
|
|
|
|
Connections {
|
|
|
|
target: compositing
|
|
|
|
onGlColorCorrectionChanged: {
|
|
|
|
glColorCorrection.checked = compositing.glColorCorrection
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
// spacer
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Connections {
|
2014-03-10 08:37:17 +00:00
|
|
|
target: backend
|
2014-03-07 09:09:47 +00:00
|
|
|
onCurrentIndexChanged: changed()
|
|
|
|
}
|
|
|
|
}//End item
|