mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-04 10:10:17 +02:00
47 lines
1.2 KiB
QML
47 lines
1.2 KiB
QML
//
|
|
// DefaultFrame.qml
|
|
//
|
|
// Created by Bradley Austin Davis on 12 Jan 2016
|
|
// Copyright 2016 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
import QtQuick 2.5
|
|
import QtGraphicalEffects 1.0
|
|
|
|
import "."
|
|
import "../styles-uit"
|
|
|
|
Rectangle {
|
|
HifiConstants { id: hifi }
|
|
|
|
property int frameMargin: 9
|
|
property int frameMarginLeft: frameMargin
|
|
property int frameMarginRight: frameMargin
|
|
property int frameMarginTop: 2 * frameMargin + iconSize
|
|
property int frameMarginBottom: iconSize + 11
|
|
|
|
anchors {
|
|
topMargin: -frameMarginTop
|
|
leftMargin: -frameMarginLeft
|
|
rightMargin: -frameMarginRight
|
|
bottomMargin: -frameMarginBottom
|
|
}
|
|
anchors.fill: parent
|
|
color: hifi.colors.baseGrayHighlight40
|
|
border {
|
|
width: hifi.dimensions.borderWidth
|
|
color: hifi.colors.faintGray50
|
|
}
|
|
radius: hifi.dimensions.borderRadius
|
|
|
|
// Enable dragging of the window,
|
|
// detect mouseover of the window (including decoration)
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
drag.target: window
|
|
}
|
|
}
|
|
|