2013-06-25 14:26:54 +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/>. *
|
|
|
|
**************************************************************************/
|
2013-06-25 14:07:48 +00:00
|
|
|
|
|
|
|
import QtQuick 2.1
|
|
|
|
import QtQuick.Controls 1.0
|
|
|
|
import QtQuick.Layouts 1.0
|
|
|
|
import org.kde.kwin.kwincompositing 1.0
|
|
|
|
|
2013-08-17 08:28:09 +00:00
|
|
|
|
2013-09-13 12:29:53 +00:00
|
|
|
Rectangle {
|
2013-06-25 14:07:48 +00:00
|
|
|
id: window
|
2014-03-26 11:06:01 +00:00
|
|
|
implicitWidth: openGLBrokeState ? glError.implicitWidth : view.implicitWidth
|
|
|
|
implicitHeight: openGLBrokeState ? glError.implicitHeight : view.implicitHeight
|
2013-09-13 12:29:53 +00:00
|
|
|
color: engine.backgroundViewColor()
|
2013-08-17 08:28:09 +00:00
|
|
|
property bool openGLBrokeState: true
|
2013-12-02 10:22:57 +00:00
|
|
|
signal changed
|
2013-06-25 14:07:48 +00:00
|
|
|
|
2014-03-07 09:09:47 +00:00
|
|
|
OpenGLErrorView {
|
2014-03-26 11:06:01 +00:00
|
|
|
id: glError
|
2014-03-07 09:09:47 +00:00
|
|
|
visible: window.openGLBrokeState
|
2013-08-17 08:28:09 +00:00
|
|
|
anchors.fill: parent
|
2014-03-07 09:09:47 +00:00
|
|
|
onActivated: window.openGLBrokeState = compositing.OpenGLIsBroken();
|
2013-08-17 08:28:09 +00:00
|
|
|
}
|
2013-06-25 14:07:48 +00:00
|
|
|
|
2013-08-17 08:28:09 +00:00
|
|
|
EffectView{
|
|
|
|
id: view
|
|
|
|
anchors.fill: parent
|
2014-03-07 09:09:47 +00:00
|
|
|
visible: !window.openGLBrokeState
|
2013-12-02 10:22:57 +00:00
|
|
|
onChanged: {
|
|
|
|
window.changed()
|
|
|
|
}
|
2013-08-17 08:28:09 +00:00
|
|
|
}
|
2013-06-25 14:07:48 +00:00
|
|
|
|
2013-08-17 08:28:09 +00:00
|
|
|
Compositing {
|
|
|
|
id: compositing
|
2013-12-02 12:25:28 +00:00
|
|
|
}
|
|
|
|
Connections {
|
|
|
|
target: compositing
|
|
|
|
onChanged: window.changed()
|
2013-08-17 08:28:09 +00:00
|
|
|
}
|
2013-08-02 13:21:33 +00:00
|
|
|
|
2013-08-17 08:28:09 +00:00
|
|
|
Component.onCompleted: {
|
2014-03-07 09:09:47 +00:00
|
|
|
openGLBrokeState = compositing.OpenGLIsUnsafe()
|
2013-12-02 12:25:28 +00:00
|
|
|
compositing.reset();
|
2013-06-25 14:07:48 +00:00
|
|
|
}
|
|
|
|
}
|