1
0
mirror of https://github.com/Swordfish90/cool-retro-term.git synced 2024-10-06 11:00:49 +01:00
cool-retro-term/app/frames/BlackRoughFrame.qml
2014-04-18 11:14:47 +02:00

30 lines
778 B
QML

import QtQuick 2.2
import "utils"
TerminalFrame{
id: frame
z: 2.1
anchors.fill: parent
addedWidth: 200
addedHeight: 370
borderLeft: 148
borderRight: 148
borderTop: 232
borderBottom: 232
imageSource: "../images/black-frame.png"
normalsSource: "../images/black-frame-normals.png"
sourceRect: Qt.rect(-20 * shadersettings.total_scaling,
-20 * shadersettings.total_scaling,
terminal.width + 40 * shadersettings.total_scaling,
terminal.height + 40 * shadersettings.total_scaling)
distortionCoefficient: 1.9
displacementLeft: 70.0
displacementTop: 55.0
displacementRight: 50.0
displacementBottom: 38.0
shaderString: "FrameShader.qml"
}