Commit c6d52bd5 authored by Jens Bache-Wiig's avatar Jens Bache-Wiig
Browse files

Remove ChoiceList

It is completely redundant with ComboBox
parent 01bab53d
6.2 5.10 5.11 5.12 5.12.1 5.12.10 5.12.11 5.12.12 5.12.2 5.12.3 5.12.4 5.12.5 5.12.6 5.12.7 5.12.8 5.12.9 5.13 5.13.0 5.13.1 5.13.2 5.14 5.14.0 5.14.1 5.14.2 5.15 5.15.0 5.15.1 5.15.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9 5.9.8 dev old/5.1 old/5.2 old/qt4 wip/calendar wip/qt5-nativetext wip/tizen v5.15.0-alpha1 v5.14.1 v5.14.0 v5.14.0-rc2 v5.14.0-rc1 v5.14.0-beta3 v5.14.0-beta2 v5.14.0-beta1 v5.14.0-alpha1 v5.13.2 v5.13.1 v5.13.0 v5.13.0-rc3 v5.13.0-rc2 v5.13.0-rc1 v5.13.0-beta4 v5.13.0-beta3 v5.13.0-beta2 v5.13.0-beta1 v5.13.0-alpha1 v5.12.7 v5.12.6 v5.12.5 v5.12.4 v5.12.3 v5.12.2 v5.12.1 v5.12.0 v5.12.0-rc2 v5.12.0-rc1 v5.12.0-beta4 v5.12.0-beta3 v5.12.0-beta2 v5.12.0-beta1 v5.12.0-alpha1 v5.11.3 v5.11.2 v5.11.1 v5.11.0 v5.11.0-rc2 v5.11.0-rc1 v5.11.0-beta4 v5.11.0-beta3 v5.11.0-beta2 v5.11.0-beta1 v5.11.0-alpha1 v5.10.1 v5.10.0 v5.10.0-rc3 v5.10.0-rc2 v5.10.0-rc1 v5.10.0-beta4 v5.10.0-beta3 v5.10.0-beta2 v5.10.0-beta1 v5.10.0-alpha1 v5.9.9 v5.9.8 v5.9.7 v5.9.6 v5.9.5 v5.9.4 v5.9.3 v5.9.2 v5.9.1 v5.9.0 v5.9.0-rc2 v5.9.0-rc1 v5.9.0-beta4 v5.9.0-beta3 v5.9.0-beta2 v5.9.0-beta1 v5.9.0-alpha1 v5.8.0 v5.8.0-rc1 v5.8.0-beta1 v5.8.0-alpha1 v5.7.1 v5.7.0 v5.7.0-rc1 v5.7.0-beta1 v5.7.0-alpha1 v5.6.3 v5.6.2 v5.6.1 v5.6.1-1 v5.6.0 v5.6.0-rc1 v5.6.0-beta1 v5.6.0-alpha1 v5.5.1 v5.5.0 v5.5.0-rc1 v5.5.0-beta1 v5.5.0-alpha1 v5.4.2 v5.4.1 v5.4.0 v5.4.0-rc1 v5.4.0-beta1 v5.4.0-alpha1 v5.3.2 v5.3.1 v5.3.0 v5.3.0-rc1 v5.3.0-beta1 v5.3.0-alpha1 v5.2.1 v5.2.0 v5.2.0-rc1 v5.2.0-beta1 v5.2.0-alpha1 v5.1.1 v5.1.0 v5.1.0-rc2 v5.1.0-rc1 v5.1.0-beta1 v5.1.0-alpha1
No related merge requests found
Showing with 2 additions and 116 deletions
import QtQuick 1.1
import "custom" as Components
Components.ChoiceList {
id: choicelist
property int buttonHeight: backgroundItem.sizeFromContents(100, 18).height
property int buttonWidth: backgroundItem.sizeFromContents(100, 18).width
property string styleHint
implicitWidth: buttonHeight
implicitHeight: buttonWidth
topMargin: 4
bottomMargin: 4
background: StyleItem {
anchors.fill: parent
elementType: "combobox"
sunken: pressed
raised: !pressed
hover: containsMouse
enabled: choicelist.enabled
text: currentItemText
hasFocus: choicelist.focus
hint: choicelist.styleHint
}
listItem: Item {
id:item
height: 22
anchors.left: parent.left
width: choicelist.width
StyleItem {
anchors.fill: parent
elementType: "comboboxitem"
text: itemText
selected: highlighted
}
}
popupFrame: StyleItem {
property string popupLocation: backgroundItem.styleHint("comboboxpopup") ? "center" : "below"
property int fw: backgroundItem.pixelMetric("menupanelwidth");
anchors.leftMargin: backgroundItem.pixelMetric("menuhmargin") + fw
anchors.rightMargin: backgroundItem.pixelMetric("menuhmargin") + fw
anchors.topMargin: backgroundItem.pixelMetric("menuvmargin") + fw
anchors.bottomMargin: backgroundItem.pixelMetric("menuvmargin") + fw
elementType: "menu"
effect: DropShadow {
blurRadius: 18
color: "#90000000"
xOffset: 1
yOffset: 1
}
}
}
...@@ -34,7 +34,6 @@ QML_FILES = \ ...@@ -34,7 +34,6 @@ QML_FILES = \
SpinBox.qml \ SpinBox.qml \
TabFrame.qml \ TabFrame.qml \
TextArea.qml \ TextArea.qml \
ChoiceList.qml \
ScrollArea.qml \ ScrollArea.qml \
SplitterRow.qml \ SplitterRow.qml \
SplitterColumn.qml \ SplitterColumn.qml \
......
import QtQuick 1.1
import "./private" as Private
Item {
id: choiceList
property alias model: popup.model
property alias currentIndex: popup.currentIndex
property alias currentText: popup.currentText
property alias popupOpen: popup.popupOpen
property alias containsMouse: popup.containsMouse
property alias pressed: popup.buttonPressed
property Component background: null
property Item backgroundItem: backgroundLoader.item
property Component listItem: null
property Component popupFrame: null
property int leftMargin: 0
property int topMargin: 0
property int rightMargin: 0
property int bottomMargin: 0
property string popupBehavior
width: 0
height: 0
property bool activeFocusOnPress: true
Loader {
id: backgroundLoader
property alias styledItem: choiceList
sourceComponent: background
anchors.fill: parent
property string currentItemText: model.get(currentIndex).text
}
Private.ChoiceListPopup {
// NB: This ChoiceListPopup is also the mouse area
// for the component (to enable drag'n'release)
id: popup
listItem: choiceList.listItem
popupFrame: choiceList.popupFrame
}
Keys.onSpacePressed: { choiceList.popupOpen = !choiceList.popupOpen }
Keys.onUpPressed: { if (currentIndex < model.count - 1) currentIndex++ }
Keys.onDownPressed: {if (currentIndex > 0) currentIndex-- }
}
...@@ -17,7 +17,6 @@ QML_FILES = \ ...@@ -17,7 +17,6 @@ QML_FILES = \
ButtonGroup.js \ ButtonGroup.js \
Button.qml \ Button.qml \
CheckBox.qml \ CheckBox.qml \
ChoiceList.qml \
Splitter.qml \ Splitter.qml \
ProgressBar.qml \ ProgressBar.qml \
RadioButton.qml \ RadioButton.qml \
......
...@@ -6,7 +6,6 @@ Button 1.0 Button.qml ...@@ -6,7 +6,6 @@ Button 1.0 Button.qml
ButtonColumn 1.0 ButtonColumn.qml ButtonColumn 1.0 ButtonColumn.qml
ButtonRow 1.0 ButtonRow.qml ButtonRow 1.0 ButtonRow.qml
CheckBox 1.0 CheckBox.qml CheckBox 1.0 CheckBox.qml
ChoiceList 1.0 ChoiceList.qml
ProgressBar 1.0 ProgressBar.qml ProgressBar 1.0 ProgressBar.qml
Slider 1.0 Slider.qml Slider 1.0 Slider.qml
SpinBox 1.0 SpinBox.qml SpinBox 1.0 SpinBox.qml
......
...@@ -10,7 +10,6 @@ Tab 0.1 Tab.qml ...@@ -10,7 +10,6 @@ Tab 0.1 Tab.qml
Frame 0.1 Frame.qml Frame 0.1 Frame.qml
ScrollArea 0.1 ScrollArea.qml ScrollArea 0.1 ScrollArea.qml
ScrollBar 0.1 ScrollBar.qml ScrollBar 0.1 ScrollBar.qml
ChoiceList 0.1 ChoiceList.qml
ComboBox 0.1 ComboBox.qml ComboBox 0.1 ComboBox.qml
ToolButton 0.1 ToolButton.qml ToolButton 0.1 ToolButton.qml
TextArea 0.1 TextArea.qml TextArea 0.1 TextArea.qml
......
...@@ -17,7 +17,7 @@ Rectangle { ...@@ -17,7 +17,7 @@ Rectangle {
onPressed: editmenu.show(mouseX, mouseY) onPressed: editmenu.show(mouseX, mouseY)
} }
ChoiceList { ComboBox {
id: delegateChooser id: delegateChooser
enabled: frame.current == 4 ? 1 : 0 enabled: frame.current == 4 ? 1 : 0
model: delegatemenu model: delegatemenu
...@@ -117,7 +117,7 @@ Rectangle { ...@@ -117,7 +117,7 @@ Rectangle {
title: "DirModel" title: "DirModel"
TableView { TableView {
model: FileSystemModel{} // model: FileSystemModel{}
anchors.fill: parent anchors.fill: parent
anchors.margins: 12 anchors.margins: 12
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment