81 lines
2.6 KiB
QML
81 lines
2.6 KiB
QML
/*******************************************************************************
|
|
* Copyright (c) 2013-2021 "Filippo Scognamiglio"
|
|
* https://github.com/Swordfish90/cool-retro-term
|
|
*
|
|
* This file is part of cool-retro-term.
|
|
*
|
|
* cool-retro-term 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 3 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.2
|
|
import QtGraphicalEffects 1.0
|
|
|
|
import "utils.js" as Utils
|
|
|
|
ShaderTerminal {
|
|
property alias title: terminal.title
|
|
property alias terminalSize: terminal.terminalSize
|
|
|
|
property real devicePixelRatio: terminalWindow.screen.devicePixelRatio
|
|
|
|
id: mainShader
|
|
opacity: appSettings.windowOpacity * 0.3 + 0.7
|
|
|
|
source: terminal.mainSource
|
|
burnInEffect: terminal.burnInEffect
|
|
virtualResolution: terminal.virtualResolution
|
|
screenResolution: Qt.size(
|
|
terminalWindow.width * devicePixelRatio * appSettings.windowScaling,
|
|
terminalWindow.height * devicePixelRatio * appSettings.windowScaling
|
|
)
|
|
|
|
TimeManager {
|
|
id: timeManager
|
|
enableTimer: terminalWindow.visible
|
|
}
|
|
|
|
PreprocessedTerminal {
|
|
id: terminal
|
|
anchors.fill: parent
|
|
}
|
|
|
|
// EFFECTS ////////////////////////////////////////////////////////////////
|
|
Loader {
|
|
id: bloomEffectLoader
|
|
active: appSettings.bloom
|
|
asynchronous: true
|
|
width: parent.width * appSettings.bloomQuality
|
|
height: parent.height * appSettings.bloomQuality
|
|
|
|
sourceComponent: FastBlur {
|
|
radius: Utils.lint(16, 64, appSettings.bloomQuality)
|
|
source: terminal.mainSource
|
|
transparentBorder: true
|
|
}
|
|
}
|
|
Loader {
|
|
id: bloomSourceLoader
|
|
active: appSettings.bloom !== 0
|
|
asynchronous: true
|
|
sourceComponent: ShaderEffectSource {
|
|
id: _bloomEffectSource
|
|
sourceItem: bloomEffectLoader.item
|
|
hideSource: true
|
|
smooth: true
|
|
visible: false
|
|
}
|
|
}
|
|
|
|
bloomSource: bloomSourceLoader.item
|
|
}
|