Qt 从 5.12 版本开始,推出了 Qt Quick Control 2 组件包,相较于 版本1 提高了效率和易用性,现在通过 configure -skip qtquickcontrols 命令跳过 版本1 重编Qt,进而看一下 版本1 到底有哪些内容。
全量编译时 qml/QtQuick 目录下的内容:
.
├── a.txt
├── Controls
│ ├── ApplicationWindow.qml
│ ├── BusyIndicator.qml
│ ├── Button.qml
│ ├── Calendar.qml
│ ├── CheckBox.qml
│ ├── ComboBox.qml
│ ├── GroupBox.qml
│ ├── Label.qml
│ ├── libqtquickcontrolsplugin.so
│ ├── MenuBar.qml
│ ├── Menu.qml
│ ├── plugins.qmltypes
│ ├── Private
│ │ ├── AbstractCheckable.qml
│ │ ├── BasicButton.qml
│ │ ├── BasicTableView.qml
│ │ ├── CalendarHeaderModel.qml
│ │ ├── CalendarUtils.js
│ │ ├── ColumnMenuContent.qml
│ │ ├── ContentItem.qml
│ │ ├── Control.qml
│ │ ├── EditMenu_base.qml
│ │ ├── EditMenu.qml
│ │ ├── FastGlow.qml
│ │ ├── FocusFrame.qml
│ │ ├── HoverButton.qml
│ │ ├── MenuContentItem.qml
│ │ ├── MenuContentScroller.qml
│ │ ├── MenuItemSubControls.qml
│ │ ├── ModalPopupBehavior.qml
│ │ ├── qmldir
│ │ ├── ScrollBar.qml
│ │ ├── ScrollViewHelper.qml
│ │ ├── SourceProxy.qml
│ │ ├── StackView.js
│ │ ├── StackViewSlideDelegate.qml
│ │ ├── style.js
│ │ ├── Style.qml
│ │ ├── SystemPaletteSingleton.qml
│ │ ├── TabBar.qml
│ │ ├── TableViewItemDelegateLoader.qml
│ │ ├── TableViewSelection.qml
│ │ ├── TextHandle.qml
│ │ ├── TextInputWithHandles.qml
│ │ ├── TextSingleton.qml
│ │ ├── ToolMenuButton.qml
│ │ └── TreeViewItemDelegateLoader.qml
│ ├── ProgressBar.qml
│ ├── qmldir
│ ├── RadioButton.qml
│ ├── ScrollView.qml
│ ├── Slider.qml
│ ├── SpinBox.qml
│ ├── SplitView.qml
│ ├── StackViewDelegate.qml
│ ├── StackView.qml
│ ├── StackViewTransition.qml
│ ├── StatusBar.qml
│ ├── Styles
│ │ ├── Base
│ │ │ ├── ApplicationWindowStyle.qml
│ │ │ ├── BasicTableViewStyle.qml
│ │ │ ├── BusyIndicatorStyle.qml
│ │ │ ├── ButtonStyle.qml
│ │ │ ├── CalendarStyle.qml
│ │ │ ├── CheckBoxStyle.qml
│ │ │ ├── CircularButtonStyle.qml
│ │ │ ├── CircularGaugeStyle.qml
│ │ │ ├── CircularTickmarkLabelStyle.qml
│ │ │ ├── ComboBoxStyle.qml
│ │ │ ├── CommonStyleHelper.qml
│ │ │ ├── DelayButtonStyle.qml
│ │ │ ├── DialStyle.qml
│ │ │ ├── FocusFrameStyle.qml
│ │ │ ├── GaugeStyle.qml
│ │ │ ├── GroupBoxStyle.qml
│ │ │ ├── HandleStyleHelper.qml
│ │ │ ├── HandleStyle.qml
│ │ │ ├── images
│ │ │ │ ├── arrow-down@2x.png
│ │ │ │ ├── arrow-down.png
│ │ │ │ ├── arrow-left@2x.png
│ │ │ │ ├── arrow-left.png
│ │ │ │ ├── arrow-right@2x.png
│ │ │ │ ├── arrow-right.png
│ │ │ │ ├── arrow-up@2x.png
│ │ │ │ ├── arrow-up.png
│ │ │ │ ├── button_down.png
│ │ │ │ ├── button.png
│ │ │ │ ├── check@2x.png
│ │ │ │ ├── check.png
│ │ │ │ ├── editbox.png
│ │ │ │ ├── focusframe.png
│ │ │ │ ├── groupbox.png
│ │ │ │ ├── header.png
│ │ │ │ ├── knob.png
│ │ │ │ ├── leftanglearrow.png
│ │ │ │ ├── needle.png
│ │ │ │ ├── progress-indeterminate.png
│ │ │ │ ├── rightanglearrow.png
│ │ │ │ ├── scrollbar-handle-horizontal.png
│ │ │ │ ├── scrollbar-handle-transient.png
│ │ │ │ ├── scrollbar-handle-vertical.png
│ │ │ │ ├── slider-groove.png
│ │ │ │ ├── slider-handle.png
│ │ │ │ ├── spinner_large.png
│ │ │ │ ├── spinner_medium.png
│ │ │ │ ├── spinner_small.png
│ │ │ │ ├── tab.png
│ │ │ │ └── tab_selected.png
│ │ │ ├── MenuBarStyle.qml
│ │ │ ├── MenuStyle.qml
│ │ │ ├── PieMenuStyle.qml
│ │ │ ├── ProgressBarStyle.qml
│ │ │ ├── RadioButtonStyle.qml
│ │ │ ├── ScrollViewStyle.qml
│ │ │ ├── SliderStyle.qml
│ │ │ ├── SpinBoxStyle.qml
│ │ │ ├── StatusBarStyle.qml
│ │ │ ├── StatusIndicatorStyle.qml
│ │ │ ├── SwitchStyle.qml
│ │ │ ├── TableViewStyle.qml
│ │ │ ├── TabViewStyle.qml
│ │ │ ├── TextAreaStyle.qml
│ │ │ ├── TextFieldStyle.qml
│ │ │ ├── ToggleButtonStyle.qml
│ │ │ ├── ToolBarStyle.qml
│ │ │ ├── ToolButtonStyle.qml
│ │ │ ├── TreeViewStyle.qml
│ │ │ └── TumblerStyle.qml
│ │ ├── Desktop
│ │ │ ├── ApplicationWindowStyle.qml
│ │ │ ├── BusyIndicatorStyle.qml
│ │ │ ├── ButtonStyle.qml
│ │ │ ├── CalendarStyle.qml
│ │ │ ├── CheckBoxStyle.qml
│ │ │ ├── ComboBoxStyle.qml
│ │ │ ├── FocusFrameStyle.qml
│ │ │ ├── GroupBoxStyle.qml
│ │ │ ├── MenuBarStyle.qml
│ │ │ ├── MenuStyle.qml
│ │ │ ├── ProgressBarStyle.qml
│ │ │ ├── qmldir
│ │ │ ├── RadioButtonStyle.qml
│ │ │ ├── RowItemSingleton.qml
│ │ │ ├── ScrollViewStyle.qml
│ │ │ ├── SliderStyle.qml
│ │ │ ├── SpinBoxStyle.qml
│ │ │ ├── StatusBarStyle.qml
│ │ │ ├── SwitchStyle.qml
│ │ │ ├── TableViewStyle.qml
│ │ │ ├── TabViewStyle.qml
│ │ │ ├── TextAreaStyle.qml
│ │ │ ├── TextFieldStyle.qml
│ │ │ ├── ToolBarStyle.qml
│ │ │ ├── ToolButtonStyle.qml
│ │ │ └── TreeViewStyle.qml
│ │ ├── Flat
│ │ │ ├── libqtquickextrasflatplugin.so
│ │ │ ├── plugins.qmltypes
│ │ │ └── qmldir
│ │ └── qmldir
│ ├── Switch.qml
│ ├── TableViewColumn.qml
│ ├── TableView.qml
│ ├── Tab.qml
│ ├── TabView.qml
│ ├── TextArea.qml
│ ├── TextField.qml
│ ├── ToolBar.qml
│ ├── ToolButton.qml
│ └── TreeView.qml
├── Controls.2
│ ├── AbstractButton.qml
│ ├── ActionGroup.qml
│ ├── Action.qml
│ ├── ApplicationWindow.qml
│ ├── BusyIndicator.qml
│ ├── ButtonGroup.qml
│ ├── Button.qml
│ ├── CheckBox.qml
│ ├── CheckDelegate.qml
│ ├── ComboBox.qml
│ ├── Container.qml
│ ├── Control.qml
│ ├── DelayButton.qml
│ ├── designer
│ │ ├── AbstractButtonSection.qml
│ │ ├── BusyIndicatorSpecifics.qml
│ │ ├── ButtonSection.qml
│ │ ├── ButtonSpecifics.qml
│ │ ├── CheckBoxSpecifics.qml
│ │ ├── CheckDelegateSpecifics.qml
│ │ ├── CheckSection.qml
│ │ ├── ComboBoxSpecifics.qml
│ │ ├── ContainerSection.qml
│ │ ├── ControlSection.qml
│ │ ├── ControlSpecifics.qml
│ │ ├── DelayButtonSpecifics.qml
│ │ ├── DialSpecifics.qml
│ │ ├── FrameSpecifics.qml
│ │ ├── GroupBoxSpecifics.qml
│ │ ├── images
│ │ │ ├── busyindicator-icon16.png
│ │ │ ├── busyindicator-icon@2x.png
│ │ │ ├── busyindicator-icon.png
│ │ │ ├── button-icon16.png
│ │ │ ├── button-icon@2x.png
│ │ │ ├── button-icon.png
│ │ │ ├── checkbox-icon16.png
│ │ │ ├── checkbox-icon@2x.png
│ │ │ ├── checkbox-icon.png
│ │ │ ├── combobox-icon16.png
│ │ │ ├── combobox-icon@2x.png
│ │ │ ├── combobox-icon.png
│ │ │ ├── delaybutton-icon16.png
│ │ │ ├── delaybutton-icon@2x.png
│ │ │ ├── delaybutton-icon.png
│ │ │ ├── dial-icon16.png
│ │ │ ├── dial-icon@2x.png
│ │ │ ├── dial-icon.png
│ │ │ ├── frame-icon16.png
│ │ │ ├── frame-icon@2x.png
│ │ │ ├── frame-icon.png
│ │ │ ├── groupbox-icon16.png
│ │ │ ├── groupbox-icon@2x.png
│ │ │ ├── groupbox-icon.png
│ │ │ ├── itemdelegate-icon16.png
│ │ │ ├── itemdelegate-icon@2x.png
│ │ │ ├── itemdelegate-icon.png
│ │ │ ├── label-icon16.png
│ │ │ ├── label-icon@2x.png
│ │ │ ├── label-icon.png
│ │ │ ├── page-icon16.png
│ │ │ ├── page-icon@2x.png
│ │ │ ├── page-icon.png
│ │ │ ├── pageindicator-icon16.png
│ │ │ ├── pageindicator-icon@2x.png
│ │ │ ├── pageindicator-icon.png
│ │ │ ├── pane-icon16.png
│ │ │ ├── pane-icon@2x.png
│ │ │ ├── pane-icon.png
│ │ │ ├── progressbar-icon16.png
│ │ │ ├── progressbar-icon@2x.png
│ │ │ ├── progressbar-icon.png
│ │ │ ├── radiobutton-icon16.png
│ │ │ ├── radiobutton-icon@2x.png
│ │ │ ├── radiobutton-icon.png
│ │ │ ├── rangeslider-icon16.png
│ │ │ ├── rangeslider-icon@2x.png
│ │ │ ├── rangeslider-icon.png
│ │ │ ├── roundbutton-icon16.png
│ │ │ ├── roundbutton-icon@2x.png
│ │ │ ├── roundbutton-icon.png
│ │ │ ├── scrollview-icon16.png
│ │ │ ├── scrollview-icon@2x.png
│ │ │ ├── scrollview-icon.png
│ │ │ ├── slider-icon16.png
│ │ │ ├── slider-icon@2x.png
│ │ │ ├── slider-icon.png
│ │ │ ├── spinbox-icon16.png
│ │ │ ├── spinbox-icon@2x.png
│ │ │ ├── spinbox-icon.png
│ │ │ ├── stackview-icon16.png
│ │ │ ├── stackview-icon@2x.png
│ │ │ ├── stackview-icon.png
│ │ │ ├── swipeview-icon16.png
│ │ │ ├── swipeview-icon@2x.png
│ │ │ ├── swipeview-icon.png
│ │ │ ├── switch-icon16.png
│ │ │ ├── switch-icon@2x.png
│ │ │ ├── switch-icon.png
│ │ │ ├── textarea-icon16.png
│ │ │ ├── textarea-icon@2x.png
│ │ │ ├── textarea-icon.png
│ │ │ ├── textfield-icon16.png
│ │ │ ├── textfield-icon@2x.png
│ │ │ ├── textfield-icon.png
│ │ │ ├── toolbar-icon16.png
│ │ │ ├── toolbar-icon@2x.png
│ │ │ ├── toolbar-icon.png
│ │ │ ├── toolbutton-icon16.png
│ │ │ ├── toolbutton-icon@2x.png
│ │ │ ├── toolbutton-icon.png
│ │ │ ├── toolseparator-icon16.png
│ │ │ ├── toolseparator-icon@2x.png
│ │ │ ├── toolseparator-icon.png
│ │ │ ├── tumbler-icon16.png
│ │ │ ├── tumbler-icon@2x.png
│ │ │ └── tumbler-icon.png
│ │ ├── ItemDelegateSection.qml
│ │ ├── ItemDelegateSpecifics.qml
│ │ ├── LabelSpecifics.qml
│ │ ├── PaddingSection.qml
│ │ ├── PageIndicatorSpecifics.qml
│ │ ├── PageSpecifics.qml
│ │ ├── PaneSection.qml
│ │ ├── PaneSpecifics.qml
│ │ ├── ProgressBarSpecifics.qml
│ │ ├── qtquickcontrols2.metainfo
│ │ ├── RadioButtonSpecifics.qml
│ │ ├── RadioDelegateSpecifics.qml
│ │ ├── RangeSliderSpecifics.qml
│ │ ├── RoundButtonSpecifics.qml
│ │ ├── ScrollViewSpecifics.qml
│ │ ├── SliderSpecifics.qml
│ │ ├── SpinBoxSpecifics.qml
│ │ ├── StackViewSpecifics.qml
│ │ ├── SwipeDelegateSpecifics.qml
│ │ ├── SwipeViewSpecifics.qml
│ │ ├── SwitchDelegateSpecifics.qml
│ │ ├── SwitchSpecifics.qml
│ │ ├── TabBarSpecifics.qml
│ │ ├── TabButtonSpecifics.qml
│ │ ├── TextAreaSpecifics.qml
│ │ ├── TextFieldSpecifics.qml
│ │ ├── ToolBarSpecifics.qml
│ │ ├── ToolButtonSpecifics.qml
│ │ ├── ToolSeparatorSpecifics.qml
│ │ └── TumblerSpecifics.qml
│ ├── DialogButtonBox.qml
│ ├── Dialog.qml
│ ├── Dial.qml
│ ├── Drawer.qml
│ ├── Frame.qml
│ ├── Fusion
│ │ ├── ApplicationWindow.qml
│ │ ├── BusyIndicator.qml
│ │ ├── ButtonPanel.qml
│ │ ├── Button.qml
│ │ ├── CheckBox.qml
│ │ ├── CheckDelegate.qml
│ │ ├── CheckIndicator.qml
│ │ ├── ComboBox.qml
│ │ ├── DelayButton.qml
│ │ ├── DialogButtonBox.qml
│ │ ├── Dialog.qml
│ │ ├── Dial.qml
│ │ ├── Drawer.qml
│ │ ├── Frame.qml
│ │ ├── GroupBox.qml
│ │ ├── HorizontalHeaderView.qml
│ │ ├── ItemDelegate.qml
│ │ ├── Label.qml
│ │ ├── libqtquickcontrols2fusionstyleplugin.so
│ │ ├── MenuBarItem.qml
│ │ ├── MenuBar.qml
│ │ ├── MenuItem.qml
│ │ ├── Menu.qml
│ │ ├── MenuSeparator.qml
│ │ ├── PageIndicator.qml
│ │ ├── Page.qml
│ │ ├── Pane.qml
│ │ ├── plugins.qmltypes
│ │ ├── Popup.qml
│ │ ├── ProgressBar.qml
│ │ ├── qmldir
│ │ ├── RadioButton.qml
│ │ ├── RadioDelegate.qml
│ │ ├── RadioIndicator.qml
│ │ ├── RangeSlider.qml
│ │ ├── RoundButton.qml
│ │ ├── ScrollBar.qml
│ │ ├── ScrollIndicator.qml
│ │ ├── SliderGroove.qml
│ │ ├── SliderHandle.qml
│ │ ├── Slider.qml
│ │ ├── SpinBox.qml
│ │ ├── SplitView.qml
│ │ ├── SwipeDelegate.qml
│ │ ├── SwitchDelegate.qml
│ │ ├── SwitchIndicator.qml
│ │ ├── Switch.qml
│ │ ├── TabBar.qml
│ │ ├── TabButton.qml
│ │ ├── TextArea.qml
│ │ ├── TextField.qml
│ │ ├── ToolBar.qml
│ │ ├── ToolButton.qml
│ │ ├── ToolSeparator.qml
│ │ ├── ToolTip.qml
│ │ ├── Tumbler.qml
│ │ └── VerticalHeaderView.qml
│ ├── GroupBox.qml
│ ├── HorizontalHeaderView.qml
│ ├── Imagine
│ │ ├── ApplicationWindow.qml
│ │ ├── BusyIndicator.qml
│ │ ├── Button.qml
│ │ ├── CheckBox.qml
│ │ ├── CheckDelegate.qml
│ │ ├── ComboBox.qml
│ │ ├── DelayButton.qml
│ │ ├── DialogButtonBox.qml
│ │ ├── Dialog.qml
│ │ ├── Dial.qml
│ │ ├── Drawer.qml
│ │ ├── Frame.qml
│ │ ├── GroupBox.qml
│ │ ├── HorizontalHeaderView.qml
│ │ ├── ItemDelegate.qml
│ │ ├── Label.qml
│ │ ├── libqtquickcontrols2imaginestyleplugin.so
│ │ ├── MenuItem.qml
│ │ ├── Menu.qml
│ │ ├── MenuSeparator.qml
│ │ ├── PageIndicator.qml
│ │ ├── Page.qml
│ │ ├── Pane.qml
│ │ ├── plugins.qmltypes
│ │ ├── Popup.qml
│ │ ├── ProgressBar.qml
│ │ ├── qmldir
│ │ ├── RadioButton.qml
│ │ ├── RadioDelegate.qml
│ │ ├── RangeSlider.qml
│ │ ├── RoundButton.qml
│ │ ├── ScrollBar.qml
│ │ ├── ScrollIndicator.qml
│ │ ├── Slider.qml
│ │ ├── SpinBox.qml
│ │ ├── SplitView.qml
│ │ ├── StackView.qml
│ │ ├── SwipeDelegate.qml
│ │ ├── SwipeView.qml
│ │ ├── SwitchDelegate.qml
│ │ ├── Switch.qml
│ │ ├── TabBar.qml
│ │ ├── TabButton.qml
│ │ ├── TextArea.qml
│ │ ├── TextField.qml
│ │ ├── ToolBar.qml
│ │ ├── ToolButton.qml
│ │ ├── ToolSeparator.qml
│ │ ├── ToolTip.qml
│ │ ├── Tumbler.qml
│ │ └── VerticalHeaderView.qml
│ ├── ItemDelegate.qml
│ ├── Label.qml
│ ├── libqtquickcontrols2plugin.so
│ ├── Material
│ │ ├── ApplicationWindow.qml
│ │ ├── BoxShadow.qml
│ │ ├── BusyIndicator.qml
│ │ ├── Button.qml
│ │ ├── CheckBox.qml
│ │ ├── CheckDelegate.qml
│ │ ├── CheckIndicator.qml
│ │ ├── ComboBox.qml
│ │ ├── CursorDelegate.qml
│ │ ├── DelayButton.qml
│ │ ├── DialogButtonBox.qml
│ │ ├── Dialog.qml
│ │ ├── Dial.qml
│ │ ├── Drawer.qml
│ │ ├── ElevationEffect.qml
│ │ ├── Frame.qml
│ │ ├── GroupBox.qml
│ │ ├── HorizontalHeaderView.qml
│ │ ├── ItemDelegate.qml
│ │ ├── Label.qml
│ │ ├── libqtquickcontrols2materialstyleplugin.so
│ │ ├── MenuBarItem.qml
│ │ ├── MenuBar.qml
│ │ ├── MenuItem.qml
│ │ ├── Menu.qml
│ │ ├── MenuSeparator.qml
│ │ ├── PageIndicator.qml
│ │ ├── Page.qml
│ │ ├── Pane.qml
│ │ ├── plugins.qmltypes
│ │ ├── Popup.qml
│ │ ├── ProgressBar.qml
│ │ ├── qmldir
│ │ ├── RadioButton.qml
│ │ ├── RadioDelegate.qml
│ │ ├── RadioIndicator.qml
│ │ ├── RangeSlider.qml
│ │ ├── RectangularGlow.qml
│ │ ├── RoundButton.qml
│ │ ├── ScrollBar.qml
│ │ ├── ScrollIndicator.qml
│ │ ├── SliderHandle.qml
│ │ ├── Slider.qml
│ │ ├── SpinBox.qml
│ │ ├── SplitView.qml
│ │ ├── StackView.qml
│ │ ├── SwipeDelegate.qml
│ │ ├── SwipeView.qml
│ │ ├── SwitchDelegate.qml
│ │ ├── SwitchIndicator.qml
│ │ ├── Switch.qml
│ │ ├── TabBar.qml
│ │ ├── TabButton.qml
│ │ ├── TextArea.qml
│ │ ├── TextField.qml
│ │ ├── ToolBar.qml
│ │ ├── ToolButton.qml
│ │ ├── ToolSeparator.qml
│ │ ├── ToolTip.qml
│ │ ├── Tumbler.qml
│ │ └── VerticalHeaderView.qml
│ ├── MenuBarItem.qml
│ ├── MenuBar.qml
│ ├── MenuItem.qml
│ ├── Menu.qml
│ ├── MenuSeparator.qml
│ ├── PageIndicator.qml
│ ├── Page.qml
│ ├── Pane.qml
│ ├── plugins.qmltypes
│ ├── Popup.qml
│ ├── ProgressBar.qml
│ ├── qmldir
│ ├── RadioButton.qml
│ ├── RadioDelegate.qml
│ ├── RangeSlider.qml
│ ├── RoundButton.qml
│ ├── ScrollBar.qml
│ ├── ScrollIndicator.qml
│ ├── ScrollView.qml
│ ├── Slider.qml
│ ├── SpinBox.qml
│ ├── SplitView.qml
│ ├── StackView.qml
│ ├── SwipeDelegate.qml
│ ├── SwipeView.qml
│ ├── SwitchDelegate.qml
│ ├── Switch.qml
│ ├── TabBar.qml
│ ├── TabButton.qml
│ ├── TextArea.qml
│ ├── TextField.qml
│ ├── ToolBar.qml
│ ├── ToolButton.qml
│ ├── ToolSeparator.qml
│ ├── ToolTip.qml
│ ├── Tumbler.qml
│ ├── Universal
│ │ ├── ApplicationWindow.qml
│ │ ├── BusyIndicator.qml
│ │ ├── Button.qml
│ │ ├── CheckBox.qml
│ │ ├── CheckDelegate.qml
│ │ ├── CheckIndicator.qml
│ │ ├── ComboBox.qml
│ │ ├── DelayButton.qml
│ │ ├── DialogButtonBox.qml
│ │ ├── Dialog.qml
│ │ ├── Dial.qml
│ │ ├── Drawer.qml
│ │ ├── Frame.qml
│ │ ├── GroupBox.qml
│ │ ├── HorizontalHeaderView.qml
│ │ ├── ItemDelegate.qml
│ │ ├── Label.qml
│ │ ├── libqtquickcontrols2universalstyleplugin.so
│ │ ├── MenuBarItem.qml
│ │ ├── MenuBar.qml
│ │ ├── MenuItem.qml
│ │ ├── Menu.qml
│ │ ├── MenuSeparator.qml
│ │ ├── PageIndicator.qml
│ │ ├── Page.qml
│ │ ├── Pane.qml
│ │ ├── plugins.qmltypes
│ │ ├── Popup.qml
│ │ ├── ProgressBar.qml
│ │ ├── qmldir
│ │ ├── RadioButton.qml
│ │ ├── RadioDelegate.qml
│ │ ├── RadioIndicator.qml
│ │ ├── RangeSlider.qml
│ │ ├── RoundButton.qml
│ │ ├── ScrollBar.qml
│ │ ├── ScrollIndicator.qml
│ │ ├── Slider.qml
│ │ ├── SpinBox.qml
│ │ ├── SplitView.qml
│ │ ├── StackView.qml
│ │ ├── SwipeDelegate.qml
│ │ ├── SwitchDelegate.qml
│ │ ├── SwitchIndicator.qml
│ │ ├── Switch.qml
│ │ ├── TabBar.qml
│ │ ├── TabButton.qml
│ │ ├── TextArea.qml
│ │ ├── TextField.qml
│ │ ├── ToolBar.qml
│ │ ├── ToolButton.qml
│ │ ├── ToolSeparator.qml
│ │ ├── ToolTip.qml
│ │ ├── Tumbler.qml
│ │ └── VerticalHeaderView.qml
│ └── VerticalHeaderView.qml
├── Dialogs
│ ├── DefaultColorDialog.qml
│ ├── DefaultDialogWrapper.qml
│ ├── DefaultFileDialog.qml
│ ├── DefaultFontDialog.qml
│ ├── DefaultMessageDialog.qml
│ ├── images
│ │ ├── checkers.png
│ │ ├── checkmark.png
│ │ ├── copy.png
│ │ ├── critical.png
│ │ ├── crosshairs.png
│ │ ├── information.png
│ │ ├── question.png
│ │ ├── slider_handle.png
│ │ ├── sunken_frame.png
│ │ ├── warning.png
│ │ └── window_border.png
│ ├── libdialogplugin.so
│ ├── plugins.qmltypes
│ ├── Private
│ │ ├── libdialogsprivateplugin.so
│ │ ├── plugins.qmltypes
│ │ └── qmldir
│ ├── qml
│ │ ├── ColorSlider.qml
│ │ ├── DefaultWindowDecoration.qml
│ │ ├── IconButtonStyle.qml
│ │ ├── IconGlyph.qml
│ │ ├── icons.ttf
│ │ └── qmldir
│ ├── qmldir
│ ├── WidgetColorDialog.qml
│ ├── WidgetFileDialog.qml
│ ├── WidgetFontDialog.qml
│ └── WidgetMessageDialog.qml
├── Extras
│ ├── CircularGauge.qml
│ ├── DelayButton.qml
│ ├── designer
│ │ ├── CircularGaugeSpecifics.qml
│ │ ├── DelayButtonSpecifics.qml
│ │ ├── DialSpecifics.qml
│ │ ├── GaugeSpecifics.qml
│ │ ├── images
│ │ │ ├── circulargauge-icon16.png
│ │ │ ├── circulargauge-icon.png
│ │ │ ├── delaybutton-icon16.png
│ │ │ ├── delaybutton-icon.png
│ │ │ ├── dial-icon16.png
│ │ │ ├── dial-icon.png
│ │ │ ├── gauge-icon16.png
│ │ │ ├── gauge-icon.png
│ │ │ ├── picture-icon16.png
│ │ │ ├── picture-icon.png
│ │ │ ├── piemenu-icon16.png
│ │ │ ├── piemenu-icon.png
│ │ │ ├── statusindicator-icon16.png
│ │ │ ├── statusindicator-icon.png
│ │ │ ├── togglebutton-icon16.png
│ │ │ ├── togglebutton-icon.png
│ │ │ ├── tumbler-icon16.png
│ │ │ └── tumbler-icon.png
│ │ ├── PictureSpecifics.qml
│ │ ├── PieMenuSpecifics.qml
│ │ ├── qtquickextras.metainfo
│ │ ├── StatusIndicatorSpecifics.qml
│ │ └── ToggleButtonSpecifics.qml
│ ├── Dial.qml
│ ├── Gauge.qml
│ ├── libqtquickextrasplugin.so
│ ├── PieMenu.qml
│ ├── plugins.qmltypes
│ ├── Private
│ │ ├── CircularButton.qml
│ │ ├── CircularButtonStyleHelper.qml
│ │ ├── CircularTickmarkLabel.qml
│ │ ├── Handle.qml
│ │ ├── PieMenuIcon.qml
│ │ ├── qmldir
│ │ └── TextSingleton.qml
│ ├── qmldir
│ ├── StatusIndicator.qml
│ ├── ToggleButton.qml
│ ├── TumblerColumn.qml
│ └── Tumbler.qml
├── Layouts
│ ├── libqquicklayoutsplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── LocalStorage
│ ├── libqmllocalstorageplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Particles.2
│ ├── libparticlesplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── PrivateWidgets
│ ├── libwidgetsplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Scene2D
│ ├── libqtquickscene2dplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Scene3D
│ ├── libqtquickscene3dplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Shapes
│ ├── libqmlshapesplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Templates.2
│ ├── libqtquicktemplates2plugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Timeline
│ ├── libqtquicktimelineplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── VirtualKeyboard
│ ├── libqtquickvirtualkeyboardplugin.so
│ ├── plugins.qmltypes
│ ├── qmldir
│ ├── Settings
│ │ ├── libqtquickvirtualkeyboardsettingsplugin.so
│ │ ├── plugins.qmltypes
│ │ └── qmldir
│ └── Styles
│ ├── libqtquickvirtualkeyboardstylesplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Window.2
│ ├── libwindowplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
└── XmlListModel
├── libqmlxmllistmodelplugin.so
├── plugins.qmltypes
└── qmldir36 directories, 703 files
不包含 Qt Quick Controls 1 :
.
├── 1.txt
├── Controls.2
│ ├── AbstractButton.qml
│ ├── ActionGroup.qml
│ ├── Action.qml
│ ├── ApplicationWindow.qml
│ ├── BusyIndicator.qml
│ ├── ButtonGroup.qml
│ ├── Button.qml
│ ├── CheckBox.qml
│ ├── CheckDelegate.qml
│ ├── ComboBox.qml
│ ├── Container.qml
│ ├── Control.qml
│ ├── DelayButton.qml
│ ├── designer
│ │ ├── AbstractButtonSection.qml
│ │ ├── BusyIndicatorSpecifics.qml
│ │ ├── ButtonSection.qml
│ │ ├── ButtonSpecifics.qml
│ │ ├── CheckBoxSpecifics.qml
│ │ ├── CheckDelegateSpecifics.qml
│ │ ├── CheckSection.qml
│ │ ├── ComboBoxSpecifics.qml
│ │ ├── ContainerSection.qml
│ │ ├── ControlSection.qml
│ │ ├── ControlSpecifics.qml
│ │ ├── DelayButtonSpecifics.qml
│ │ ├── DialSpecifics.qml
│ │ ├── FrameSpecifics.qml
│ │ ├── GroupBoxSpecifics.qml
│ │ ├── images
│ │ │ ├── busyindicator-icon16.png
│ │ │ ├── busyindicator-icon@2x.png
│ │ │ ├── busyindicator-icon.png
│ │ │ ├── button-icon16.png
│ │ │ ├── button-icon@2x.png
│ │ │ ├── button-icon.png
│ │ │ ├── checkbox-icon16.png
│ │ │ ├── checkbox-icon@2x.png
│ │ │ ├── checkbox-icon.png
│ │ │ ├── combobox-icon16.png
│ │ │ ├── combobox-icon@2x.png
│ │ │ ├── combobox-icon.png
│ │ │ ├── delaybutton-icon16.png
│ │ │ ├── delaybutton-icon@2x.png
│ │ │ ├── delaybutton-icon.png
│ │ │ ├── dial-icon16.png
│ │ │ ├── dial-icon@2x.png
│ │ │ ├── dial-icon.png
│ │ │ ├── frame-icon16.png
│ │ │ ├── frame-icon@2x.png
│ │ │ ├── frame-icon.png
│ │ │ ├── groupbox-icon16.png
│ │ │ ├── groupbox-icon@2x.png
│ │ │ ├── groupbox-icon.png
│ │ │ ├── itemdelegate-icon16.png
│ │ │ ├── itemdelegate-icon@2x.png
│ │ │ ├── itemdelegate-icon.png
│ │ │ ├── label-icon16.png
│ │ │ ├── label-icon@2x.png
│ │ │ ├── label-icon.png
│ │ │ ├── page-icon16.png
│ │ │ ├── page-icon@2x.png
│ │ │ ├── page-icon.png
│ │ │ ├── pageindicator-icon16.png
│ │ │ ├── pageindicator-icon@2x.png
│ │ │ ├── pageindicator-icon.png
│ │ │ ├── pane-icon16.png
│ │ │ ├── pane-icon@2x.png
│ │ │ ├── pane-icon.png
│ │ │ ├── progressbar-icon16.png
│ │ │ ├── progressbar-icon@2x.png
│ │ │ ├── progressbar-icon.png
│ │ │ ├── radiobutton-icon16.png
│ │ │ ├── radiobutton-icon@2x.png
│ │ │ ├── radiobutton-icon.png
│ │ │ ├── rangeslider-icon16.png
│ │ │ ├── rangeslider-icon@2x.png
│ │ │ ├── rangeslider-icon.png
│ │ │ ├── roundbutton-icon16.png
│ │ │ ├── roundbutton-icon@2x.png
│ │ │ ├── roundbutton-icon.png
│ │ │ ├── scrollview-icon16.png
│ │ │ ├── scrollview-icon@2x.png
│ │ │ ├── scrollview-icon.png
│ │ │ ├── slider-icon16.png
│ │ │ ├── slider-icon@2x.png
│ │ │ ├── slider-icon.png
│ │ │ ├── spinbox-icon16.png
│ │ │ ├── spinbox-icon@2x.png
│ │ │ ├── spinbox-icon.png
│ │ │ ├── stackview-icon16.png
│ │ │ ├── stackview-icon@2x.png
│ │ │ ├── stackview-icon.png
│ │ │ ├── swipeview-icon16.png
│ │ │ ├── swipeview-icon@2x.png
│ │ │ ├── swipeview-icon.png
│ │ │ ├── switch-icon16.png
│ │ │ ├── switch-icon@2x.png
│ │ │ ├── switch-icon.png
│ │ │ ├── textarea-icon16.png
│ │ │ ├── textarea-icon@2x.png
│ │ │ ├── textarea-icon.png
│ │ │ ├── textfield-icon16.png
│ │ │ ├── textfield-icon@2x.png
│ │ │ ├── textfield-icon.png
│ │ │ ├── toolbar-icon16.png
│ │ │ ├── toolbar-icon@2x.png
│ │ │ ├── toolbar-icon.png
│ │ │ ├── toolbutton-icon16.png
│ │ │ ├── toolbutton-icon@2x.png
│ │ │ ├── toolbutton-icon.png
│ │ │ ├── toolseparator-icon16.png
│ │ │ ├── toolseparator-icon@2x.png
│ │ │ ├── toolseparator-icon.png
│ │ │ ├── tumbler-icon16.png
│ │ │ ├── tumbler-icon@2x.png
│ │ │ └── tumbler-icon.png
│ │ ├── ItemDelegateSection.qml
│ │ ├── ItemDelegateSpecifics.qml
│ │ ├── LabelSpecifics.qml
│ │ ├── PaddingSection.qml
│ │ ├── PageIndicatorSpecifics.qml
│ │ ├── PageSpecifics.qml
│ │ ├── PaneSection.qml
│ │ ├── PaneSpecifics.qml
│ │ ├── ProgressBarSpecifics.qml
│ │ ├── qtquickcontrols2.metainfo
│ │ ├── RadioButtonSpecifics.qml
│ │ ├── RadioDelegateSpecifics.qml
│ │ ├── RangeSliderSpecifics.qml
│ │ ├── RoundButtonSpecifics.qml
│ │ ├── ScrollViewSpecifics.qml
│ │ ├── SliderSpecifics.qml
│ │ ├── SpinBoxSpecifics.qml
│ │ ├── StackViewSpecifics.qml
│ │ ├── SwipeDelegateSpecifics.qml
│ │ ├── SwipeViewSpecifics.qml
│ │ ├── SwitchDelegateSpecifics.qml
│ │ ├── SwitchSpecifics.qml
│ │ ├── TabBarSpecifics.qml
│ │ ├── TabButtonSpecifics.qml
│ │ ├── TextAreaSpecifics.qml
│ │ ├── TextFieldSpecifics.qml
│ │ ├── ToolBarSpecifics.qml
│ │ ├── ToolButtonSpecifics.qml
│ │ ├── ToolSeparatorSpecifics.qml
│ │ └── TumblerSpecifics.qml
│ ├── DialogButtonBox.qml
│ ├── Dialog.qml
│ ├── Dial.qml
│ ├── Drawer.qml
│ ├── Frame.qml
│ ├── Fusion
│ │ ├── ApplicationWindow.qml
│ │ ├── BusyIndicator.qml
│ │ ├── ButtonPanel.qml
│ │ ├── Button.qml
│ │ ├── CheckBox.qml
│ │ ├── CheckDelegate.qml
│ │ ├── CheckIndicator.qml
│ │ ├── ComboBox.qml
│ │ ├── DelayButton.qml
│ │ ├── DialogButtonBox.qml
│ │ ├── Dialog.qml
│ │ ├── Dial.qml
│ │ ├── Drawer.qml
│ │ ├── Frame.qml
│ │ ├── GroupBox.qml
│ │ ├── HorizontalHeaderView.qml
│ │ ├── ItemDelegate.qml
│ │ ├── Label.qml
│ │ ├── libqtquickcontrols2fusionstyleplugin.so
│ │ ├── MenuBarItem.qml
│ │ ├── MenuBar.qml
│ │ ├── MenuItem.qml
│ │ ├── Menu.qml
│ │ ├── MenuSeparator.qml
│ │ ├── PageIndicator.qml
│ │ ├── Page.qml
│ │ ├── Pane.qml
│ │ ├── plugins.qmltypes
│ │ ├── Popup.qml
│ │ ├── ProgressBar.qml
│ │ ├── qmldir
│ │ ├── RadioButton.qml
│ │ ├── RadioDelegate.qml
│ │ ├── RadioIndicator.qml
│ │ ├── RangeSlider.qml
│ │ ├── RoundButton.qml
│ │ ├── ScrollBar.qml
│ │ ├── ScrollIndicator.qml
│ │ ├── SliderGroove.qml
│ │ ├── SliderHandle.qml
│ │ ├── Slider.qml
│ │ ├── SpinBox.qml
│ │ ├── SplitView.qml
│ │ ├── SwipeDelegate.qml
│ │ ├── SwitchDelegate.qml
│ │ ├── SwitchIndicator.qml
│ │ ├── Switch.qml
│ │ ├── TabBar.qml
│ │ ├── TabButton.qml
│ │ ├── TextArea.qml
│ │ ├── TextField.qml
│ │ ├── ToolBar.qml
│ │ ├── ToolButton.qml
│ │ ├── ToolSeparator.qml
│ │ ├── ToolTip.qml
│ │ ├── Tumbler.qml
│ │ └── VerticalHeaderView.qml
│ ├── GroupBox.qml
│ ├── HorizontalHeaderView.qml
│ ├── Imagine
│ │ ├── ApplicationWindow.qml
│ │ ├── BusyIndicator.qml
│ │ ├── Button.qml
│ │ ├── CheckBox.qml
│ │ ├── CheckDelegate.qml
│ │ ├── ComboBox.qml
│ │ ├── DelayButton.qml
│ │ ├── DialogButtonBox.qml
│ │ ├── Dialog.qml
│ │ ├── Dial.qml
│ │ ├── Drawer.qml
│ │ ├── Frame.qml
│ │ ├── GroupBox.qml
│ │ ├── HorizontalHeaderView.qml
│ │ ├── ItemDelegate.qml
│ │ ├── Label.qml
│ │ ├── libqtquickcontrols2imaginestyleplugin.so
│ │ ├── MenuItem.qml
│ │ ├── Menu.qml
│ │ ├── MenuSeparator.qml
│ │ ├── PageIndicator.qml
│ │ ├── Page.qml
│ │ ├── Pane.qml
│ │ ├── plugins.qmltypes
│ │ ├── Popup.qml
│ │ ├── ProgressBar.qml
│ │ ├── qmldir
│ │ ├── RadioButton.qml
│ │ ├── RadioDelegate.qml
│ │ ├── RangeSlider.qml
│ │ ├── RoundButton.qml
│ │ ├── ScrollBar.qml
│ │ ├── ScrollIndicator.qml
│ │ ├── Slider.qml
│ │ ├── SpinBox.qml
│ │ ├── SplitView.qml
│ │ ├── StackView.qml
│ │ ├── SwipeDelegate.qml
│ │ ├── SwipeView.qml
│ │ ├── SwitchDelegate.qml
│ │ ├── Switch.qml
│ │ ├── TabBar.qml
│ │ ├── TabButton.qml
│ │ ├── TextArea.qml
│ │ ├── TextField.qml
│ │ ├── ToolBar.qml
│ │ ├── ToolButton.qml
│ │ ├── ToolSeparator.qml
│ │ ├── ToolTip.qml
│ │ ├── Tumbler.qml
│ │ └── VerticalHeaderView.qml
│ ├── ItemDelegate.qml
│ ├── Label.qml
│ ├── libqtquickcontrols2plugin.so
│ ├── Material
│ │ ├── ApplicationWindow.qml
│ │ ├── BoxShadow.qml
│ │ ├── BusyIndicator.qml
│ │ ├── Button.qml
│ │ ├── CheckBox.qml
│ │ ├── CheckDelegate.qml
│ │ ├── CheckIndicator.qml
│ │ ├── ComboBox.qml
│ │ ├── CursorDelegate.qml
│ │ ├── DelayButton.qml
│ │ ├── DialogButtonBox.qml
│ │ ├── Dialog.qml
│ │ ├── Dial.qml
│ │ ├── Drawer.qml
│ │ ├── ElevationEffect.qml
│ │ ├── Frame.qml
│ │ ├── GroupBox.qml
│ │ ├── HorizontalHeaderView.qml
│ │ ├── ItemDelegate.qml
│ │ ├── Label.qml
│ │ ├── libqtquickcontrols2materialstyleplugin.so
│ │ ├── MenuBarItem.qml
│ │ ├── MenuBar.qml
│ │ ├── MenuItem.qml
│ │ ├── Menu.qml
│ │ ├── MenuSeparator.qml
│ │ ├── PageIndicator.qml
│ │ ├── Page.qml
│ │ ├── Pane.qml
│ │ ├── plugins.qmltypes
│ │ ├── Popup.qml
│ │ ├── ProgressBar.qml
│ │ ├── qmldir
│ │ ├── RadioButton.qml
│ │ ├── RadioDelegate.qml
│ │ ├── RadioIndicator.qml
│ │ ├── RangeSlider.qml
│ │ ├── RectangularGlow.qml
│ │ ├── RoundButton.qml
│ │ ├── ScrollBar.qml
│ │ ├── ScrollIndicator.qml
│ │ ├── SliderHandle.qml
│ │ ├── Slider.qml
│ │ ├── SpinBox.qml
│ │ ├── SplitView.qml
│ │ ├── StackView.qml
│ │ ├── SwipeDelegate.qml
│ │ ├── SwipeView.qml
│ │ ├── SwitchDelegate.qml
│ │ ├── SwitchIndicator.qml
│ │ ├── Switch.qml
│ │ ├── TabBar.qml
│ │ ├── TabButton.qml
│ │ ├── TextArea.qml
│ │ ├── TextField.qml
│ │ ├── ToolBar.qml
│ │ ├── ToolButton.qml
│ │ ├── ToolSeparator.qml
│ │ ├── ToolTip.qml
│ │ ├── Tumbler.qml
│ │ └── VerticalHeaderView.qml
│ ├── MenuBarItem.qml
│ ├── MenuBar.qml
│ ├── MenuItem.qml
│ ├── Menu.qml
│ ├── MenuSeparator.qml
│ ├── PageIndicator.qml
│ ├── Page.qml
│ ├── Pane.qml
│ ├── plugins.qmltypes
│ ├── Popup.qml
│ ├── ProgressBar.qml
│ ├── qmldir
│ ├── RadioButton.qml
│ ├── RadioDelegate.qml
│ ├── RangeSlider.qml
│ ├── RoundButton.qml
│ ├── ScrollBar.qml
│ ├── ScrollIndicator.qml
│ ├── ScrollView.qml
│ ├── Slider.qml
│ ├── SpinBox.qml
│ ├── SplitView.qml
│ ├── StackView.qml
│ ├── SwipeDelegate.qml
│ ├── SwipeView.qml
│ ├── SwitchDelegate.qml
│ ├── Switch.qml
│ ├── TabBar.qml
│ ├── TabButton.qml
│ ├── TextArea.qml
│ ├── TextField.qml
│ ├── ToolBar.qml
│ ├── ToolButton.qml
│ ├── ToolSeparator.qml
│ ├── ToolTip.qml
│ ├── Tumbler.qml
│ ├── Universal
│ │ ├── ApplicationWindow.qml
│ │ ├── BusyIndicator.qml
│ │ ├── Button.qml
│ │ ├── CheckBox.qml
│ │ ├── CheckDelegate.qml
│ │ ├── CheckIndicator.qml
│ │ ├── ComboBox.qml
│ │ ├── DelayButton.qml
│ │ ├── DialogButtonBox.qml
│ │ ├── Dialog.qml
│ │ ├── Dial.qml
│ │ ├── Drawer.qml
│ │ ├── Frame.qml
│ │ ├── GroupBox.qml
│ │ ├── HorizontalHeaderView.qml
│ │ ├── ItemDelegate.qml
│ │ ├── Label.qml
│ │ ├── libqtquickcontrols2universalstyleplugin.so
│ │ ├── MenuBarItem.qml
│ │ ├── MenuBar.qml
│ │ ├── MenuItem.qml
│ │ ├── Menu.qml
│ │ ├── MenuSeparator.qml
│ │ ├── PageIndicator.qml
│ │ ├── Page.qml
│ │ ├── Pane.qml
│ │ ├── plugins.qmltypes
│ │ ├── Popup.qml
│ │ ├── ProgressBar.qml
│ │ ├── qmldir
│ │ ├── RadioButton.qml
│ │ ├── RadioDelegate.qml
│ │ ├── RadioIndicator.qml
│ │ ├── RangeSlider.qml
│ │ ├── RoundButton.qml
│ │ ├── ScrollBar.qml
│ │ ├── ScrollIndicator.qml
│ │ ├── Slider.qml
│ │ ├── SpinBox.qml
│ │ ├── SplitView.qml
│ │ ├── StackView.qml
│ │ ├── SwipeDelegate.qml
│ │ ├── SwitchDelegate.qml
│ │ ├── SwitchIndicator.qml
│ │ ├── Switch.qml
│ │ ├── TabBar.qml
│ │ ├── TabButton.qml
│ │ ├── TextArea.qml
│ │ ├── TextField.qml
│ │ ├── ToolBar.qml
│ │ ├── ToolButton.qml
│ │ ├── ToolSeparator.qml
│ │ ├── ToolTip.qml
│ │ ├── Tumbler.qml
│ │ └── VerticalHeaderView.qml
│ └── VerticalHeaderView.qml
├── Layouts
│ ├── libqquicklayoutsplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── LocalStorage
│ ├── libqmllocalstorageplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Particles.2
│ ├── libparticlesplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Scene2D
│ ├── libqtquickscene2dplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Scene3D
│ ├── libqtquickscene3dplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Shapes
│ ├── libqmlshapesplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Templates.2
│ ├── libqtquicktemplates2plugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Timeline
│ ├── libqtquicktimelineplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── VirtualKeyboard
│ ├── libqtquickvirtualkeyboardplugin.so
│ ├── plugins.qmltypes
│ ├── qmldir
│ ├── Settings
│ │ ├── libqtquickvirtualkeyboardsettingsplugin.so
│ │ ├── plugins.qmltypes
│ │ └── qmldir
│ └── Styles
│ ├── libqtquickvirtualkeyboardstylesplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
├── Window.2
│ ├── libwindowplugin.so
│ ├── plugins.qmltypes
│ └── qmldir
└── XmlListModel
├── libqmlxmllistmodelplugin.so
├── plugins.qmltypes
└── qmldir20 directories, 456 files