qmlFrontend/qml/qmlFrontend/HWComboBox.qml
author unc0rr
Sat, 22 Nov 2014 00:55:01 +0300
branchqmlfrontend
changeset 10519 af019fa70080
child 10608 b85759f2ba18
permissions -rw-r--r--
Attempt on a custom combobox
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10519
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
     1
import QtQuick 2.0
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
     2
import QtQuick.Window 2.1
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
     3
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
     4
HWButton {
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
     5
    property alias model: itemsList.model
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
     6
    property alias delegate: itemsList.delegate
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
     7
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
     8
    Window {
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
     9
        id: selection
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    10
        visibility: Window.Hidden
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    11
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    12
        ListView {
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    13
            id: itemsList
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    14
            x: 0
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    15
            y: 64
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    16
            anchors.fill: parent
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    17
            highlight: Rectangle { color: "#eaea00"; radius: 4 }
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    18
            focus: true
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    19
        }
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    20
    }
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    21
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    22
    onClicked: selection.visibility = Window.Windowed
af019fa70080 Attempt on a custom combobox
unc0rr
parents:
diff changeset
    23
}