mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 20:57:09 +02:00
36 lines
628 B
QML
36 lines
628 B
QML
import QtQuick 2.5
|
|
|
|
import "."
|
|
import "../controls"
|
|
|
|
Frame {
|
|
id: frame
|
|
|
|
Item {
|
|
anchors.fill: parent
|
|
|
|
Rectangle {
|
|
id: background
|
|
anchors.fill: parent
|
|
anchors.margins: -4096
|
|
visible: window.visible
|
|
color: "#7f7f7f7f";
|
|
radius: 3;
|
|
}
|
|
|
|
Text {
|
|
y: -implicitHeight - iconSize / 2
|
|
text: window.title
|
|
elide: Text.ElideRight
|
|
font.bold: true
|
|
color: window.focus ? "white" : "gray"
|
|
style: Text.Outline;
|
|
styleColor: "black"
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|