aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/codemodel/importscheck/007_compositeQmlCopyAndCppAndQml/QtQuick/Controls/Styles/Desktop/StatusBarStyle.qml
blob: e62dedc62288d62bf6b97523cf96f4a7afd40421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick 2.1
import QtQuick.Controls 1.1
import QtQuick.Controls.Private 1.0

/*!
    \qmltype StatusBarStyle
    \internal
    \inqmlmodule QtQuick.Controls.Styles
*/
Style {

    padding.left: 4
    padding.right: 4
    padding.top: 3
    padding.bottom: 2

    property Component panel: StyleItem {
        implicitHeight: 16
        implicitWidth: 200
        anchors.fill: parent
        elementType: "statusbar"
        textureWidth: 64
        border {left: 16 ; right: 16}
    }
}