mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-02-07 13:41:27 +00:00
20 lines
448 B
QML
20 lines
448 B
QML
import QtQuick 2.0
|
|
import "utils"
|
|
|
|
TerminalFrame{
|
|
id: frame
|
|
z: 2.1
|
|
anchors.fill: parent
|
|
addedWidth: 140
|
|
addedHeight: 140
|
|
borderLeft: 116
|
|
borderRight: 116
|
|
borderTop: 116
|
|
borderBottom: 116
|
|
imageSource: "../images/screen-frame.png"
|
|
normalsSource: "../images/screen-frame-normals.png"
|
|
sourceRect: Qt.rect(-65, -75, terminal.width + 130, terminal.height + 150)
|
|
|
|
shaderString: "WhiteFrameShader.qml"
|
|
}
|