[Qt] Qt 的 Quick Control 1 包含了哪些内容

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
│   │   │   │   ├── [email protected]
│   │   │   │   ├── arrow-down.png
│   │   │   │   ├── [email protected]
│   │   │   │   ├── arrow-left.png
│   │   │   │   ├── [email protected]
│   │   │   │   ├── arrow-right.png
│   │   │   │   ├── [email protected]
│   │   │   │   ├── arrow-up.png
│   │   │   │   ├── button_down.png
│   │   │   │   ├── button.png
│   │   │   │   ├── [email protected]
│   │   │   │   ├── 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
│   │   │   ├── [email protected]
│   │   │   ├── busyindicator-icon.png
│   │   │   ├── button-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── button-icon.png
│   │   │   ├── checkbox-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── checkbox-icon.png
│   │   │   ├── combobox-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── combobox-icon.png
│   │   │   ├── delaybutton-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── delaybutton-icon.png
│   │   │   ├── dial-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── dial-icon.png
│   │   │   ├── frame-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── frame-icon.png
│   │   │   ├── groupbox-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── groupbox-icon.png
│   │   │   ├── itemdelegate-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── itemdelegate-icon.png
│   │   │   ├── label-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── label-icon.png
│   │   │   ├── page-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── page-icon.png
│   │   │   ├── pageindicator-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── pageindicator-icon.png
│   │   │   ├── pane-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── pane-icon.png
│   │   │   ├── progressbar-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── progressbar-icon.png
│   │   │   ├── radiobutton-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── radiobutton-icon.png
│   │   │   ├── rangeslider-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── rangeslider-icon.png
│   │   │   ├── roundbutton-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── roundbutton-icon.png
│   │   │   ├── scrollview-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── scrollview-icon.png
│   │   │   ├── slider-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── slider-icon.png
│   │   │   ├── spinbox-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── spinbox-icon.png
│   │   │   ├── stackview-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── stackview-icon.png
│   │   │   ├── swipeview-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── swipeview-icon.png
│   │   │   ├── switch-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── switch-icon.png
│   │   │   ├── textarea-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── textarea-icon.png
│   │   │   ├── textfield-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── textfield-icon.png
│   │   │   ├── toolbar-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── toolbar-icon.png
│   │   │   ├── toolbutton-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── toolbutton-icon.png
│   │   │   ├── toolseparator-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── toolseparator-icon.png
│   │   │   ├── tumbler-icon16.png
│   │   │   ├── [email protected]
│   │   │   └── 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
    └── qmldir

36 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
│   │   │   ├── [email protected]
│   │   │   ├── busyindicator-icon.png
│   │   │   ├── button-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── button-icon.png
│   │   │   ├── checkbox-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── checkbox-icon.png
│   │   │   ├── combobox-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── combobox-icon.png
│   │   │   ├── delaybutton-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── delaybutton-icon.png
│   │   │   ├── dial-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── dial-icon.png
│   │   │   ├── frame-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── frame-icon.png
│   │   │   ├── groupbox-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── groupbox-icon.png
│   │   │   ├── itemdelegate-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── itemdelegate-icon.png
│   │   │   ├── label-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── label-icon.png
│   │   │   ├── page-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── page-icon.png
│   │   │   ├── pageindicator-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── pageindicator-icon.png
│   │   │   ├── pane-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── pane-icon.png
│   │   │   ├── progressbar-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── progressbar-icon.png
│   │   │   ├── radiobutton-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── radiobutton-icon.png
│   │   │   ├── rangeslider-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── rangeslider-icon.png
│   │   │   ├── roundbutton-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── roundbutton-icon.png
│   │   │   ├── scrollview-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── scrollview-icon.png
│   │   │   ├── slider-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── slider-icon.png
│   │   │   ├── spinbox-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── spinbox-icon.png
│   │   │   ├── stackview-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── stackview-icon.png
│   │   │   ├── swipeview-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── swipeview-icon.png
│   │   │   ├── switch-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── switch-icon.png
│   │   │   ├── textarea-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── textarea-icon.png
│   │   │   ├── textfield-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── textfield-icon.png
│   │   │   ├── toolbar-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── toolbar-icon.png
│   │   │   ├── toolbutton-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── toolbutton-icon.png
│   │   │   ├── toolseparator-icon16.png
│   │   │   ├── [email protected]
│   │   │   ├── toolseparator-icon.png
│   │   │   ├── tumbler-icon16.png
│   │   │   ├── [email protected]
│   │   │   └── 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
    └── qmldir

20 directories, 456 files

猜你喜欢

转载自blog.csdn.net/ykun089/article/details/120553216