├── .gitattributes ├── D3Dcompiler_47.dll ├── DesignAssistant.exe ├── LICENSE ├── Qt └── labs │ ├── calendar │ ├── DayOfWeekRow.qml │ ├── DayOfWeekRow.qmlc │ ├── MonthGrid.qml │ ├── MonthGrid.qmlc │ ├── WeekNumberColumn.qml │ ├── WeekNumberColumn.qmlc │ ├── plugins.qmltypes │ ├── qmldir │ └── qtlabscalendarplugin.dll │ ├── folderlistmodel │ ├── plugins.qmltypes │ ├── qmldir │ └── qmlfolderlistmodelplugin.dll │ └── settings │ ├── plugins.qmltypes │ ├── qmldir │ └── qmlsettingsplugin.dll ├── Qt5Core.dll ├── Qt5Gui.dll ├── Qt5Multimedia.dll ├── Qt5MultimediaQuick_p.dll ├── Qt5Network.dll ├── Qt5Qml.dll ├── Qt5Quick.dll ├── Qt5QuickControls2.dll ├── Qt5QuickTemplates2.dll ├── Qt5QuickTest.dll ├── Qt5Svg.dll ├── Qt5Test.dll ├── Qt5Widgets.dll ├── Qt5WinExtras.dll ├── QtGraphicalEffects ├── Blend.qml ├── Blend.qmlc ├── BrightnessContrast.qml ├── BrightnessContrast.qmlc ├── ColorOverlay.qml ├── ColorOverlay.qmlc ├── Colorize.qml ├── Colorize.qmlc ├── ConicalGradient.qml ├── ConicalGradient.qmlc ├── Desaturate.qml ├── Desaturate.qmlc ├── DirectionalBlur.qml ├── DirectionalBlur.qmlc ├── Displace.qml ├── Displace.qmlc ├── DropShadow.qml ├── DropShadow.qmlc ├── FastBlur.qml ├── FastBlur.qmlc ├── GammaAdjust.qml ├── GammaAdjust.qmlc ├── GaussianBlur.qml ├── GaussianBlur.qmlc ├── Glow.qml ├── Glow.qmlc ├── HueSaturation.qml ├── HueSaturation.qmlc ├── InnerShadow.qml ├── InnerShadow.qmlc ├── LevelAdjust.qml ├── LevelAdjust.qmlc ├── LinearGradient.qml ├── LinearGradient.qmlc ├── MaskedBlur.qml ├── MaskedBlur.qmlc ├── OpacityMask.qml ├── OpacityMask.qmlc ├── RadialBlur.qml ├── RadialBlur.qmlc ├── RadialGradient.qml ├── RadialGradient.qmlc ├── RectangularGlow.qml ├── RectangularGlow.qmlc ├── RecursiveBlur.qml ├── RecursiveBlur.qmlc ├── ThresholdMask.qml ├── ThresholdMask.qmlc ├── ZoomBlur.qml ├── ZoomBlur.qmlc ├── plugins.qmltypes ├── private │ ├── DropShadowBase.qml │ ├── DropShadowBase.qmlc │ ├── FastGlow.qml │ ├── FastGlow.qmlc │ ├── FastInnerShadow.qml │ ├── FastInnerShadow.qmlc │ ├── FastMaskedBlur.qml │ ├── FastMaskedBlur.qmlc │ ├── GaussianDirectionalBlur.qml │ ├── GaussianDirectionalBlur.qmlc │ ├── GaussianGlow.qml │ ├── GaussianGlow.qmlc │ ├── GaussianInnerShadow.qml │ ├── GaussianInnerShadow.qmlc │ ├── GaussianMaskedBlur.qml │ ├── GaussianMaskedBlur.qmlc │ ├── qmldir │ └── qtgraphicaleffectsprivate.dll ├── qmldir └── qtgraphicaleffectsplugin.dll ├── QtMultimedia ├── Video.qml ├── declarative_multimedia.dll ├── plugins.qmltypes └── qmldir ├── QtQml └── Models.2 │ ├── modelsplugin.dll │ ├── plugins.qmltypes │ └── qmldir ├── QtQuick.2 ├── plugins.qmltypes ├── qmldir └── qtquick2plugin.dll ├── QtQuick ├── Controls.2 │ ├── AbstractButton.qml │ ├── AbstractButton.qmlc │ ├── ApplicationWindow.qml │ ├── ApplicationWindow.qmlc │ ├── BusyIndicator.qml │ ├── BusyIndicator.qmlc │ ├── Button.qml │ ├── Button.qmlc │ ├── ButtonGroup.qml │ ├── ButtonGroup.qmlc │ ├── CheckBox.qml │ ├── CheckBox.qmlc │ ├── CheckDelegate.qml │ ├── CheckDelegate.qmlc │ ├── CheckIndicator.qml │ ├── CheckIndicator.qmlc │ ├── ComboBox.qml │ ├── ComboBox.qmlc │ ├── Container.qml │ ├── Container.qmlc │ ├── Control.qml │ ├── Control.qmlc │ ├── DelayButton.qml │ ├── DelayButton.qmlc │ ├── Dial.qml │ ├── Dial.qmlc │ ├── Dialog.qml │ ├── Dialog.qmlc │ ├── DialogButtonBox.qml │ ├── DialogButtonBox.qmlc │ ├── Drawer.qml │ ├── Drawer.qmlc │ ├── Frame.qml │ ├── Frame.qmlc │ ├── GroupBox.qml │ ├── GroupBox.qmlc │ ├── ItemDelegate.qml │ ├── ItemDelegate.qmlc │ ├── Label.qml │ ├── Label.qmlc │ ├── Material │ │ ├── ApplicationWindow.qml │ │ ├── ApplicationWindow.qmlc │ │ ├── BoxShadow.qml │ │ ├── BoxShadow.qmlc │ │ ├── BusyIndicator.qml │ │ ├── BusyIndicator.qmlc │ │ ├── Button.qml │ │ ├── Button.qmlc │ │ ├── CheckBox.qml │ │ ├── CheckBox.qmlc │ │ ├── CheckDelegate.qml │ │ ├── CheckDelegate.qmlc │ │ ├── CheckIndicator.qml │ │ ├── CheckIndicator.qmlc │ │ ├── ComboBox.qml │ │ ├── ComboBox.qmlc │ │ ├── CursorDelegate.qml │ │ ├── CursorDelegate.qmlc │ │ ├── DelayButton.qml │ │ ├── DelayButton.qmlc │ │ ├── Dial.qml │ │ ├── Dial.qmlc │ │ ├── Dialog.qml │ │ ├── Dialog.qmlc │ │ ├── DialogButtonBox.qml │ │ ├── DialogButtonBox.qmlc │ │ ├── Drawer.qml │ │ ├── Drawer.qmlc │ │ ├── ElevationEffect.qml │ │ ├── ElevationEffect.qmlc │ │ ├── Frame.qml │ │ ├── Frame.qmlc │ │ ├── GroupBox.qml │ │ ├── GroupBox.qmlc │ │ ├── ItemDelegate.qml │ │ ├── ItemDelegate.qmlc │ │ ├── Label.qml │ │ ├── Label.qmlc │ │ ├── Menu.qml │ │ ├── Menu.qmlc │ │ ├── MenuItem.qml │ │ ├── MenuItem.qmlc │ │ ├── MenuSeparator.qml │ │ ├── MenuSeparator.qmlc │ │ ├── Page.qml │ │ ├── Page.qmlc │ │ ├── PageIndicator.qml │ │ ├── PageIndicator.qmlc │ │ ├── Pane.qml │ │ ├── Pane.qmlc │ │ ├── Popup.qml │ │ ├── Popup.qmlc │ │ ├── ProgressBar.qml │ │ ├── ProgressBar.qmlc │ │ ├── RadioButton.qml │ │ ├── RadioButton.qmlc │ │ ├── RadioDelegate.qml │ │ ├── RadioDelegate.qmlc │ │ ├── RadioIndicator.qml │ │ ├── RadioIndicator.qmlc │ │ ├── RangeSlider.qml │ │ ├── RangeSlider.qmlc │ │ ├── RectangularGlow.qml │ │ ├── RectangularGlow.qmlc │ │ ├── RoundButton.qml │ │ ├── RoundButton.qmlc │ │ ├── ScrollBar.qml │ │ ├── ScrollBar.qmlc │ │ ├── ScrollIndicator.qml │ │ ├── ScrollIndicator.qmlc │ │ ├── Slider.qml │ │ ├── Slider.qmlc │ │ ├── SliderHandle.qml │ │ ├── SliderHandle.qmlc │ │ ├── SpinBox.qml │ │ ├── SpinBox.qmlc │ │ ├── StackView.qml │ │ ├── StackView.qmlc │ │ ├── SwipeDelegate.qml │ │ ├── SwipeDelegate.qmlc │ │ ├── SwipeView.qml │ │ ├── SwipeView.qmlc │ │ ├── Switch.qml │ │ ├── Switch.qmlc │ │ ├── SwitchDelegate.qml │ │ ├── SwitchDelegate.qmlc │ │ ├── SwitchIndicator.qml │ │ ├── SwitchIndicator.qmlc │ │ ├── TabBar.qml │ │ ├── TabBar.qmlc │ │ ├── TabButton.qml │ │ ├── TabButton.qmlc │ │ ├── TextArea.qml │ │ ├── TextArea.qmlc │ │ ├── TextField.qml │ │ ├── TextField.qmlc │ │ ├── ToolBar.qml │ │ ├── ToolBar.qmlc │ │ ├── ToolButton.qml │ │ ├── ToolButton.qmlc │ │ ├── ToolSeparator.qml │ │ ├── ToolSeparator.qmlc │ │ ├── ToolTip.qml │ │ ├── ToolTip.qmlc │ │ ├── Tumbler.qml │ │ ├── Tumbler.qmlc │ │ ├── plugins.qmltypes │ │ ├── qmldir │ │ └── qtquickcontrols2materialstyleplugin.dll │ ├── Menu.qml │ ├── Menu.qmlc │ ├── MenuItem.qml │ ├── MenuItem.qmlc │ ├── MenuSeparator.qml │ ├── MenuSeparator.qmlc │ ├── Page.qml │ ├── Page.qmlc │ ├── PageIndicator.qml │ ├── PageIndicator.qmlc │ ├── Pane.qml │ ├── Pane.qmlc │ ├── Popup.qml │ ├── Popup.qmlc │ ├── ProgressBar.qml │ ├── ProgressBar.qmlc │ ├── RadioButton.qml │ ├── RadioButton.qmlc │ ├── RadioDelegate.qml │ ├── RadioDelegate.qmlc │ ├── RadioIndicator.qml │ ├── RadioIndicator.qmlc │ ├── RangeSlider.qml │ ├── RangeSlider.qmlc │ ├── RoundButton.qml │ ├── RoundButton.qmlc │ ├── ScrollBar.qml │ ├── ScrollBar.qmlc │ ├── ScrollIndicator.qml │ ├── ScrollIndicator.qmlc │ ├── ScrollView.qml │ ├── ScrollView.qmlc │ ├── Slider.qml │ ├── Slider.qmlc │ ├── SpinBox.qml │ ├── SpinBox.qmlc │ ├── StackView.qml │ ├── StackView.qmlc │ ├── SwipeDelegate.qml │ ├── SwipeDelegate.qmlc │ ├── SwipeView.qml │ ├── SwipeView.qmlc │ ├── Switch.qml │ ├── Switch.qmlc │ ├── SwitchDelegate.qml │ ├── SwitchDelegate.qmlc │ ├── SwitchIndicator.qml │ ├── SwitchIndicator.qmlc │ ├── TabBar.qml │ ├── TabBar.qmlc │ ├── TabButton.qml │ ├── TabButton.qmlc │ ├── TextArea.qml │ ├── TextArea.qmlc │ ├── TextField.qml │ ├── TextField.qmlc │ ├── ToolBar.qml │ ├── ToolBar.qmlc │ ├── ToolButton.qml │ ├── ToolButton.qmlc │ ├── ToolSeparator.qml │ ├── ToolSeparator.qmlc │ ├── ToolTip.qml │ ├── ToolTip.qmlc │ ├── Tumbler.qml │ ├── Tumbler.qmlc │ ├── Universal │ │ ├── ApplicationWindow.qml │ │ ├── ApplicationWindow.qmlc │ │ ├── BusyIndicator.qml │ │ ├── BusyIndicator.qmlc │ │ ├── Button.qml │ │ ├── Button.qmlc │ │ ├── CheckBox.qml │ │ ├── CheckBox.qmlc │ │ ├── CheckDelegate.qml │ │ ├── CheckDelegate.qmlc │ │ ├── CheckIndicator.qml │ │ ├── CheckIndicator.qmlc │ │ ├── ComboBox.qml │ │ ├── ComboBox.qmlc │ │ ├── DelayButton.qml │ │ ├── DelayButton.qmlc │ │ ├── Dial.qml │ │ ├── Dial.qmlc │ │ ├── Dialog.qml │ │ ├── Dialog.qmlc │ │ ├── DialogButtonBox.qml │ │ ├── DialogButtonBox.qmlc │ │ ├── Drawer.qml │ │ ├── Drawer.qmlc │ │ ├── Frame.qml │ │ ├── Frame.qmlc │ │ ├── GroupBox.qml │ │ ├── GroupBox.qmlc │ │ ├── ItemDelegate.qml │ │ ├── ItemDelegate.qmlc │ │ ├── Label.qml │ │ ├── Label.qmlc │ │ ├── Menu.qml │ │ ├── Menu.qmlc │ │ ├── MenuItem.qml │ │ ├── MenuItem.qmlc │ │ ├── MenuSeparator.qml │ │ ├── MenuSeparator.qmlc │ │ ├── Page.qml │ │ ├── Page.qmlc │ │ ├── PageIndicator.qml │ │ ├── PageIndicator.qmlc │ │ ├── Pane.qml │ │ ├── Pane.qmlc │ │ ├── Popup.qml │ │ ├── Popup.qmlc │ │ ├── ProgressBar.qml │ │ ├── ProgressBar.qmlc │ │ ├── RadioButton.qml │ │ ├── RadioButton.qmlc │ │ ├── RadioDelegate.qml │ │ ├── RadioDelegate.qmlc │ │ ├── RadioIndicator.qml │ │ ├── RadioIndicator.qmlc │ │ ├── RangeSlider.qml │ │ ├── RangeSlider.qmlc │ │ ├── RoundButton.qml │ │ ├── RoundButton.qmlc │ │ ├── ScrollBar.qml │ │ ├── ScrollBar.qmlc │ │ ├── ScrollIndicator.qml │ │ ├── ScrollIndicator.qmlc │ │ ├── Slider.qml │ │ ├── Slider.qmlc │ │ ├── SpinBox.qml │ │ ├── SpinBox.qmlc │ │ ├── StackView.qml │ │ ├── StackView.qmlc │ │ ├── SwipeDelegate.qml │ │ ├── SwipeDelegate.qmlc │ │ ├── Switch.qml │ │ ├── Switch.qmlc │ │ ├── SwitchDelegate.qml │ │ ├── SwitchDelegate.qmlc │ │ ├── SwitchIndicator.qml │ │ ├── SwitchIndicator.qmlc │ │ ├── TabBar.qml │ │ ├── TabBar.qmlc │ │ ├── TabButton.qml │ │ ├── TabButton.qmlc │ │ ├── TextArea.qml │ │ ├── TextArea.qmlc │ │ ├── TextField.qml │ │ ├── TextField.qmlc │ │ ├── ToolBar.qml │ │ ├── ToolBar.qmlc │ │ ├── ToolButton.qml │ │ ├── ToolButton.qmlc │ │ ├── ToolSeparator.qml │ │ ├── ToolSeparator.qmlc │ │ ├── ToolTip.qml │ │ ├── ToolTip.qmlc │ │ ├── Tumbler.qml │ │ ├── Tumbler.qmlc │ │ ├── plugins.qmltypes │ │ ├── qmldir │ │ └── qtquickcontrols2universalstyleplugin.dll │ ├── plugins.qmltypes │ ├── qmldir │ └── qtquickcontrols2plugin.dll ├── Controls │ ├── ApplicationWindow.qml │ ├── ApplicationWindow.qmlc │ ├── BusyIndicator.qml │ ├── BusyIndicator.qmlc │ ├── Button.qml │ ├── Button.qmlc │ ├── Calendar.qml │ ├── Calendar.qmlc │ ├── CheckBox.qml │ ├── CheckBox.qmlc │ ├── ComboBox.qml │ ├── ComboBox.qmlc │ ├── GroupBox.qml │ ├── GroupBox.qmlc │ ├── Label.qml │ ├── Label.qmlc │ ├── Menu.qml │ ├── Menu.qmlc │ ├── MenuBar.qml │ ├── MenuBar.qmlc │ ├── Private │ │ ├── AbstractCheckable.qml │ │ ├── AbstractCheckable.qmlc │ │ ├── BasicButton.qml │ │ ├── BasicButton.qmlc │ │ ├── BasicTableView.qml │ │ ├── BasicTableView.qmlc │ │ ├── CalendarHeaderModel.qml │ │ ├── CalendarHeaderModel.qmlc │ │ ├── CalendarUtils.js │ │ ├── CalendarUtils.jsc │ │ ├── ColumnMenuContent.qml │ │ ├── ColumnMenuContent.qmlc │ │ ├── ContentItem.qml │ │ ├── ContentItem.qmlc │ │ ├── Control.qml │ │ ├── Control.qmlc │ │ ├── EditMenu.qml │ │ ├── EditMenu.qmlc │ │ ├── EditMenu_base.qml │ │ ├── EditMenu_base.qmlc │ │ ├── FastGlow.qml │ │ ├── FastGlow.qmlc │ │ ├── FocusFrame.qml │ │ ├── FocusFrame.qmlc │ │ ├── HoverButton.qml │ │ ├── HoverButton.qmlc │ │ ├── MenuContentItem.qml │ │ ├── MenuContentItem.qmlc │ │ ├── MenuContentScroller.qml │ │ ├── MenuContentScroller.qmlc │ │ ├── MenuItemSubControls.qml │ │ ├── MenuItemSubControls.qmlc │ │ ├── ModalPopupBehavior.qml │ │ ├── ModalPopupBehavior.qmlc │ │ ├── ScrollBar.qml │ │ ├── ScrollBar.qmlc │ │ ├── ScrollViewHelper.qml │ │ ├── ScrollViewHelper.qmlc │ │ ├── SourceProxy.qml │ │ ├── SourceProxy.qmlc │ │ ├── StackView.js │ │ ├── StackView.jsc │ │ ├── StackViewSlideDelegate.qml │ │ ├── StackViewSlideDelegate.qmlc │ │ ├── Style.qml │ │ ├── Style.qmlc │ │ ├── SystemPaletteSingleton.qml │ │ ├── SystemPaletteSingleton.qmlc │ │ ├── TabBar.qml │ │ ├── TabBar.qmlc │ │ ├── TableViewItemDelegateLoader.qml │ │ ├── TableViewItemDelegateLoader.qmlc │ │ ├── TableViewSelection.qml │ │ ├── TableViewSelection.qmlc │ │ ├── TextHandle.qml │ │ ├── TextHandle.qmlc │ │ ├── TextInputWithHandles.qml │ │ ├── TextInputWithHandles.qmlc │ │ ├── TextSingleton.qml │ │ ├── TextSingleton.qmlc │ │ ├── ToolMenuButton.qml │ │ ├── ToolMenuButton.qmlc │ │ ├── TreeViewItemDelegateLoader.qml │ │ ├── TreeViewItemDelegateLoader.qmlc │ │ ├── qmldir │ │ ├── style.js │ │ └── style.jsc │ ├── ProgressBar.qml │ ├── ProgressBar.qmlc │ ├── RadioButton.qml │ ├── RadioButton.qmlc │ ├── ScrollView.qml │ ├── ScrollView.qmlc │ ├── Slider.qml │ ├── Slider.qmlc │ ├── SpinBox.qml │ ├── SpinBox.qmlc │ ├── SplitView.qml │ ├── SplitView.qmlc │ ├── StackView.qml │ ├── StackView.qmlc │ ├── StackViewDelegate.qml │ ├── StackViewDelegate.qmlc │ ├── StackViewTransition.qml │ ├── StackViewTransition.qmlc │ ├── StatusBar.qml │ ├── StatusBar.qmlc │ ├── Styles │ │ ├── Base │ │ │ ├── ApplicationWindowStyle.qml │ │ │ ├── ApplicationWindowStyle.qmlc │ │ │ ├── BasicTableViewStyle.qml │ │ │ ├── BasicTableViewStyle.qmlc │ │ │ ├── BusyIndicatorStyle.qml │ │ │ ├── BusyIndicatorStyle.qmlc │ │ │ ├── ButtonStyle.qml │ │ │ ├── ButtonStyle.qmlc │ │ │ ├── CalendarStyle.qml │ │ │ ├── CalendarStyle.qmlc │ │ │ ├── CheckBoxStyle.qml │ │ │ ├── CheckBoxStyle.qmlc │ │ │ ├── CircularButtonStyle.qml │ │ │ ├── CircularButtonStyle.qmlc │ │ │ ├── CircularGaugeStyle.qml │ │ │ ├── CircularGaugeStyle.qmlc │ │ │ ├── CircularTickmarkLabelStyle.qml │ │ │ ├── CircularTickmarkLabelStyle.qmlc │ │ │ ├── ComboBoxStyle.qml │ │ │ ├── ComboBoxStyle.qmlc │ │ │ ├── CommonStyleHelper.qml │ │ │ ├── CommonStyleHelper.qmlc │ │ │ ├── DelayButtonStyle.qml │ │ │ ├── DelayButtonStyle.qmlc │ │ │ ├── DialStyle.qml │ │ │ ├── DialStyle.qmlc │ │ │ ├── FocusFrameStyle.qml │ │ │ ├── FocusFrameStyle.qmlc │ │ │ ├── GaugeStyle.qml │ │ │ ├── GaugeStyle.qmlc │ │ │ ├── GroupBoxStyle.qml │ │ │ ├── GroupBoxStyle.qmlc │ │ │ ├── HandleStyle.qml │ │ │ ├── HandleStyle.qmlc │ │ │ ├── HandleStyleHelper.qml │ │ │ ├── HandleStyleHelper.qmlc │ │ │ ├── MenuBarStyle.qml │ │ │ ├── MenuBarStyle.qmlc │ │ │ ├── MenuStyle.qml │ │ │ ├── MenuStyle.qmlc │ │ │ ├── PieMenuStyle.qml │ │ │ ├── PieMenuStyle.qmlc │ │ │ ├── ProgressBarStyle.qml │ │ │ ├── ProgressBarStyle.qmlc │ │ │ ├── RadioButtonStyle.qml │ │ │ ├── RadioButtonStyle.qmlc │ │ │ ├── ScrollViewStyle.qml │ │ │ ├── ScrollViewStyle.qmlc │ │ │ ├── SliderStyle.qml │ │ │ ├── SliderStyle.qmlc │ │ │ ├── SpinBoxStyle.qml │ │ │ ├── SpinBoxStyle.qmlc │ │ │ ├── StatusBarStyle.qml │ │ │ ├── StatusBarStyle.qmlc │ │ │ ├── StatusIndicatorStyle.qml │ │ │ ├── StatusIndicatorStyle.qmlc │ │ │ ├── SwitchStyle.qml │ │ │ ├── SwitchStyle.qmlc │ │ │ ├── TabViewStyle.qml │ │ │ ├── TabViewStyle.qmlc │ │ │ ├── TableViewStyle.qml │ │ │ ├── TableViewStyle.qmlc │ │ │ ├── TextAreaStyle.qml │ │ │ ├── TextAreaStyle.qmlc │ │ │ ├── TextFieldStyle.qml │ │ │ ├── TextFieldStyle.qmlc │ │ │ ├── ToggleButtonStyle.qml │ │ │ ├── ToggleButtonStyle.qmlc │ │ │ ├── ToolBarStyle.qml │ │ │ ├── ToolBarStyle.qmlc │ │ │ ├── ToolButtonStyle.qml │ │ │ ├── ToolButtonStyle.qmlc │ │ │ ├── TreeViewStyle.qml │ │ │ ├── TreeViewStyle.qmlc │ │ │ ├── TumblerStyle.qml │ │ │ ├── TumblerStyle.qmlc │ │ │ └── images │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-down@2x.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-left@2x.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-right@2x.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── arrow-up@2x.png │ │ │ │ ├── button.png │ │ │ │ ├── button_down.png │ │ │ │ ├── check.png │ │ │ │ ├── check@2x.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 │ │ ├── Desktop │ │ │ ├── ApplicationWindowStyle.qml │ │ │ ├── ApplicationWindowStyle.qmlc │ │ │ ├── BusyIndicatorStyle.qml │ │ │ ├── BusyIndicatorStyle.qmlc │ │ │ ├── ButtonStyle.qml │ │ │ ├── ButtonStyle.qmlc │ │ │ ├── CalendarStyle.qml │ │ │ ├── CalendarStyle.qmlc │ │ │ ├── CheckBoxStyle.qml │ │ │ ├── CheckBoxStyle.qmlc │ │ │ ├── ComboBoxStyle.qml │ │ │ ├── ComboBoxStyle.qmlc │ │ │ ├── FocusFrameStyle.qml │ │ │ ├── FocusFrameStyle.qmlc │ │ │ ├── GroupBoxStyle.qml │ │ │ ├── GroupBoxStyle.qmlc │ │ │ ├── MenuBarStyle.qml │ │ │ ├── MenuBarStyle.qmlc │ │ │ ├── MenuStyle.qml │ │ │ ├── MenuStyle.qmlc │ │ │ ├── ProgressBarStyle.qml │ │ │ ├── ProgressBarStyle.qmlc │ │ │ ├── RadioButtonStyle.qml │ │ │ ├── RadioButtonStyle.qmlc │ │ │ ├── RowItemSingleton.qml │ │ │ ├── RowItemSingleton.qmlc │ │ │ ├── ScrollViewStyle.qml │ │ │ ├── ScrollViewStyle.qmlc │ │ │ ├── SliderStyle.qml │ │ │ ├── SliderStyle.qmlc │ │ │ ├── SpinBoxStyle.qml │ │ │ ├── SpinBoxStyle.qmlc │ │ │ ├── StatusBarStyle.qml │ │ │ ├── StatusBarStyle.qmlc │ │ │ ├── SwitchStyle.qml │ │ │ ├── SwitchStyle.qmlc │ │ │ ├── TabViewStyle.qml │ │ │ ├── TabViewStyle.qmlc │ │ │ ├── TableViewStyle.qml │ │ │ ├── TableViewStyle.qmlc │ │ │ ├── TextAreaStyle.qml │ │ │ ├── TextAreaStyle.qmlc │ │ │ ├── TextFieldStyle.qml │ │ │ ├── TextFieldStyle.qmlc │ │ │ ├── ToolBarStyle.qml │ │ │ ├── ToolBarStyle.qmlc │ │ │ ├── ToolButtonStyle.qml │ │ │ ├── ToolButtonStyle.qmlc │ │ │ ├── TreeViewStyle.qml │ │ │ ├── TreeViewStyle.qmlc │ │ │ └── qmldir │ │ ├── Flat │ │ │ ├── qmldir │ │ │ └── qtquickextrasflatplugin.dll │ │ └── qmldir │ ├── Switch.qml │ ├── Switch.qmlc │ ├── Tab.qml │ ├── Tab.qmlc │ ├── TabView.qml │ ├── TabView.qmlc │ ├── TableView.qml │ ├── TableView.qmlc │ ├── TableViewColumn.qml │ ├── TableViewColumn.qmlc │ ├── TextArea.qml │ ├── TextArea.qmlc │ ├── TextField.qml │ ├── TextField.qmlc │ ├── ToolBar.qml │ ├── ToolBar.qmlc │ ├── ToolButton.qml │ ├── ToolButton.qmlc │ ├── TreeView.qml │ ├── TreeView.qmlc │ ├── plugins.qmltypes │ ├── qmldir │ └── qtquickcontrolsplugin.dll ├── Dialogs │ ├── DefaultColorDialog.qml │ ├── DefaultColorDialog.qmlc │ ├── DefaultDialogWrapper.qml │ ├── DefaultDialogWrapper.qmlc │ ├── DefaultFileDialog.qml │ ├── DefaultFileDialog.qmlc │ ├── DefaultFontDialog.qml │ ├── DefaultFontDialog.qmlc │ ├── DefaultMessageDialog.qml │ ├── DefaultMessageDialog.qmlc │ ├── Private │ │ ├── dialogsprivateplugin.dll │ │ ├── plugins.qmltypes │ │ └── qmldir │ ├── WidgetColorDialog.qml │ ├── WidgetColorDialog.qmlc │ ├── WidgetFileDialog.qml │ ├── WidgetFileDialog.qmlc │ ├── WidgetFontDialog.qml │ ├── WidgetFontDialog.qmlc │ ├── WidgetMessageDialog.qml │ ├── WidgetMessageDialog.qmlc │ ├── dialogplugin.dll │ ├── 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 │ ├── plugins.qmltypes │ ├── qml │ │ ├── ColorSlider.qml │ │ ├── ColorSlider.qmlc │ │ ├── DefaultWindowDecoration.qml │ │ ├── DefaultWindowDecoration.qmlc │ │ ├── IconButtonStyle.qml │ │ ├── IconButtonStyle.qmlc │ │ ├── IconGlyph.qml │ │ ├── IconGlyph.qmlc │ │ ├── icons.ttf │ │ └── qmldir │ └── qmldir ├── Extras │ ├── CircularGauge.qml │ ├── CircularGauge.qmlc │ ├── DelayButton.qml │ ├── DelayButton.qmlc │ ├── Dial.qml │ ├── Dial.qmlc │ ├── Gauge.qml │ ├── Gauge.qmlc │ ├── PieMenu.qml │ ├── PieMenu.qmlc │ ├── Private │ │ ├── CircularButton.qml │ │ ├── CircularButton.qmlc │ │ ├── CircularButtonStyleHelper.qml │ │ ├── CircularButtonStyleHelper.qmlc │ │ ├── CircularTickmarkLabel.qml │ │ ├── CircularTickmarkLabel.qmlc │ │ ├── Handle.qml │ │ ├── Handle.qmlc │ │ ├── PieMenuIcon.qml │ │ ├── PieMenuIcon.qmlc │ │ ├── TextSingleton.qml │ │ ├── TextSingleton.qmlc │ │ └── qmldir │ ├── StatusIndicator.qml │ ├── StatusIndicator.qmlc │ ├── ToggleButton.qml │ ├── ToggleButton.qmlc │ ├── Tumbler.qml │ ├── Tumbler.qmlc │ ├── TumblerColumn.qml │ ├── TumblerColumn.qmlc │ ├── plugins.qmltypes │ ├── qmldir │ └── qtquickextrasplugin.dll ├── Layouts │ ├── plugins.qmltypes │ ├── qmldir │ └── qquicklayoutsplugin.dll ├── PrivateWidgets │ ├── plugins.qmltypes │ ├── qmldir │ └── widgetsplugin.dll ├── Templates.2 │ ├── plugins.qmltypes │ ├── qmldir │ └── qtquicktemplates2plugin.dll └── Window.2 │ ├── plugins.qmltypes │ ├── qmldir │ └── windowplugin.dll ├── QtTest ├── SignalSpy.qml ├── TestCase.qml ├── plugins.qmltypes ├── qmldir ├── qmltestplugin.dll └── testlogger.js ├── QtWinExtras ├── JumpListDestination.qml ├── JumpListLink.qml ├── JumpListSeparator.qml ├── plugins.qmltypes ├── qml_winextras.dll └── qmldir ├── README.md ├── audio └── qtaudio_windows.dll ├── bearer └── qgenericbearer.dll ├── iconengines └── qsvgicon.dll ├── imageformats ├── qgif.dll ├── qicns.dll ├── qico.dll ├── qjpeg.dll ├── qsvg.dll ├── qtga.dll ├── qtiff.dll ├── qwbmp.dll └── qwebp.dll ├── libEGL.dll ├── libGLESV2.dll ├── libgcc_s_dw2-1.dll ├── libstdc++-6.dll ├── libwinpthread-1.dll ├── mediaservice ├── dsengine.dll └── qtmedia_audioengine.dll ├── opengl32sw.dll ├── platforminputcontexts └── qtvirtualkeyboardplugin.dll ├── platforms └── qwindows.dll ├── playlistformats └── qtmultimedia_m3u.dll ├── qmltooling ├── qmldbg_debugger.dll ├── qmldbg_inspector.dll ├── qmldbg_local.dll ├── qmldbg_messages.dll ├── qmldbg_native.dll ├── qmldbg_nativedebugger.dll ├── qmldbg_profiler.dll ├── qmldbg_quickprofiler.dll ├── qmldbg_server.dll └── qmldbg_tcp.dll └── translations ├── qt_ar.qm ├── qt_bg.qm ├── qt_ca.qm ├── qt_cs.qm ├── qt_da.qm ├── qt_de.qm ├── qt_en.qm ├── qt_es.qm ├── qt_fi.qm ├── qt_fr.qm ├── qt_gd.qm ├── qt_he.qm ├── qt_hu.qm ├── qt_it.qm ├── qt_ja.qm ├── qt_ko.qm ├── qt_lv.qm ├── qt_pl.qm ├── qt_ru.qm ├── qt_sk.qm └── qt_uk.qm /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /D3Dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/D3Dcompiler_47.dll -------------------------------------------------------------------------------- /DesignAssistant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/DesignAssistant.exe -------------------------------------------------------------------------------- /Qt/labs/calendar/DayOfWeekRow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt/labs/calendar/DayOfWeekRow.qmlc -------------------------------------------------------------------------------- /Qt/labs/calendar/MonthGrid.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt/labs/calendar/MonthGrid.qmlc -------------------------------------------------------------------------------- /Qt/labs/calendar/WeekNumberColumn.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt/labs/calendar/WeekNumberColumn.qmlc -------------------------------------------------------------------------------- /Qt/labs/calendar/qmldir: -------------------------------------------------------------------------------- 1 | module Qt.labs.calendar 2 | plugin qtlabscalendarplugin 3 | classname QtLabsCalendarPlugin 4 | DayOfWeekRow 1.0 DayOfWeekRow.qml 5 | MonthGrid 1.0 MonthGrid.qml 6 | WeekNumberColumn 1.0 WeekNumberColumn.qml 7 | -------------------------------------------------------------------------------- /Qt/labs/calendar/qtlabscalendarplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt/labs/calendar/qtlabscalendarplugin.dll -------------------------------------------------------------------------------- /Qt/labs/folderlistmodel/qmldir: -------------------------------------------------------------------------------- 1 | module Qt.labs.folderlistmodel 2 | plugin qmlfolderlistmodelplugin 3 | classname QmlFolderListModelPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /Qt/labs/folderlistmodel/qmlfolderlistmodelplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt/labs/folderlistmodel/qmlfolderlistmodelplugin.dll -------------------------------------------------------------------------------- /Qt/labs/settings/plugins.qmltypes: -------------------------------------------------------------------------------- 1 | import QtQuick.tooling 1.2 2 | 3 | // This file describes the plugin-supplied types contained in the library. 4 | // It is used for QML tooling purposes only. 5 | // 6 | // This file was auto-generated by: 7 | // 'qmlplugindump -nonrelocatable -noforceqtquick Qt.labs.settings 1.0' 8 | 9 | Module { 10 | dependencies: [] 11 | Component { 12 | name: "QQmlSettings" 13 | prototype: "QObject" 14 | exports: ["Qt.labs.settings/Settings 1.0"] 15 | exportMetaObjectRevisions: [0] 16 | Property { name: "category"; type: "string" } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Qt/labs/settings/qmldir: -------------------------------------------------------------------------------- 1 | module Qt.labs.settings 2 | plugin qmlsettingsplugin 3 | classname QmlSettingsPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /Qt/labs/settings/qmlsettingsplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt/labs/settings/qmlsettingsplugin.dll -------------------------------------------------------------------------------- /Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5Core.dll -------------------------------------------------------------------------------- /Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5Gui.dll -------------------------------------------------------------------------------- /Qt5Multimedia.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5Multimedia.dll -------------------------------------------------------------------------------- /Qt5MultimediaQuick_p.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5MultimediaQuick_p.dll -------------------------------------------------------------------------------- /Qt5Network.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5Network.dll -------------------------------------------------------------------------------- /Qt5Qml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5Qml.dll -------------------------------------------------------------------------------- /Qt5Quick.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5Quick.dll -------------------------------------------------------------------------------- /Qt5QuickControls2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5QuickControls2.dll -------------------------------------------------------------------------------- /Qt5QuickTemplates2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5QuickTemplates2.dll -------------------------------------------------------------------------------- /Qt5QuickTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5QuickTest.dll -------------------------------------------------------------------------------- /Qt5Svg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5Svg.dll -------------------------------------------------------------------------------- /Qt5Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5Test.dll -------------------------------------------------------------------------------- /Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5Widgets.dll -------------------------------------------------------------------------------- /Qt5WinExtras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/Qt5WinExtras.dll -------------------------------------------------------------------------------- /QtGraphicalEffects/Blend.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/Blend.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/BrightnessContrast.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/BrightnessContrast.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/ColorOverlay.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/ColorOverlay.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/Colorize.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/Colorize.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/ConicalGradient.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/ConicalGradient.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/Desaturate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/Desaturate.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/DirectionalBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/DirectionalBlur.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/Displace.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/Displace.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/DropShadow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/DropShadow.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/FastBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/FastBlur.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/GammaAdjust.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/GammaAdjust.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/GaussianBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/GaussianBlur.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/Glow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/Glow.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/HueSaturation.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/HueSaturation.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/InnerShadow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/InnerShadow.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/LevelAdjust.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/LevelAdjust.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/LinearGradient.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/LinearGradient.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/MaskedBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/MaskedBlur.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/OpacityMask.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/OpacityMask.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/RadialBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/RadialBlur.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/RadialGradient.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/RadialGradient.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/RectangularGlow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/RectangularGlow.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/RecursiveBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/RecursiveBlur.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/ThresholdMask.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/ThresholdMask.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/ZoomBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/ZoomBlur.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/plugins.qmltypes: -------------------------------------------------------------------------------- 1 | import QtQuick.tooling 1.2 2 | 3 | // This file describes the plugin-supplied types contained in the library. 4 | // It is used for QML tooling purposes only. 5 | // 6 | // This file was auto-generated by: 7 | // 'qmlplugindump -nonrelocatable QtGraphicalEffects 1.0' 8 | 9 | Module { 10 | dependencies: ["QtQuick 2.0", "QtQuick.Window 2.1"] 11 | } 12 | -------------------------------------------------------------------------------- /QtGraphicalEffects/private/DropShadowBase.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/private/DropShadowBase.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/private/FastGlow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/private/FastGlow.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/private/FastInnerShadow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/private/FastInnerShadow.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/private/FastMaskedBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/private/FastMaskedBlur.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/private/GaussianDirectionalBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/private/GaussianDirectionalBlur.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/private/GaussianGlow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/private/GaussianGlow.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/private/GaussianInnerShadow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/private/GaussianInnerShadow.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/private/GaussianMaskedBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/private/GaussianMaskedBlur.qmlc -------------------------------------------------------------------------------- /QtGraphicalEffects/private/qmldir: -------------------------------------------------------------------------------- 1 | module QtGraphicalEffects.private 2 | plugin qtgraphicaleffectsprivate 3 | classname QtGraphicalEffectsPrivatePlugin 4 | FastGlow 1.0 FastGlow.qml 5 | FastInnerShadow 1.0 FastInnerShadow.qml 6 | FastMaskedBlur 1.0 FastMaskedBlur.qml 7 | GaussianDirectionalBlur 1.0 GaussianDirectionalBlur.qml 8 | GaussianGlow 1.0 GaussianGlow.qml 9 | GaussianInnerShadow 1.0 GaussianInnerShadow.qml 10 | GaussianMaskedBlur 1.0 GaussianMaskedBlur.qml 11 | DropShadowBase 1.0 DropShadowBase.qml 12 | -------------------------------------------------------------------------------- /QtGraphicalEffects/private/qtgraphicaleffectsprivate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/private/qtgraphicaleffectsprivate.dll -------------------------------------------------------------------------------- /QtGraphicalEffects/qmldir: -------------------------------------------------------------------------------- 1 | module QtGraphicalEffects 2 | plugin qtgraphicaleffectsplugin 3 | classname QtGraphicalEffectsPlugin 4 | Blend 1.0 Blend.qml 5 | BrightnessContrast 1.0 BrightnessContrast.qml 6 | Colorize 1.0 Colorize.qml 7 | ColorOverlay 1.0 ColorOverlay.qml 8 | ConicalGradient 1.0 ConicalGradient.qml 9 | Desaturate 1.0 Desaturate.qml 10 | DirectionalBlur 1.0 DirectionalBlur.qml 11 | Displace 1.0 Displace.qml 12 | DropShadow 1.0 DropShadow.qml 13 | FastBlur 1.0 FastBlur.qml 14 | GammaAdjust 1.0 GammaAdjust.qml 15 | GaussianBlur 1.0 GaussianBlur.qml 16 | Glow 1.0 Glow.qml 17 | HueSaturation 1.0 HueSaturation.qml 18 | InnerShadow 1.0 InnerShadow.qml 19 | LevelAdjust 1.0 LevelAdjust.qml 20 | LinearGradient 1.0 LinearGradient.qml 21 | MaskedBlur 1.0 MaskedBlur.qml 22 | OpacityMask 1.0 OpacityMask.qml 23 | RadialBlur 1.0 RadialBlur.qml 24 | RadialGradient 1.0 RadialGradient.qml 25 | RecursiveBlur 1.0 RecursiveBlur.qml 26 | RectangularGlow 1.0 RectangularGlow.qml 27 | ThresholdMask 1.0 ThresholdMask.qml 28 | ZoomBlur 1.0 ZoomBlur.qml 29 | designersupported 30 | depends QtGraphicalEffects/private 1.0 31 | depends QtQuick.Window 2.1 32 | -------------------------------------------------------------------------------- /QtGraphicalEffects/qtgraphicaleffectsplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtGraphicalEffects/qtgraphicaleffectsplugin.dll -------------------------------------------------------------------------------- /QtMultimedia/declarative_multimedia.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtMultimedia/declarative_multimedia.dll -------------------------------------------------------------------------------- /QtMultimedia/qmldir: -------------------------------------------------------------------------------- 1 | module QtMultimedia 2 | plugin declarative_multimedia 3 | classname QMultimediaDeclarativeModule 4 | typeinfo plugins.qmltypes 5 | Video 5.0 Video.qml 6 | -------------------------------------------------------------------------------- /QtQml/Models.2/modelsplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQml/Models.2/modelsplugin.dll -------------------------------------------------------------------------------- /QtQml/Models.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQml.Models 2 | plugin modelsplugin 3 | classname QtQmlModelsPlugin 4 | designersupported 5 | -------------------------------------------------------------------------------- /QtQuick.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick 2 | plugin qtquick2plugin 3 | classname QtQuick2Plugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | -------------------------------------------------------------------------------- /QtQuick.2/qtquick2plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick.2/qtquick2plugin.dll -------------------------------------------------------------------------------- /QtQuick/Controls.2/AbstractButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/AbstractButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ApplicationWindow.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2017 The Qt Company Ltd. 4 | ** Contact: http://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL3$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see http://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at http://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPLv3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or later as published by the Free 28 | ** Software Foundation and appearing in the file LICENSE.GPL included in 29 | ** the packaging of this file. Please review the following information to 30 | ** ensure the GNU General Public License version 2.0 requirements will be 31 | ** met: http://www.gnu.org/licenses/gpl-2.0.html. 32 | ** 33 | ** $QT_END_LICENSE$ 34 | ** 35 | ****************************************************************************/ 36 | 37 | import QtQuick 2.9 38 | import QtQuick.Window 2.3 39 | import QtQuick.Controls 2.2 40 | import QtQuick.Controls.impl 2.2 41 | import QtQuick.Templates 2.2 as T 42 | 43 | T.ApplicationWindow { 44 | id: window 45 | 46 | color: Default.backgroundColor 47 | 48 | overlay.modal: Rectangle { 49 | color: Default.overlayModalColor 50 | } 51 | 52 | overlay.modeless: Rectangle { 53 | color: Default.overlayDimColor 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /QtQuick/Controls.2/ApplicationWindow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ApplicationWindow.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/BusyIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/BusyIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Button.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Button.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ButtonGroup.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2017 The Qt Company Ltd. 4 | ** Contact: http://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL3$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see http://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at http://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPLv3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or later as published by the Free 28 | ** Software Foundation and appearing in the file LICENSE.GPL included in 29 | ** the packaging of this file. Please review the following information to 30 | ** ensure the GNU General Public License version 2.0 requirements will be 31 | ** met: http://www.gnu.org/licenses/gpl-2.0.html. 32 | ** 33 | ** $QT_END_LICENSE$ 34 | ** 35 | ****************************************************************************/ 36 | 37 | import QtQuick 2.9 38 | import QtQuick.Templates 2.2 as T 39 | 40 | T.ButtonGroup { } 41 | -------------------------------------------------------------------------------- /QtQuick/Controls.2/ButtonGroup.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ButtonGroup.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/CheckBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/CheckBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/CheckDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/CheckDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/CheckIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/CheckIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ComboBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ComboBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Container.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2017 The Qt Company Ltd. 4 | ** Contact: http://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL3$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see http://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at http://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPLv3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or later as published by the Free 28 | ** Software Foundation and appearing in the file LICENSE.GPL included in 29 | ** the packaging of this file. Please review the following information to 30 | ** ensure the GNU General Public License version 2.0 requirements will be 31 | ** met: http://www.gnu.org/licenses/gpl-2.0.html. 32 | ** 33 | ** $QT_END_LICENSE$ 34 | ** 35 | ****************************************************************************/ 36 | 37 | import QtQuick 2.9 38 | import QtQuick.Templates 2.2 as T 39 | 40 | T.Container { 41 | id: control 42 | 43 | implicitWidth: Math.max(background ? background.implicitWidth : 0, 44 | (contentItem ? contentItem.implicitWidth : 0) + leftPadding + rightPadding) 45 | implicitHeight: Math.max(background ? background.implicitHeight : 0, 46 | (contentItem ? contentItem.implicitHeight : 0) + topPadding + bottomPadding) 47 | } 48 | -------------------------------------------------------------------------------- /QtQuick/Controls.2/Container.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Container.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Control.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2017 The Qt Company Ltd. 4 | ** Contact: http://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL3$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see http://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at http://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPLv3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or later as published by the Free 28 | ** Software Foundation and appearing in the file LICENSE.GPL included in 29 | ** the packaging of this file. Please review the following information to 30 | ** ensure the GNU General Public License version 2.0 requirements will be 31 | ** met: http://www.gnu.org/licenses/gpl-2.0.html. 32 | ** 33 | ** $QT_END_LICENSE$ 34 | ** 35 | ****************************************************************************/ 36 | 37 | import QtQuick 2.9 38 | import QtQuick.Templates 2.2 as T 39 | 40 | T.Control { 41 | id: control 42 | 43 | implicitWidth: Math.max(background ? background.implicitWidth : 0, 44 | (contentItem ? contentItem.implicitWidth : 0) + leftPadding + rightPadding) 45 | implicitHeight: Math.max(background ? background.implicitHeight : 0, 46 | (contentItem ? contentItem.implicitHeight : 0) + topPadding + bottomPadding) 47 | } 48 | -------------------------------------------------------------------------------- /QtQuick/Controls.2/Control.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Control.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/DelayButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/DelayButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Dial.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Dial.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Dialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Dialog.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/DialogButtonBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/DialogButtonBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Drawer.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Drawer.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Frame.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Frame.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/GroupBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/GroupBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ItemDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ItemDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Label.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2017 The Qt Company Ltd. 4 | ** Contact: http://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL3$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see http://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at http://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPLv3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or later as published by the Free 28 | ** Software Foundation and appearing in the file LICENSE.GPL included in 29 | ** the packaging of this file. Please review the following information to 30 | ** ensure the GNU General Public License version 2.0 requirements will be 31 | ** met: http://www.gnu.org/licenses/gpl-2.0.html. 32 | ** 33 | ** $QT_END_LICENSE$ 34 | ** 35 | ****************************************************************************/ 36 | 37 | import QtQuick 2.9 38 | import QtQuick.Controls 2.2 39 | import QtQuick.Controls.impl 2.2 40 | import QtQuick.Templates 2.2 as T 41 | 42 | T.Label { 43 | id: control 44 | 45 | color: Default.textDarkColor 46 | linkColor: Default.textLinkColor 47 | } 48 | -------------------------------------------------------------------------------- /QtQuick/Controls.2/Label.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Label.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/ApplicationWindow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/ApplicationWindow.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/BoxShadow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/BoxShadow.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/BusyIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/BusyIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Button.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Button.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/CheckBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/CheckBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/CheckDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/CheckDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/CheckIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/CheckIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/ComboBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/ComboBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/CursorDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/CursorDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/DelayButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/DelayButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Dial.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Dial.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Dialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Dialog.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/DialogButtonBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/DialogButtonBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Drawer.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Drawer.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/ElevationEffect.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/ElevationEffect.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Frame.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Frame.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/GroupBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/GroupBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/ItemDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/ItemDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Label.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2017 The Qt Company Ltd. 4 | ** Contact: http://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL3$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see http://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at http://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPLv3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or later as published by the Free 28 | ** Software Foundation and appearing in the file LICENSE.GPL included in 29 | ** the packaging of this file. Please review the following information to 30 | ** ensure the GNU General Public License version 2.0 requirements will be 31 | ** met: http://www.gnu.org/licenses/gpl-2.0.html. 32 | ** 33 | ** $QT_END_LICENSE$ 34 | ** 35 | ****************************************************************************/ 36 | 37 | import QtQuick 2.9 38 | import QtQuick.Templates 2.2 as T 39 | import QtQuick.Controls.Material 2.2 40 | 41 | T.Label { 42 | id: control 43 | 44 | color: enabled ? Material.foreground : Material.hintTextColor 45 | linkColor: Material.accentColor 46 | } 47 | -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Label.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Label.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Menu.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Menu.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/MenuItem.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/MenuItem.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/MenuSeparator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/MenuSeparator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Page.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Page.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/PageIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/PageIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Pane.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Pane.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Popup.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Popup.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/ProgressBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/ProgressBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/RadioButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/RadioButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/RadioDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/RadioDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/RadioIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/RadioIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/RangeSlider.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/RangeSlider.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/RectangularGlow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/RectangularGlow.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/RoundButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/RoundButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/ScrollBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/ScrollBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/ScrollIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/ScrollIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Slider.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Slider.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/SliderHandle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/SliderHandle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/SpinBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/SpinBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/StackView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/StackView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/SwipeDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/SwipeDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/SwipeView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/SwipeView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Switch.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Switch.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/SwitchDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/SwitchDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/SwitchIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/SwitchIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/TabBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/TabBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/TabButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/TabButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/TextArea.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/TextArea.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/TextField.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/TextField.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/ToolBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/ToolBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/ToolButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/ToolButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/ToolSeparator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/ToolSeparator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/ToolTip.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/ToolTip.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/Tumbler.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/Tumbler.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls.Material 2 | plugin qtquickcontrols2materialstyleplugin 3 | classname QtQuickControls2MaterialStylePlugin 4 | depends QtQuick.Controls 2.2 5 | -------------------------------------------------------------------------------- /QtQuick/Controls.2/Material/qtquickcontrols2materialstyleplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Material/qtquickcontrols2materialstyleplugin.dll -------------------------------------------------------------------------------- /QtQuick/Controls.2/Menu.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Menu.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/MenuItem.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/MenuItem.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/MenuSeparator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/MenuSeparator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Page.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Page.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/PageIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/PageIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Pane.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Pane.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Popup.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Popup.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ProgressBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ProgressBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/RadioButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/RadioButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/RadioDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/RadioDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/RadioIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/RadioIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/RangeSlider.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/RangeSlider.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/RoundButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/RoundButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ScrollBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ScrollBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ScrollIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ScrollIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ScrollView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ScrollView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Slider.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Slider.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/SpinBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/SpinBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/StackView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/StackView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/SwipeDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/SwipeDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/SwipeView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/SwipeView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Switch.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Switch.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/SwitchDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/SwitchDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/SwitchIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/SwitchIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/TabBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/TabBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/TabButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/TabButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/TextArea.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/TextArea.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/TextField.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/TextField.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ToolBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ToolBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ToolButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ToolButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ToolSeparator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ToolSeparator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/ToolTip.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/ToolTip.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Tumbler.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Tumbler.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/ApplicationWindow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/ApplicationWindow.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/BusyIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/BusyIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Button.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Button.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/CheckBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/CheckBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/CheckDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/CheckDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/CheckIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/CheckIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/ComboBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/ComboBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/DelayButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/DelayButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Dial.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Dial.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Dialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Dialog.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/DialogButtonBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/DialogButtonBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Drawer.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Drawer.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Frame.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Frame.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/GroupBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/GroupBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/ItemDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/ItemDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Label.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2017 The Qt Company Ltd. 4 | ** Contact: http://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL3$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see http://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at http://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPLv3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or later as published by the Free 28 | ** Software Foundation and appearing in the file LICENSE.GPL included in 29 | ** the packaging of this file. Please review the following information to 30 | ** ensure the GNU General Public License version 2.0 requirements will be 31 | ** met: http://www.gnu.org/licenses/gpl-2.0.html. 32 | ** 33 | ** $QT_END_LICENSE$ 34 | ** 35 | ****************************************************************************/ 36 | 37 | import QtQuick 2.9 38 | import QtQuick.Templates 2.2 as T 39 | import QtQuick.Controls.Universal 2.2 40 | 41 | T.Label { 42 | id: control 43 | 44 | opacity: enabled ? 1.0 : 0.2 45 | color: control.Universal.foreground 46 | linkColor: Universal.accent 47 | } 48 | -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Label.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Label.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Menu.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Menu.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/MenuItem.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/MenuItem.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/MenuSeparator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/MenuSeparator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Page.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Page.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/PageIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/PageIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Pane.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Pane.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Popup.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Popup.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/ProgressBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/ProgressBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/RadioButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/RadioButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/RadioDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/RadioDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/RadioIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/RadioIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/RangeSlider.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/RangeSlider.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/RoundButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/RoundButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/ScrollBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/ScrollBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/ScrollIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/ScrollIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Slider.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Slider.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/SpinBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/SpinBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/StackView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/StackView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/SwipeDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/SwipeDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Switch.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Switch.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/SwitchDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/SwitchDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/SwitchIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/SwitchIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/TabBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/TabBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/TabButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/TabButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/TextArea.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/TextArea.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/TextField.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/TextField.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/ToolBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/ToolBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/ToolButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/ToolButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/ToolSeparator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/ToolSeparator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/ToolTip.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/ToolTip.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/Tumbler.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/Tumbler.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/plugins.qmltypes: -------------------------------------------------------------------------------- 1 | import QtQuick.tooling 1.2 2 | 3 | // This file describes the plugin-supplied types contained in the library. 4 | // It is used for QML tooling purposes only. 5 | // 6 | // This file was auto-generated by: 7 | // 'qmlplugindump -nonrelocatable QtQuick.Controls.Universal 2.0' 8 | 9 | Module { 10 | dependencies: [] 11 | Component { name: "QQuickStyle"; prototype: "QObject" } 12 | Component { 13 | name: "QQuickUniversalStyle" 14 | prototype: "QQuickStyle" 15 | exports: ["QtQuick.Controls.Universal/Universal 2.0"] 16 | isCreatable: false 17 | exportMetaObjectRevisions: [0] 18 | Enum { 19 | name: "Theme" 20 | values: { 21 | "Light": 0, 22 | "Dark": 1 23 | } 24 | } 25 | Enum { 26 | name: "Color" 27 | values: { 28 | "Lime": 0, 29 | "Green": 1, 30 | "Emerald": 2, 31 | "Teal": 3, 32 | "Cyan": 4, 33 | "Cobalt": 5, 34 | "Indigo": 6, 35 | "Violet": 7, 36 | "Pink": 8, 37 | "Magenta": 9, 38 | "Crimson": 10, 39 | "Red": 11, 40 | "Orange": 12, 41 | "Amber": 13, 42 | "Yellow": 14, 43 | "Brown": 15, 44 | "Olive": 16, 45 | "Steel": 17, 46 | "Mauve": 18, 47 | "Taupe": 19 48 | } 49 | } 50 | Property { name: "theme"; type: "Theme" } 51 | Property { name: "accent"; type: "QVariant" } 52 | Property { name: "foreground"; type: "QVariant" } 53 | Property { name: "background"; type: "QVariant" } 54 | Signal { name: "paletteChanged" } 55 | Method { 56 | name: "color" 57 | type: "QColor" 58 | Parameter { name: "color"; type: "Color" } 59 | } 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls.Universal 2 | plugin qtquickcontrols2universalstyleplugin 3 | classname QtQuickControls2UniversalStylePlugin 4 | depends QtQuick.Controls 2.2 5 | -------------------------------------------------------------------------------- /QtQuick/Controls.2/Universal/qtquickcontrols2universalstyleplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/Universal/qtquickcontrols2universalstyleplugin.dll -------------------------------------------------------------------------------- /QtQuick/Controls.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls 2 | plugin qtquickcontrols2plugin 3 | classname QtQuickControls2Plugin 4 | depends QtQuick.Templates 2.2 5 | designersupported 6 | -------------------------------------------------------------------------------- /QtQuick/Controls.2/qtquickcontrols2plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls.2/qtquickcontrols2plugin.dll -------------------------------------------------------------------------------- /QtQuick/Controls/ApplicationWindow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/ApplicationWindow.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/BusyIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/BusyIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Button.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Button.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Calendar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Calendar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/CheckBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/CheckBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/ComboBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/ComboBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/GroupBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/GroupBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Label.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Label.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Menu.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Menu.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/MenuBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/MenuBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/AbstractCheckable.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/AbstractCheckable.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/BasicButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/BasicButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/BasicTableView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/BasicTableView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/CalendarHeaderModel.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/CalendarHeaderModel.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/CalendarUtils.jsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/CalendarUtils.jsc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/ColumnMenuContent.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/ColumnMenuContent.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/ContentItem.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/ContentItem.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/Control.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/Control.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/EditMenu.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/EditMenu.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/EditMenu_base.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/EditMenu_base.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/FastGlow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/FastGlow.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/FocusFrame.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/FocusFrame.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/HoverButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/HoverButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/MenuContentItem.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/MenuContentItem.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/MenuContentScroller.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/MenuContentScroller.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/MenuItemSubControls.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick 2.2 41 | 42 | QtObject { 43 | property Component background: null 44 | property Component label: null 45 | property Component submenuIndicator: null 46 | property Component shortcut: null 47 | property Component checkmarkIndicator: null 48 | } 49 | -------------------------------------------------------------------------------- /QtQuick/Controls/Private/MenuItemSubControls.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/MenuItemSubControls.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/ModalPopupBehavior.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/ModalPopupBehavior.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/ScrollBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/ScrollBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/ScrollViewHelper.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/ScrollViewHelper.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/SourceProxy.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/SourceProxy.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/StackView.jsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/StackView.jsc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/StackViewSlideDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/StackViewSlideDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/Style.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick 2.2 41 | import QtQuick.Controls 1.2 42 | import QtQuick.Controls.Private 1.0 43 | 44 | /*! 45 | \qmltype Style 46 | \internal 47 | \inqmlmodule QtQuick.Controls.Private 48 | */ 49 | 50 | AbstractStyle { 51 | /*! The control this style is attached to. */ 52 | readonly property Item control: __control 53 | } 54 | -------------------------------------------------------------------------------- /QtQuick/Controls/Private/Style.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/Style.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/SystemPaletteSingleton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/SystemPaletteSingleton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/TabBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/TabBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/TableViewItemDelegateLoader.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/TableViewItemDelegateLoader.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/TableViewSelection.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/TableViewSelection.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/TextHandle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/TextHandle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/TextInputWithHandles.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/TextInputWithHandles.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/TextSingleton.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | pragma Singleton 41 | import QtQuick 2.2 42 | Text { 43 | } 44 | -------------------------------------------------------------------------------- /QtQuick/Controls/Private/TextSingleton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/TextSingleton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/ToolMenuButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/ToolMenuButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/TreeViewItemDelegateLoader.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/TreeViewItemDelegateLoader.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Private/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls.Private 2 | AbstractCheckable 1.0 AbstractCheckable.qml 3 | CalendarHeaderModel 1.0 CalendarHeaderModel.qml 4 | Control 1.0 Control.qml 5 | CalendarUtils 1.0 CalendarUtils.js 6 | FocusFrame 1.0 FocusFrame.qml 7 | Margins 1.0 Margins.qml 8 | BasicButton 1.0 BasicButton.qml 9 | ScrollBar 1.0 ScrollBar.qml 10 | ScrollViewHelper 1.0 ScrollViewHelper.qml 11 | Style 1.0 Style.qml 12 | MenuItemSubControls 1.0 MenuItemSubControls.qml 13 | TabBar 1.0 TabBar.qml 14 | StackViewSlideDelegate 1.0 StackViewSlideDelegate.qml 15 | StyleHelpers 1.0 style.js 16 | JSArray 1.0 StackView.js 17 | TableViewSelection 1.0 TableViewSelection.qml 18 | FastGlow 1.0 FastGlow.qml 19 | SourceProxy 1.0 SourceProxy.qml 20 | GroupBoxStyle 1.0 ../Styles/Base/GroupBoxStyle.qml 21 | FocusFrameStyle 1.0 ../Styles/Base/FocusFrameStyle.qml 22 | ToolButtonStyle 1.0 ../Styles/Base/ToolButtonStyle.qml 23 | MenuContentItem 1.0 MenuContentItem.qml 24 | MenuContentScroller 1.0 MenuContentScroller.qml 25 | ColumnMenuContent 1.0 ColumnMenuContent.qml 26 | ContentItem 1.0 ContentItem.qml 27 | HoverButton 1.0 HoverButton.qml 28 | singleton SystemPaletteSingleton 1.0 SystemPaletteSingleton.qml 29 | singleton TextSingleton 1.0 TextSingleton.qml 30 | TextHandle 1.0 TextHandle.qml 31 | TextInputWithHandles 1.0 TextInputWithHandles.qml 32 | EditMenu 1.0 EditMenu.qml 33 | EditMenu_base 1.0 EditMenu_base.qml 34 | ToolMenuButton 1.0 ToolMenuButton.qml 35 | BasicTableView 1.0 BasicTableView.qml 36 | TableViewItemDelegateLoader 1.0 TableViewItemDelegateLoader.qml 37 | TreeViewItemDelegateLoader 1.0 TreeViewItemDelegateLoader.qml 38 | -------------------------------------------------------------------------------- /QtQuick/Controls/Private/style.jsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Private/style.jsc -------------------------------------------------------------------------------- /QtQuick/Controls/ProgressBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/ProgressBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/RadioButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/RadioButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/ScrollView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/ScrollView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Slider.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Slider.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/SpinBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/SpinBox.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/SplitView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/SplitView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/StackView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/StackView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/StackViewDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/StackViewDelegate.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/StackViewTransition.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/StackViewTransition.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/StatusBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/StatusBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/ApplicationWindowStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/ApplicationWindowStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/BasicTableViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/BasicTableViewStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/BusyIndicatorStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/BusyIndicatorStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/ButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/ButtonStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/CalendarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/CalendarStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/CheckBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/CheckBoxStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/CircularButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/CircularButtonStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/CircularGaugeStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/CircularGaugeStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/CircularTickmarkLabelStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/CircularTickmarkLabelStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/ComboBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/ComboBoxStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/CommonStyleHelper.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/CommonStyleHelper.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/DelayButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/DelayButtonStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/DialStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/DialStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/FocusFrameStyle.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick 2.2 41 | import QtQuick.Controls 1.2 42 | import QtQuick.Controls.Private 1.0 43 | 44 | /*! 45 | \qmltype FocusFrameStyle 46 | \internal 47 | \inqmlmodule QtQuick.Controls.Styles 48 | */ 49 | Item { 50 | property int margin: -3 51 | } 52 | -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/FocusFrameStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/FocusFrameStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/GaugeStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/GaugeStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/GroupBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/GroupBoxStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/HandleStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/HandleStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/HandleStyleHelper.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/HandleStyleHelper.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/MenuBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/MenuBarStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/MenuStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/MenuStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/PieMenuStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/PieMenuStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/ProgressBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/ProgressBarStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/RadioButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/RadioButtonStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/ScrollViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/ScrollViewStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/SliderStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/SliderStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/SpinBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/SpinBoxStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/StatusBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/StatusBarStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/StatusIndicatorStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/StatusIndicatorStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/SwitchStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/SwitchStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/TabViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/TabViewStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/TableViewStyle.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick 2.5 41 | import QtQuick.Controls 1.4 42 | 43 | BasicTableViewStyle { 44 | id: root 45 | 46 | readonly property TableView control: __control 47 | } 48 | -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/TableViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/TableViewStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/TextAreaStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/TextAreaStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/TextFieldStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/TextFieldStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/ToggleButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/ToggleButtonStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/ToolBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/ToolBarStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/ToolButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/ToolButtonStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/TreeViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/TreeViewStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/TumblerStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/TumblerStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/arrow-down.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/arrow-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/arrow-down@2x.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/arrow-left.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/arrow-left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/arrow-left@2x.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/arrow-right.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/arrow-right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/arrow-right@2x.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/arrow-up.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/arrow-up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/arrow-up@2x.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/button.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/button_down.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/check.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/check@2x.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/editbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/editbox.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/focusframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/focusframe.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/groupbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/groupbox.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/header.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/knob.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/leftanglearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/leftanglearrow.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/needle.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/progress-indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/progress-indeterminate.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/rightanglearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/rightanglearrow.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/scrollbar-handle-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/scrollbar-handle-horizontal.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/scrollbar-handle-transient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/scrollbar-handle-transient.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/scrollbar-handle-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/scrollbar-handle-vertical.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/slider-groove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/slider-groove.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/slider-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/slider-handle.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/spinner_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/spinner_large.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/spinner_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/spinner_medium.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/spinner_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/spinner_small.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/tab.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Base/images/tab_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Base/images/tab_selected.png -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/ApplicationWindowStyle.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick.Controls.Styles 1.3 41 | 42 | ApplicationWindowStyle { } 43 | -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/ApplicationWindowStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/ApplicationWindowStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/BusyIndicatorStyle.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick.Controls.Styles 1.1 41 | 42 | BusyIndicatorStyle { } 43 | -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/BusyIndicatorStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/BusyIndicatorStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/ButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/ButtonStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/CalendarStyle.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick.Controls.Styles 1.1 41 | 42 | CalendarStyle {} 43 | -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/CalendarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/CalendarStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/CheckBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/CheckBoxStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/ComboBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/ComboBoxStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/FocusFrameStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/FocusFrameStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/GroupBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/GroupBoxStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/MenuBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/MenuBarStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/MenuStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/MenuStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/ProgressBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/ProgressBarStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/RadioButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/RadioButtonStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/RowItemSingleton.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | pragma Singleton 41 | import QtQuick.Controls.Private 1.0 42 | StyleItem { 43 | elementType: "itemrow" 44 | } 45 | -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/RowItemSingleton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/RowItemSingleton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/ScrollViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/ScrollViewStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/SliderStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/SliderStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/SpinBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/SpinBoxStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/StatusBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/StatusBarStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/SwitchStyle.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Controls module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick 2.2 41 | import QtQuick.Controls 1.2 42 | import QtQuick.Controls.Private 1.0 43 | import QtQuick.Controls.Styles 1.1 44 | 45 | SwitchStyle { 46 | } 47 | -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/SwitchStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/SwitchStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/TabViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/TabViewStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/TableViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/TableViewStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/TextAreaStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/TextAreaStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/TextFieldStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/TextFieldStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/ToolBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/ToolBarStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/ToolButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/ToolButtonStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/TreeViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Desktop/TreeViewStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Desktop/qmldir: -------------------------------------------------------------------------------- 1 | singleton RowItemSingleton 1.0 RowItemSingleton.qml 2 | designersupported 3 | -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Flat/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls.Styles.Flat 2 | plugin qtquickextrasflatplugin 3 | classname QtQuickExtrasStylesPlugin 4 | -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/Flat/qtquickextrasflatplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Styles/Flat/qtquickextrasflatplugin.dll -------------------------------------------------------------------------------- /QtQuick/Controls/Styles/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls.Styles 2 | ApplicationWindowStyle 1.3 Base/ApplicationWindowStyle.qml 3 | ButtonStyle 1.0 Base/ButtonStyle.qml 4 | BusyIndicatorStyle 1.1 Base/BusyIndicatorStyle.qml 5 | CalendarStyle 1.1 Base/CalendarStyle.qml 6 | CheckBoxStyle 1.0 Base/CheckBoxStyle.qml 7 | ComboBoxStyle 1.0 Base/ComboBoxStyle.qml 8 | MenuStyle 1.2 Base/MenuStyle.qml 9 | MenuBarStyle 1.2 Base/MenuBarStyle.qml 10 | ProgressBarStyle 1.0 Base/ProgressBarStyle.qml 11 | RadioButtonStyle 1.0 Base/RadioButtonStyle.qml 12 | ScrollViewStyle 1.0 Base/ScrollViewStyle.qml 13 | SliderStyle 1.0 Base/SliderStyle.qml 14 | SpinBoxStyle 1.1 Base/SpinBoxStyle.qml 15 | SwitchStyle 1.1 Base/SwitchStyle.qml 16 | TabViewStyle 1.0 Base/TabViewStyle.qml 17 | TableViewStyle 1.0 Base/TableViewStyle.qml 18 | TreeViewStyle 1.4 Base/TreeViewStyle.qml 19 | TextAreaStyle 1.1 Base/TextAreaStyle.qml 20 | TextFieldStyle 1.0 Base/TextFieldStyle.qml 21 | ToolBarStyle 1.0 Base/ToolBarStyle.qml 22 | StatusBarStyle 1.0 Base/StatusBarStyle.qml 23 | 24 | CircularGaugeStyle 1.0 Base/CircularGaugeStyle.qml 25 | CircularButtonStyle 1.0 Base/CircularButtonStyle.qml 26 | CircularTickmarkLabelStyle 1.0 Base/CircularTickmarkLabelStyle.qml 27 | CommonStyleHelper 1.0 Base/CommonStyleHelper.qml 28 | DelayButtonStyle 1.0 Base/DelayButtonStyle.qml 29 | DialStyle 1.1 Base/DialStyle.qml 30 | GaugeStyle 1.0 Base/GaugeStyle.qml 31 | HandleStyle 1.0 Base/HandleStyle.qml 32 | HandleStyleHelper 1.0 Base/HandleStyleHelper.qml 33 | PieMenuStyle 1.3 Base/PieMenuStyle.qml 34 | StatusIndicatorStyle 1.1 Base/StatusIndicatorStyle.qml 35 | ToggleButtonStyle 1.0 Base/ToggleButtonStyle.qml 36 | TumblerStyle 1.2 Base/TumblerStyle.qml 37 | 38 | designersupported 39 | -------------------------------------------------------------------------------- /QtQuick/Controls/Switch.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Switch.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/Tab.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/Tab.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/TabView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/TabView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/TableView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/TableView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/TableViewColumn.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/TableViewColumn.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/TextArea.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/TextArea.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/TextField.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/TextField.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/ToolBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/ToolBar.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/ToolButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/ToolButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/TreeView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/TreeView.qmlc -------------------------------------------------------------------------------- /QtQuick/Controls/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls 2 | plugin qtquickcontrolsplugin 3 | classname QtQuickControls1Plugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | depends QtQuick.Window 2.2 7 | depends QtQuick.Layouts 1.0 8 | -------------------------------------------------------------------------------- /QtQuick/Controls/qtquickcontrolsplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Controls/qtquickcontrolsplugin.dll -------------------------------------------------------------------------------- /QtQuick/Dialogs/DefaultColorDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/DefaultColorDialog.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/DefaultDialogWrapper.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/DefaultDialogWrapper.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/DefaultFileDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/DefaultFileDialog.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/DefaultFontDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/DefaultFontDialog.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/DefaultMessageDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/DefaultMessageDialog.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/Private/dialogsprivateplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/Private/dialogsprivateplugin.dll -------------------------------------------------------------------------------- /QtQuick/Dialogs/Private/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Dialogs.Private 2 | plugin dialogsprivateplugin 3 | classname QtQuick2DialogsPrivatePlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /QtQuick/Dialogs/WidgetColorDialog.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Dialogs module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick 2.2 41 | import QtQuick.PrivateWidgets 1.0 42 | 43 | QtColorDialog { } 44 | -------------------------------------------------------------------------------- /QtQuick/Dialogs/WidgetColorDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/WidgetColorDialog.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/WidgetFileDialog.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Dialogs module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick 2.2 41 | import QtQuick.PrivateWidgets 1.0 42 | 43 | QtFileDialog { } 44 | -------------------------------------------------------------------------------- /QtQuick/Dialogs/WidgetFileDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/WidgetFileDialog.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/WidgetFontDialog.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Dialogs module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick 2.2 41 | import QtQuick.PrivateWidgets 1.1 42 | 43 | QtFontDialog { } 44 | -------------------------------------------------------------------------------- /QtQuick/Dialogs/WidgetFontDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/WidgetFontDialog.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/WidgetMessageDialog.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Dialogs module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick 2.2 41 | import QtQuick.PrivateWidgets 1.1 42 | 43 | QtMessageDialog { } 44 | -------------------------------------------------------------------------------- /QtQuick/Dialogs/WidgetMessageDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/WidgetMessageDialog.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/dialogplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/dialogplugin.dll -------------------------------------------------------------------------------- /QtQuick/Dialogs/images/checkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/images/checkers.png -------------------------------------------------------------------------------- /QtQuick/Dialogs/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/images/checkmark.png -------------------------------------------------------------------------------- /QtQuick/Dialogs/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/images/copy.png -------------------------------------------------------------------------------- /QtQuick/Dialogs/images/critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/images/critical.png -------------------------------------------------------------------------------- /QtQuick/Dialogs/images/crosshairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/images/crosshairs.png -------------------------------------------------------------------------------- /QtQuick/Dialogs/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/images/information.png -------------------------------------------------------------------------------- /QtQuick/Dialogs/images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/images/question.png -------------------------------------------------------------------------------- /QtQuick/Dialogs/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/images/slider_handle.png -------------------------------------------------------------------------------- /QtQuick/Dialogs/images/sunken_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/images/sunken_frame.png -------------------------------------------------------------------------------- /QtQuick/Dialogs/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/images/warning.png -------------------------------------------------------------------------------- /QtQuick/Dialogs/images/window_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/images/window_border.png -------------------------------------------------------------------------------- /QtQuick/Dialogs/qml/ColorSlider.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/qml/ColorSlider.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/qml/DefaultWindowDecoration.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/qml/DefaultWindowDecoration.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/qml/IconButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/qml/IconButtonStyle.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/qml/IconGlyph.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Dialogs module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick 2.2 41 | 42 | Text { 43 | id: icon 44 | width: height 45 | verticalAlignment: Text.AlignVCenter 46 | font.family: iconFont.name 47 | property alias unicode: icon.text 48 | FontLoader { id: iconFont; source: "icons.ttf"; onNameChanged: console.log("custom font" + name) } 49 | } 50 | -------------------------------------------------------------------------------- /QtQuick/Dialogs/qml/IconGlyph.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/qml/IconGlyph.qmlc -------------------------------------------------------------------------------- /QtQuick/Dialogs/qml/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Dialogs/qml/icons.ttf -------------------------------------------------------------------------------- /QtQuick/Dialogs/qml/qmldir: -------------------------------------------------------------------------------- 1 | ColorSlider 1.0 ColorSlider.qml 2 | IconButtonStyle 1.0 IconButtonStyle.qml 3 | IconGlyph 1.0 IconGlyph.qml 4 | -------------------------------------------------------------------------------- /QtQuick/Dialogs/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Dialogs 2 | plugin dialogplugin 3 | classname QtQuick2DialogsPlugin 4 | typeinfo plugins.qmltypes 5 | depends Qt.labs.folderlistmodel 1.0 6 | depends Qt.labs.settings 1.0 7 | depends QtQuick.Dialogs.Private 1.0 8 | depends QtQuick.Controls 1.3 9 | depends QtQuick.PrivateWidgets 1.1 10 | -------------------------------------------------------------------------------- /QtQuick/Extras/CircularGauge.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/CircularGauge.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/DelayButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/DelayButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/Dial.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/Dial.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/Gauge.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/Gauge.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/PieMenu.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/PieMenu.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/Private/CircularButton.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Extras module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | import QtQuick 2.2 41 | import QtQuick.Controls 1.4 42 | import QtQuick.Controls.Styles 1.4 43 | import QtQuick.Controls.Private 1.0 44 | 45 | /*! 46 | \internal 47 | */ 48 | Button { 49 | id: button 50 | style: Settings.styleComponent(Settings.style, "CircularButtonStyle.qml", button) 51 | } 52 | -------------------------------------------------------------------------------- /QtQuick/Extras/Private/CircularButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/Private/CircularButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/Private/CircularButtonStyleHelper.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/Private/CircularButtonStyleHelper.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/Private/CircularTickmarkLabel.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/Private/CircularTickmarkLabel.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/Private/Handle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/Private/Handle.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/Private/PieMenuIcon.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/Private/PieMenuIcon.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/Private/TextSingleton.qml: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | ** 3 | ** Copyright (C) 2016 The Qt Company Ltd. 4 | ** Contact: https://www.qt.io/licensing/ 5 | ** 6 | ** This file is part of the Qt Quick Extras module of the Qt Toolkit. 7 | ** 8 | ** $QT_BEGIN_LICENSE:LGPL$ 9 | ** Commercial License Usage 10 | ** Licensees holding valid commercial Qt licenses may use this file in 11 | ** accordance with the commercial license agreement provided with the 12 | ** Software or, alternatively, in accordance with the terms contained in 13 | ** a written agreement between you and The Qt Company. For licensing terms 14 | ** and conditions see https://www.qt.io/terms-conditions. For further 15 | ** information use the contact form at https://www.qt.io/contact-us. 16 | ** 17 | ** GNU Lesser General Public License Usage 18 | ** Alternatively, this file may be used under the terms of the GNU Lesser 19 | ** General Public License version 3 as published by the Free Software 20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the 21 | ** packaging of this file. Please review the following information to 22 | ** ensure the GNU Lesser General Public License version 3 requirements 23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. 24 | ** 25 | ** GNU General Public License Usage 26 | ** Alternatively, this file may be used under the terms of the GNU 27 | ** General Public License version 2.0 or (at your option) the GNU General 28 | ** Public license version 3 or any later version approved by the KDE Free 29 | ** Qt Foundation. The licenses are as published by the Free Software 30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 31 | ** included in the packaging of this file. Please review the following 32 | ** information to ensure the GNU General Public License requirements will 33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and 34 | ** https://www.gnu.org/licenses/gpl-3.0.html. 35 | ** 36 | ** $QT_END_LICENSE$ 37 | ** 38 | ****************************************************************************/ 39 | 40 | pragma Singleton 41 | import QtQuick 2.1 42 | 43 | Text { 44 | } 45 | -------------------------------------------------------------------------------- /QtQuick/Extras/Private/TextSingleton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/Private/TextSingleton.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/Private/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Extras.Private 2 | -------------------------------------------------------------------------------- /QtQuick/Extras/StatusIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/StatusIndicator.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/ToggleButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/ToggleButton.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/Tumbler.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/Tumbler.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/TumblerColumn.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/TumblerColumn.qmlc -------------------------------------------------------------------------------- /QtQuick/Extras/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Extras 2 | plugin qtquickextrasplugin 3 | classname QtQuickExtrasPlugin 4 | #typeinfo plugins.qmltypes 5 | 6 | depends QtGraphicalEffects 1.0 7 | -------------------------------------------------------------------------------- /QtQuick/Extras/qtquickextrasplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Extras/qtquickextrasplugin.dll -------------------------------------------------------------------------------- /QtQuick/Layouts/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Layouts 2 | plugin qquicklayoutsplugin 3 | classname QtQuickLayoutsPlugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | -------------------------------------------------------------------------------- /QtQuick/Layouts/qquicklayoutsplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Layouts/qquicklayoutsplugin.dll -------------------------------------------------------------------------------- /QtQuick/PrivateWidgets/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.PrivateWidgets 2 | plugin widgetsplugin 3 | classname QtQuick2PrivateWidgetsPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /QtQuick/PrivateWidgets/widgetsplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/PrivateWidgets/widgetsplugin.dll -------------------------------------------------------------------------------- /QtQuick/Templates.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Templates 2 | plugin qtquicktemplates2plugin 3 | classname QtQuickTemplates2Plugin 4 | depends QtQuick.Window 2.2 5 | -------------------------------------------------------------------------------- /QtQuick/Templates.2/qtquicktemplates2plugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Templates.2/qtquicktemplates2plugin.dll -------------------------------------------------------------------------------- /QtQuick/Window.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Window 2 | plugin windowplugin 3 | classname QtQuick2WindowPlugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | -------------------------------------------------------------------------------- /QtQuick/Window.2/windowplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtQuick/Window.2/windowplugin.dll -------------------------------------------------------------------------------- /QtTest/qmldir: -------------------------------------------------------------------------------- 1 | module QtTest 2 | plugin qmltestplugin 3 | classname QTestQmlModule 4 | typeinfo plugins.qmltypes 5 | TestCase 1.0 TestCase.qml 6 | TestCase 1.2 TestCase.qml 7 | SignalSpy 1.0 SignalSpy.qml 8 | -------------------------------------------------------------------------------- /QtTest/qmltestplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtTest/qmltestplugin.dll -------------------------------------------------------------------------------- /QtWinExtras/qml_winextras.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/QtWinExtras/qml_winextras.dll -------------------------------------------------------------------------------- /QtWinExtras/qmldir: -------------------------------------------------------------------------------- 1 | module QtWinExtras 2 | plugin qml_winextras 3 | JumpListLink 1.0 JumpListLink.qml 4 | JumpListDestination 1.0 JumpListDestination.qml 5 | JumpListSeparator 1.0 JumpListSeparator.qml 6 | classname QWinExtrasQmlPlugin 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BigtreeDesignAssistant 2 | 3 | 4 | ## Introduce 5 | * TFT Preview and Replace icon 6 | 7 | ## Software architecture 8 | * Single Client 9 | 10 | ## Install the tutorial 11 | 12 | > Download in Github : [https://github.com/bigtreetech/BigtreeDesignAssistant.git](https://github.com/bigtreetech/BigtreeDesignAssistant.git) 13 | 14 | ## How to use ? 15 | 16 | > Run Application 17 | * File Name : DesignAssistant.exe 18 | 19 | > Preview TFT icon 20 | * Click "Select Folder" to select the current directory folder where the icon file resides 21 | 22 | > Replace icon 23 | * Double-click the icon to select the BMP file to replace 24 | 25 | 26 | ## Contribute 27 | 28 | > 1. Fork the repository 29 | > 2. New Feat_ XXX branch 30 | > 3. Submit code 31 | > 4. New Pull Request 32 | -------------------------------------------------------------------------------- /audio/qtaudio_windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/audio/qtaudio_windows.dll -------------------------------------------------------------------------------- /bearer/qgenericbearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/bearer/qgenericbearer.dll -------------------------------------------------------------------------------- /iconengines/qsvgicon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/iconengines/qsvgicon.dll -------------------------------------------------------------------------------- /imageformats/qgif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/imageformats/qgif.dll -------------------------------------------------------------------------------- /imageformats/qicns.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/imageformats/qicns.dll -------------------------------------------------------------------------------- /imageformats/qico.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/imageformats/qico.dll -------------------------------------------------------------------------------- /imageformats/qjpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/imageformats/qjpeg.dll -------------------------------------------------------------------------------- /imageformats/qsvg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/imageformats/qsvg.dll -------------------------------------------------------------------------------- /imageformats/qtga.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/imageformats/qtga.dll -------------------------------------------------------------------------------- /imageformats/qtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/imageformats/qtiff.dll -------------------------------------------------------------------------------- /imageformats/qwbmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/imageformats/qwbmp.dll -------------------------------------------------------------------------------- /imageformats/qwebp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/imageformats/qwebp.dll -------------------------------------------------------------------------------- /libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/libEGL.dll -------------------------------------------------------------------------------- /libGLESV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/libGLESV2.dll -------------------------------------------------------------------------------- /libgcc_s_dw2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/libgcc_s_dw2-1.dll -------------------------------------------------------------------------------- /libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/libstdc++-6.dll -------------------------------------------------------------------------------- /libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/libwinpthread-1.dll -------------------------------------------------------------------------------- /mediaservice/dsengine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/mediaservice/dsengine.dll -------------------------------------------------------------------------------- /mediaservice/qtmedia_audioengine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/mediaservice/qtmedia_audioengine.dll -------------------------------------------------------------------------------- /opengl32sw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/opengl32sw.dll -------------------------------------------------------------------------------- /platforminputcontexts/qtvirtualkeyboardplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/platforminputcontexts/qtvirtualkeyboardplugin.dll -------------------------------------------------------------------------------- /platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/platforms/qwindows.dll -------------------------------------------------------------------------------- /playlistformats/qtmultimedia_m3u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/playlistformats/qtmultimedia_m3u.dll -------------------------------------------------------------------------------- /qmltooling/qmldbg_debugger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/qmltooling/qmldbg_debugger.dll -------------------------------------------------------------------------------- /qmltooling/qmldbg_inspector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/qmltooling/qmldbg_inspector.dll -------------------------------------------------------------------------------- /qmltooling/qmldbg_local.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/qmltooling/qmldbg_local.dll -------------------------------------------------------------------------------- /qmltooling/qmldbg_messages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/qmltooling/qmldbg_messages.dll -------------------------------------------------------------------------------- /qmltooling/qmldbg_native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/qmltooling/qmldbg_native.dll -------------------------------------------------------------------------------- /qmltooling/qmldbg_nativedebugger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/qmltooling/qmldbg_nativedebugger.dll -------------------------------------------------------------------------------- /qmltooling/qmldbg_profiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/qmltooling/qmldbg_profiler.dll -------------------------------------------------------------------------------- /qmltooling/qmldbg_quickprofiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/qmltooling/qmldbg_quickprofiler.dll -------------------------------------------------------------------------------- /qmltooling/qmldbg_server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/qmltooling/qmldbg_server.dll -------------------------------------------------------------------------------- /qmltooling/qmldbg_tcp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/qmltooling/qmldbg_tcp.dll -------------------------------------------------------------------------------- /translations/qt_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_ar.qm -------------------------------------------------------------------------------- /translations/qt_bg.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_bg.qm -------------------------------------------------------------------------------- /translations/qt_ca.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_ca.qm -------------------------------------------------------------------------------- /translations/qt_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_cs.qm -------------------------------------------------------------------------------- /translations/qt_da.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_da.qm -------------------------------------------------------------------------------- /translations/qt_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_de.qm -------------------------------------------------------------------------------- /translations/qt_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_en.qm -------------------------------------------------------------------------------- /translations/qt_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_es.qm -------------------------------------------------------------------------------- /translations/qt_fi.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_fi.qm -------------------------------------------------------------------------------- /translations/qt_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_fr.qm -------------------------------------------------------------------------------- /translations/qt_gd.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_gd.qm -------------------------------------------------------------------------------- /translations/qt_he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_he.qm -------------------------------------------------------------------------------- /translations/qt_hu.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_hu.qm -------------------------------------------------------------------------------- /translations/qt_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_it.qm -------------------------------------------------------------------------------- /translations/qt_ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_ja.qm -------------------------------------------------------------------------------- /translations/qt_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_ko.qm -------------------------------------------------------------------------------- /translations/qt_lv.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_lv.qm -------------------------------------------------------------------------------- /translations/qt_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_pl.qm -------------------------------------------------------------------------------- /translations/qt_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_ru.qm -------------------------------------------------------------------------------- /translations/qt_sk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_sk.qm -------------------------------------------------------------------------------- /translations/qt_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigtreetech/BigtreeDesignAssistant/982056fb3fb3643cf3edb994ece3400d09223602/translations/qt_uk.qm --------------------------------------------------------------------------------