├── .gitignore ├── scripts ├── qmlmaya_examples │ ├── __init__.py │ └── quickcontrols2 │ │ ├── __init__.py │ │ ├── flatstyle │ │ └── imports │ │ │ └── Theme │ │ │ └── qmldir │ │ └── gallery │ │ ├── images │ │ ├── arrow.png │ │ ├── arrows.png │ │ ├── qt-logo.png │ │ ├── arrow@2x.png │ │ ├── arrow@3x.png │ │ ├── arrow@4x.png │ │ ├── arrows@2x.png │ │ ├── arrows@3x.png │ │ ├── arrows@4x.png │ │ ├── qt-logo@2x.png │ │ ├── qt-logo@3x.png │ │ └── qt-logo@4x.png │ │ └── icons │ │ └── gallery │ │ ├── 20x20 │ │ ├── back.png │ │ ├── menu.png │ │ └── drawer.png │ │ ├── 20x20@2 │ │ ├── back.png │ │ ├── menu.png │ │ └── drawer.png │ │ ├── 20x20@3 │ │ ├── back.png │ │ ├── menu.png │ │ └── drawer.png │ │ ├── 20x20@4 │ │ ├── back.png │ │ ├── menu.png │ │ └── drawer.png │ │ └── index.theme └── qmlmaya.py ├── win64 └── 2020 │ ├── QtQml │ ├── qmldir │ ├── Models.2 │ │ └── qmldir │ ├── RemoteObjects │ │ └── qmldir │ └── StateMachine │ │ └── qmldir │ ├── QtQuick │ ├── Extras │ │ ├── Private │ │ │ ├── qmldir │ │ │ ├── Handle.qmlc │ │ │ ├── PieMenuIcon.qmlc │ │ │ ├── CircularButton.qmlc │ │ │ ├── TextSingleton.qmlc │ │ │ ├── CircularTickmarkLabel.qmlc │ │ │ ├── CircularButtonStyleHelper.qmlc │ │ │ └── TextSingleton.qml │ │ ├── Dial.qmlc │ │ ├── Gauge.qmlc │ │ ├── PieMenu.qmlc │ │ ├── Tumbler.qmlc │ │ ├── CircularGauge.qmlc │ │ ├── DelayButton.qmlc │ │ ├── ToggleButton.qmlc │ │ ├── TumblerColumn.qmlc │ │ ├── StatusIndicator.qmlc │ │ ├── designer │ │ │ ├── DialSpecifics.qmlc │ │ │ ├── GaugeSpecifics.qmlc │ │ │ ├── PictureSpecifics.qmlc │ │ │ ├── PieMenuSpecifics.qmlc │ │ │ ├── images │ │ │ │ ├── dial-icon.png │ │ │ │ ├── gauge-icon.png │ │ │ │ ├── dial-icon16.png │ │ │ │ ├── gauge-icon16.png │ │ │ │ ├── picture-icon.png │ │ │ │ ├── piemenu-icon.png │ │ │ │ ├── tumbler-icon.png │ │ │ │ ├── picture-icon16.png │ │ │ │ ├── piemenu-icon16.png │ │ │ │ ├── tumbler-icon16.png │ │ │ │ ├── circulargauge-icon.png │ │ │ │ ├── delaybutton-icon.png │ │ │ │ ├── delaybutton-icon16.png │ │ │ │ ├── togglebutton-icon.png │ │ │ │ ├── circulargauge-icon16.png │ │ │ │ ├── statusindicator-icon.png │ │ │ │ ├── togglebutton-icon16.png │ │ │ │ └── statusindicator-icon16.png │ │ │ ├── DelayButtonSpecifics.qmlc │ │ │ ├── ToggleButtonSpecifics.qmlc │ │ │ ├── CircularGaugeSpecifics.qmlc │ │ │ └── StatusIndicatorSpecifics.qmlc │ │ └── qmldir │ ├── Controls │ │ ├── Tab.qmlc │ │ ├── Button.qmlc │ │ ├── Label.qmlc │ │ ├── Menu.qmlc │ │ ├── Slider.qmlc │ │ ├── Styles │ │ │ ├── Desktop │ │ │ │ ├── qmldir │ │ │ │ ├── ButtonStyle.qmlc │ │ │ │ ├── MenuStyle.qmlc │ │ │ │ ├── SliderStyle.qmlc │ │ │ │ ├── SwitchStyle.qmlc │ │ │ │ ├── CalendarStyle.qmlc │ │ │ │ ├── CheckBoxStyle.qmlc │ │ │ │ ├── ComboBoxStyle.qmlc │ │ │ │ ├── GroupBoxStyle.qmlc │ │ │ │ ├── MenuBarStyle.qmlc │ │ │ │ ├── SpinBoxStyle.qmlc │ │ │ │ ├── TabViewStyle.qmlc │ │ │ │ ├── TextAreaStyle.qmlc │ │ │ │ ├── ToolBarStyle.qmlc │ │ │ │ ├── TreeViewStyle.qmlc │ │ │ │ ├── FocusFrameStyle.qmlc │ │ │ │ ├── ProgressBarStyle.qmlc │ │ │ │ ├── RadioButtonStyle.qmlc │ │ │ │ ├── RowItemSingleton.qmlc │ │ │ │ ├── ScrollViewStyle.qmlc │ │ │ │ ├── StatusBarStyle.qmlc │ │ │ │ ├── TableViewStyle.qmlc │ │ │ │ ├── TextFieldStyle.qmlc │ │ │ │ ├── ToolButtonStyle.qmlc │ │ │ │ ├── BusyIndicatorStyle.qmlc │ │ │ │ ├── ApplicationWindowStyle.qmlc │ │ │ │ ├── CalendarStyle.qml │ │ │ │ ├── BusyIndicatorStyle.qml │ │ │ │ ├── ApplicationWindowStyle.qml │ │ │ │ ├── RowItemSingleton.qml │ │ │ │ └── SwitchStyle.qml │ │ │ ├── Base │ │ │ │ ├── DialStyle.qmlc │ │ │ │ ├── MenuStyle.qmlc │ │ │ │ ├── images │ │ │ │ │ ├── tab.png │ │ │ │ │ ├── check.png │ │ │ │ │ ├── knob.png │ │ │ │ │ ├── arrow-up.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── check@2x.png │ │ │ │ │ ├── editbox.png │ │ │ │ │ ├── groupbox.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── needle.png │ │ │ │ │ ├── arrow-down.png │ │ │ │ │ ├── arrow-left.png │ │ │ │ │ ├── focusframe.png │ │ │ │ │ ├── arrow-down@2x.png │ │ │ │ │ ├── arrow-left@2x.png │ │ │ │ │ ├── arrow-right.png │ │ │ │ │ ├── arrow-up@2x.png │ │ │ │ │ ├── button_down.png │ │ │ │ │ ├── slider-groove.png │ │ │ │ │ ├── slider-handle.png │ │ │ │ │ ├── spinner_large.png │ │ │ │ │ ├── spinner_small.png │ │ │ │ │ ├── tab_selected.png │ │ │ │ │ ├── arrow-right@2x.png │ │ │ │ │ ├── leftanglearrow.png │ │ │ │ │ ├── rightanglearrow.png │ │ │ │ │ ├── spinner_medium.png │ │ │ │ │ ├── progress-indeterminate.png │ │ │ │ │ ├── scrollbar-handle-vertical.png │ │ │ │ │ ├── scrollbar-handle-horizontal.png │ │ │ │ │ └── scrollbar-handle-transient.png │ │ │ │ ├── ButtonStyle.qmlc │ │ │ │ ├── GaugeStyle.qmlc │ │ │ │ ├── HandleStyle.qmlc │ │ │ │ ├── SliderStyle.qmlc │ │ │ │ ├── SwitchStyle.qmlc │ │ │ │ ├── CalendarStyle.qmlc │ │ │ │ ├── CheckBoxStyle.qmlc │ │ │ │ ├── ComboBoxStyle.qmlc │ │ │ │ ├── GroupBoxStyle.qmlc │ │ │ │ ├── MenuBarStyle.qmlc │ │ │ │ ├── PieMenuStyle.qmlc │ │ │ │ ├── SpinBoxStyle.qmlc │ │ │ │ ├── StatusBarStyle.qmlc │ │ │ │ ├── TabViewStyle.qmlc │ │ │ │ ├── TableViewStyle.qmlc │ │ │ │ ├── TextAreaStyle.qmlc │ │ │ │ ├── TextFieldStyle.qmlc │ │ │ │ ├── ToolBarStyle.qmlc │ │ │ │ ├── TreeViewStyle.qmlc │ │ │ │ ├── TumblerStyle.qmlc │ │ │ │ ├── DelayButtonStyle.qmlc │ │ │ │ ├── FocusFrameStyle.qmlc │ │ │ │ ├── ProgressBarStyle.qmlc │ │ │ │ ├── RadioButtonStyle.qmlc │ │ │ │ ├── ScrollViewStyle.qmlc │ │ │ │ ├── ToolButtonStyle.qmlc │ │ │ │ ├── BasicTableViewStyle.qmlc │ │ │ │ ├── BusyIndicatorStyle.qmlc │ │ │ │ ├── CircularButtonStyle.qmlc │ │ │ │ ├── CircularGaugeStyle.qmlc │ │ │ │ ├── CommonStyleHelper.qmlc │ │ │ │ ├── HandleStyleHelper.qmlc │ │ │ │ ├── ToggleButtonStyle.qmlc │ │ │ │ ├── StatusIndicatorStyle.qmlc │ │ │ │ ├── ApplicationWindowStyle.qmlc │ │ │ │ ├── CircularTickmarkLabelStyle.qmlc │ │ │ │ ├── TableViewStyle.qml │ │ │ │ └── FocusFrameStyle.qml │ │ │ ├── Flat │ │ │ │ └── qmldir │ │ │ └── qmldir │ │ ├── Switch.qmlc │ │ ├── Calendar.qmlc │ │ ├── CheckBox.qmlc │ │ ├── ComboBox.qmlc │ │ ├── GroupBox.qmlc │ │ ├── MenuBar.qmlc │ │ ├── SpinBox.qmlc │ │ ├── TabView.qmlc │ │ ├── TextArea.qmlc │ │ ├── ToolBar.qmlc │ │ ├── TreeView.qmlc │ │ ├── ProgressBar.qmlc │ │ ├── RadioButton.qmlc │ │ ├── ScrollView.qmlc │ │ ├── SplitView.qmlc │ │ ├── StackView.qmlc │ │ ├── StatusBar.qmlc │ │ ├── TableView.qmlc │ │ ├── TextField.qmlc │ │ ├── ToolButton.qmlc │ │ ├── BusyIndicator.qmlc │ │ ├── Private │ │ │ ├── Style.qmlc │ │ │ ├── style.jsc │ │ │ ├── Control.qmlc │ │ │ ├── EditMenu.qmlc │ │ │ ├── FastGlow.qmlc │ │ │ ├── StackView.jsc │ │ │ ├── TabBar.qmlc │ │ │ ├── FocusFrame.qmlc │ │ │ ├── ScrollBar.qmlc │ │ │ ├── TextHandle.qmlc │ │ │ ├── BasicButton.qmlc │ │ │ ├── CalendarUtils.jsc │ │ │ ├── ContentItem.qmlc │ │ │ ├── EditMenu_base.qmlc │ │ │ ├── HoverButton.qmlc │ │ │ ├── SourceProxy.qmlc │ │ │ ├── TextSingleton.qmlc │ │ │ ├── BasicTableView.qmlc │ │ │ ├── MenuContentItem.qmlc │ │ │ ├── ToolMenuButton.qmlc │ │ │ ├── AbstractCheckable.qmlc │ │ │ ├── ColumnMenuContent.qmlc │ │ │ ├── ModalPopupBehavior.qmlc │ │ │ ├── ScrollViewHelper.qmlc │ │ │ ├── TableViewSelection.qmlc │ │ │ ├── CalendarHeaderModel.qmlc │ │ │ ├── MenuContentScroller.qmlc │ │ │ ├── MenuItemSubControls.qmlc │ │ │ ├── TextInputWithHandles.qmlc │ │ │ ├── StackViewSlideDelegate.qmlc │ │ │ ├── SystemPaletteSingleton.qmlc │ │ │ ├── TableViewItemDelegateLoader.qmlc │ │ │ ├── TreeViewItemDelegateLoader.qmlc │ │ │ ├── qmldir │ │ │ ├── TextSingleton.qml │ │ │ └── MenuItemSubControls.qml │ │ ├── TableViewColumn.qmlc │ │ ├── ApplicationWindow.qmlc │ │ ├── StackViewDelegate.qmlc │ │ ├── StackViewTransition.qmlc │ │ └── qmldir │ ├── Scene2D │ │ └── qmldir │ ├── Scene3D │ │ ├── qmldir │ │ └── plugins.qmltypes │ ├── Dialogs │ │ ├── qml │ │ │ ├── icons.ttf │ │ │ ├── IconGlyph.qmlc │ │ │ ├── ColorSlider.qmlc │ │ │ ├── IconButtonStyle.qmlc │ │ │ ├── qmldir │ │ │ └── DefaultWindowDecoration.qmlc │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── checkers.png │ │ │ ├── critical.png │ │ │ ├── question.png │ │ │ ├── warning.png │ │ │ ├── checkmark.png │ │ │ ├── crosshairs.png │ │ │ ├── information.png │ │ │ ├── slider_handle.png │ │ │ ├── sunken_frame.png │ │ │ └── window_border.png │ │ ├── DefaultFileDialog.qmlc │ │ ├── DefaultFontDialog.qmlc │ │ ├── WidgetColorDialog.qmlc │ │ ├── WidgetFileDialog.qmlc │ │ ├── WidgetFontDialog.qmlc │ │ ├── DefaultColorDialog.qmlc │ │ ├── WidgetMessageDialog.qmlc │ │ ├── DefaultDialogWrapper.qmlc │ │ ├── DefaultMessageDialog.qmlc │ │ ├── Private │ │ │ └── qmldir │ │ ├── qmldir │ │ ├── WidgetColorDialog.qml │ │ ├── WidgetFileDialog.qml │ │ ├── WidgetFontDialog.qml │ │ └── WidgetMessageDialog.qml │ ├── Shapes │ │ └── qmldir │ ├── Particles.2 │ │ └── qmldir │ ├── Controls.2 │ │ ├── designer │ │ │ ├── images │ │ │ │ ├── dial-icon.png │ │ │ │ ├── page-icon.png │ │ │ │ ├── pane-icon.png │ │ │ │ ├── button-icon.png │ │ │ │ ├── dial-icon16.png │ │ │ │ ├── frame-icon.png │ │ │ │ ├── label-icon.png │ │ │ │ ├── page-icon16.png │ │ │ │ ├── pane-icon16.png │ │ │ │ ├── slider-icon.png │ │ │ │ ├── switch-icon.png │ │ │ │ ├── button-icon16.png │ │ │ │ ├── button-icon@2x.png │ │ │ │ ├── checkbox-icon.png │ │ │ │ ├── combobox-icon.png │ │ │ │ ├── dial-icon@2x.png │ │ │ │ ├── frame-icon16.png │ │ │ │ ├── frame-icon@2x.png │ │ │ │ ├── groupbox-icon.png │ │ │ │ ├── label-icon16.png │ │ │ │ ├── label-icon@2x.png │ │ │ │ ├── page-icon@2x.png │ │ │ │ ├── pane-icon@2x.png │ │ │ │ ├── slider-icon16.png │ │ │ │ ├── slider-icon@2x.png │ │ │ │ ├── spinbox-icon.png │ │ │ │ ├── spinbox-icon16.png │ │ │ │ ├── stackview-icon.png │ │ │ │ ├── swipeview-icon.png │ │ │ │ ├── switch-icon16.png │ │ │ │ ├── switch-icon@2x.png │ │ │ │ ├── textarea-icon.png │ │ │ │ ├── textfield-icon.png │ │ │ │ ├── toolbar-icon.png │ │ │ │ ├── toolbar-icon16.png │ │ │ │ ├── tumbler-icon.png │ │ │ │ ├── tumbler-icon16.png │ │ │ │ ├── checkbox-icon16.png │ │ │ │ ├── checkbox-icon@2x.png │ │ │ │ ├── combobox-icon16.png │ │ │ │ ├── combobox-icon@2x.png │ │ │ │ ├── delaybutton-icon.png │ │ │ │ ├── groupbox-icon16.png │ │ │ │ ├── groupbox-icon@2x.png │ │ │ │ ├── progressbar-icon.png │ │ │ │ ├── radiobutton-icon.png │ │ │ │ ├── rangeslider-icon.png │ │ │ │ ├── roundbutton-icon.png │ │ │ │ ├── scrollview-icon.png │ │ │ │ ├── spinbox-icon@2x.png │ │ │ │ ├── stackview-icon16.png │ │ │ │ ├── swipeview-icon16.png │ │ │ │ ├── textarea-icon16.png │ │ │ │ ├── textarea-icon@2x.png │ │ │ │ ├── textfield-icon16.png │ │ │ │ ├── toolbar-icon@2x.png │ │ │ │ ├── toolbutton-icon.png │ │ │ │ ├── tumbler-icon@2x.png │ │ │ │ ├── busyindicator-icon.png │ │ │ │ ├── delaybutton-icon16.png │ │ │ │ ├── delaybutton-icon@2x.png │ │ │ │ ├── itemdelegate-icon.png │ │ │ │ ├── itemdelegate-icon16.png │ │ │ │ ├── pageindicator-icon.png │ │ │ │ ├── progressbar-icon16.png │ │ │ │ ├── progressbar-icon@2x.png │ │ │ │ ├── radiobutton-icon16.png │ │ │ │ ├── radiobutton-icon@2x.png │ │ │ │ ├── rangeslider-icon16.png │ │ │ │ ├── rangeslider-icon@2x.png │ │ │ │ ├── roundbutton-icon16.png │ │ │ │ ├── roundbutton-icon@2x.png │ │ │ │ ├── scrollview-icon16.png │ │ │ │ ├── scrollview-icon@2x.png │ │ │ │ ├── stackview-icon@2x.png │ │ │ │ ├── swipeview-icon@2x.png │ │ │ │ ├── textfield-icon@2x.png │ │ │ │ ├── toolbutton-icon16.png │ │ │ │ ├── toolbutton-icon@2x.png │ │ │ │ ├── toolseparator-icon.png │ │ │ │ ├── busyindicator-icon16.png │ │ │ │ ├── busyindicator-icon@2x.png │ │ │ │ ├── itemdelegate-icon@2x.png │ │ │ │ ├── pageindicator-icon16.png │ │ │ │ ├── pageindicator-icon@2x.png │ │ │ │ ├── toolseparator-icon16.png │ │ │ │ └── toolseparator-icon@2x.png │ │ │ ├── ControlSpecifics.qml │ │ │ ├── StackViewSpecifics.qml │ │ │ ├── FrameSpecifics.qml │ │ │ ├── PaneSpecifics.qml │ │ │ ├── SwitchSpecifics.qml │ │ │ ├── RadioButtonSpecifics.qml │ │ │ ├── TabButtonSpecifics.qml │ │ │ └── SwitchDelegateSpecifics.qml │ │ ├── qmldir │ │ ├── Fusion │ │ │ ├── qmldir │ │ │ ├── Label.qml │ │ │ └── ApplicationWindow.qml │ │ ├── Material │ │ │ ├── qmldir │ │ │ └── Label.qml │ │ ├── Universal │ │ │ ├── qmldir │ │ │ ├── plugins.qmltypes │ │ │ └── Label.qml │ │ ├── Imagine │ │ │ ├── qmldir │ │ │ └── plugins.qmltypes │ │ ├── Action.qml │ │ ├── ActionGroup.qml │ │ ├── ButtonGroup.qml │ │ ├── Label.qml │ │ ├── Container.qml │ │ ├── Control.qml │ │ └── AbstractButton.qml │ ├── LocalStorage │ │ ├── qmldir │ │ └── plugins.qmltypes │ ├── PrivateWidgets │ │ └── qmldir │ ├── Templates.2 │ │ └── qmldir │ ├── Window.2 │ │ └── qmldir │ ├── Layouts │ │ └── qmldir │ └── XmlListModel │ │ ├── qmldir │ │ └── plugins.qmltypes │ ├── Qt3D │ ├── Core │ │ └── qmldir │ ├── Input │ │ └── qmldir │ ├── Logic │ │ ├── qmldir │ │ └── plugins.qmltypes │ ├── Render │ │ └── qmldir │ ├── Animation │ │ └── qmldir │ └── Extras │ │ └── qmldir │ ├── QtRemoteObjects │ └── qmldir │ ├── Qt │ ├── labs │ │ ├── qmlmodels │ │ │ ├── qmldir │ │ │ └── plugins.qmltypes │ │ ├── platform │ │ │ └── qmldir │ │ ├── calendar │ │ │ ├── MonthGrid.qmlc │ │ │ ├── DayOfWeekRow.qmlc │ │ │ ├── WeekNumberColumn.qmlc │ │ │ └── qmldir │ │ ├── sharedimage │ │ │ ├── qmldir │ │ │ └── plugins.qmltypes │ │ ├── settings │ │ │ ├── qmldir │ │ │ └── plugins.qmltypes │ │ ├── location │ │ │ └── qmldir │ │ ├── wavefrontmesh │ │ │ ├── qmldir │ │ │ └── plugins.qmltypes │ │ └── folderlistmodel │ │ │ └── qmldir │ └── WebSockets │ │ └── qmldir │ ├── QtNfc │ └── qmldir │ ├── QtCanvas3D │ └── qmldir │ ├── QtGamepad │ └── qmldir │ ├── QtScxml │ └── qmldir │ ├── QtBluetooth │ └── qmldir │ ├── QtGraphicalEffects │ ├── private │ │ ├── FastGlow.qmlc │ │ ├── GaussianGlow.qmlc │ │ ├── DropShadowBase.qmlc │ │ ├── FastInnerShadow.qmlc │ │ ├── FastMaskedBlur.qmlc │ │ ├── GaussianMaskedBlur.qmlc │ │ ├── GaussianInnerShadow.qmlc │ │ ├── GaussianDirectionalBlur.qmlc │ │ └── qmldir │ ├── plugins.qmltypes │ └── qmldir │ ├── QtQuick.2 │ └── qmldir │ ├── QtSensors │ └── qmldir │ ├── QtWebChannel │ └── qmldir │ ├── QtLocation │ └── qmldir │ ├── QtPositioning │ └── qmldir │ ├── QtWebSockets │ └── qmldir │ ├── QtWebView │ └── qmldir │ ├── QtMultimedia │ └── qmldir │ ├── QtTest │ └── qmldir │ └── QtWinExtras │ └── qmldir ├── qmlmaya.mod ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /win64/2020/QtQml/qmldir: -------------------------------------------------------------------------------- 1 | module QtQml 2 | typeinfo plugins.qmltypes 3 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/Private/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Extras.Private 2 | -------------------------------------------------------------------------------- /qmlmaya.mod: -------------------------------------------------------------------------------- 1 | + PLATFORM:win64 MAYAVERSION:2020 qmlmaya 1.0.0 ./ 2 | QML2_IMPORT_PATH := ./win64/2020 3 | -------------------------------------------------------------------------------- /win64/2020/Qt3D/Core/qmldir: -------------------------------------------------------------------------------- 1 | module Qt3D.Core 2 | plugin quick3dcoreplugin 3 | classname Qt3DQuick3DCorePlugin 4 | -------------------------------------------------------------------------------- /win64/2020/Qt3D/Input/qmldir: -------------------------------------------------------------------------------- 1 | module Qt3D.Input 2 | plugin quick3dinputplugin 3 | classname Qt3DQuick3DInputPlugin 4 | -------------------------------------------------------------------------------- /win64/2020/Qt3D/Logic/qmldir: -------------------------------------------------------------------------------- 1 | module Qt3D.Logic 2 | plugin quick3dlogicplugin 3 | classname Qt3DQuick3DLogicPlugin 4 | -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/flatstyle/imports/Theme/qmldir: -------------------------------------------------------------------------------- 1 | module Theme 2 | singleton Theme 1.0 Theme.qml 3 | -------------------------------------------------------------------------------- /win64/2020/Qt3D/Render/qmldir: -------------------------------------------------------------------------------- 1 | module Qt3D.Render 2 | plugin quick3drenderplugin 3 | classname Qt3DQuick3DRenderPlugin 4 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Tab.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Tab.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/Dial.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/Dial.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/Gauge.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/Gauge.qmlc -------------------------------------------------------------------------------- /win64/2020/QtRemoteObjects/qmldir: -------------------------------------------------------------------------------- 1 | module QtRemoteObjects 2 | plugin qtremoteobjects 3 | classname QtRemoteObjectsPlugin 4 | -------------------------------------------------------------------------------- /win64/2020/Qt/labs/qmlmodels/qmldir: -------------------------------------------------------------------------------- 1 | module Qt.labs.qmlmodels 2 | plugin labsmodelsplugin 3 | classname QtQmlLabsModelsPlugin 4 | -------------------------------------------------------------------------------- /win64/2020/QtNfc/qmldir: -------------------------------------------------------------------------------- 1 | module QtNfc 2 | plugin declarative_nfc 3 | classname QNfcQmlPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Button.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Button.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Label.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Label.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Menu.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Menu.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Slider.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Slider.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/qmldir: -------------------------------------------------------------------------------- 1 | singleton RowItemSingleton 1.0 RowItemSingleton.qml 2 | designersupported 3 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Switch.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Switch.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/PieMenu.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/PieMenu.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/Tumbler.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/Tumbler.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Scene2D/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Scene2D 2 | plugin qtquickscene2dplugin 3 | classname QtQuickScene2DPlugin 4 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Scene3D/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Scene3D 2 | plugin qtquickscene3dplugin 3 | classname QtQuickScene3DPlugin 4 | -------------------------------------------------------------------------------- /win64/2020/Qt/labs/platform/qmldir: -------------------------------------------------------------------------------- 1 | module Qt.labs.platform 2 | plugin qtlabsplatformplugin 3 | classname QtLabsPlatformPlugin 4 | -------------------------------------------------------------------------------- /win64/2020/Qt3D/Animation/qmldir: -------------------------------------------------------------------------------- 1 | module Qt3D.Animation 2 | plugin quick3danimationplugin 3 | classname Qt3DQuick3DAnimationPlugin 4 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Calendar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Calendar.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/CheckBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/CheckBox.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/ComboBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/ComboBox.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/GroupBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/GroupBox.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/MenuBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/MenuBar.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/SpinBox.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/SpinBox.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/TabView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/TabView.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/TextArea.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/TextArea.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/ToolBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/ToolBar.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/TreeView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/TreeView.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/qml/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/qml/icons.ttf -------------------------------------------------------------------------------- /win64/2020/Qt/labs/calendar/MonthGrid.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/Qt/labs/calendar/MonthGrid.qmlc -------------------------------------------------------------------------------- /win64/2020/Qt/labs/sharedimage/qmldir: -------------------------------------------------------------------------------- 1 | module Qt.labs.sharedimage 2 | plugin sharedimageplugin 3 | classname QtQuickSharedImagePlugin 4 | -------------------------------------------------------------------------------- /win64/2020/QtCanvas3D/qmldir: -------------------------------------------------------------------------------- 1 | module QtCanvas3D 2 | plugin qtcanvas3d 3 | classname QtCanvas3DPlugin 4 | typeinfo plugins.qmltypes 5 | 6 | -------------------------------------------------------------------------------- /win64/2020/QtGamepad/qmldir: -------------------------------------------------------------------------------- 1 | module QtGamepad 2 | plugin declarative_gamepad 3 | typeinfo plugins.qmltypes 4 | classname QGamepadModule 5 | -------------------------------------------------------------------------------- /win64/2020/QtQml/Models.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQml.Models 2 | plugin modelsplugin 3 | classname QtQmlModelsPlugin 4 | designersupported 5 | -------------------------------------------------------------------------------- /win64/2020/QtQml/RemoteObjects/qmldir: -------------------------------------------------------------------------------- 1 | module QtQml.RemoteObjects 2 | plugin qtqmlremoteobjects 3 | classname QtQmlRemoteObjectsPlugin 4 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/ProgressBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/ProgressBar.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/RadioButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/RadioButton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/ScrollView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/ScrollView.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/SplitView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/SplitView.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/StackView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/StackView.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/StatusBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/StatusBar.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/TableView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/TableView.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/TextField.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/TextField.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/ToolButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/ToolButton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/images/copy.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/CircularGauge.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/CircularGauge.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/DelayButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/DelayButton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/ToggleButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/ToggleButton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/TumblerColumn.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/TumblerColumn.qmlc -------------------------------------------------------------------------------- /win64/2020/Qt/labs/calendar/DayOfWeekRow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/Qt/labs/calendar/DayOfWeekRow.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/BusyIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/BusyIndicator.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/Style.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/Style.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/style.jsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/style.jsc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/images/checkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/images/checkers.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/images/critical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/images/critical.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/images/question.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/images/warning.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/qml/IconGlyph.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/qml/IconGlyph.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/Private/Handle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/Private/Handle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/StatusIndicator.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/StatusIndicator.qmlc -------------------------------------------------------------------------------- /win64/2020/Qt/labs/calendar/WeekNumberColumn.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/Qt/labs/calendar/WeekNumberColumn.qmlc -------------------------------------------------------------------------------- /win64/2020/Qt3D/Extras/qmldir: -------------------------------------------------------------------------------- 1 | module Qt3D.Extras 2 | plugin quick3dextrasplugin 3 | classname Qt3DQuick3DExtrasPlugin 4 | depends Qt3D.Logic 2.0 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/Control.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/Control.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/EditMenu.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/EditMenu.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/FastGlow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/FastGlow.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/StackView.jsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/StackView.jsc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/TabBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/TabBar.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/TableViewColumn.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/TableViewColumn.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/DefaultFileDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/DefaultFileDialog.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/DefaultFontDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/DefaultFontDialog.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/WidgetColorDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/WidgetColorDialog.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/WidgetFileDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/WidgetFileDialog.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/WidgetFontDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/WidgetFontDialog.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/images/checkmark.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/images/crosshairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/images/crosshairs.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/images/information.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/qml/ColorSlider.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/qml/ColorSlider.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Shapes/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Shapes 2 | plugin qmlshapesplugin 3 | classname QmlShapesPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtScxml/qmldir: -------------------------------------------------------------------------------- 1 | module QtScxml 2 | plugin declarative_scxml 3 | classname QScxmlStateMachinePlugin 4 | typeinfo plugins.qmltypes 5 | 6 | -------------------------------------------------------------------------------- /win64/2020/Qt/labs/settings/qmldir: -------------------------------------------------------------------------------- 1 | module Qt.labs.settings 2 | plugin qmlsettingsplugin 3 | classname QmlSettingsPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtBluetooth/qmldir: -------------------------------------------------------------------------------- 1 | module QtBluetooth 2 | plugin declarative_bluetooth 3 | classname QBluetoothQmlPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtGraphicalEffects/private/FastGlow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtGraphicalEffects/private/FastGlow.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick 2 | plugin qtquick2plugin 3 | classname QtQuick2Plugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/ApplicationWindow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/ApplicationWindow.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/FocusFrame.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/FocusFrame.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/ScrollBar.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/ScrollBar.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/TextHandle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/TextHandle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/StackViewDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/StackViewDelegate.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/DefaultColorDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/DefaultColorDialog.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/WidgetMessageDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/WidgetMessageDialog.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/images/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/images/slider_handle.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/images/sunken_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/images/sunken_frame.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/images/window_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/images/window_border.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/qml/IconButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/qml/IconButtonStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/qml/qmldir: -------------------------------------------------------------------------------- 1 | ColorSlider 1.0 ColorSlider.qml 2 | IconButtonStyle 1.0 IconButtonStyle.qml 3 | IconGlyph 1.0 IconGlyph.qml 4 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/Private/PieMenuIcon.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/Private/PieMenuIcon.qmlc -------------------------------------------------------------------------------- /win64/2020/QtSensors/qmldir: -------------------------------------------------------------------------------- 1 | module QtSensors 2 | plugin declarative_sensors 3 | classname QtSensorsDeclarativeModule 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtWebChannel/qmldir: -------------------------------------------------------------------------------- 1 | module QtWebChannel 2 | classname QWebChannelPlugin 3 | plugin declarative_webchannel 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtLocation/qmldir: -------------------------------------------------------------------------------- 1 | module QtLocation 2 | plugin declarative_location 3 | classname QtLocationDeclarativeModule 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/BasicButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/BasicButton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/CalendarUtils.jsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/CalendarUtils.jsc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/ContentItem.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/ContentItem.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/EditMenu_base.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/EditMenu_base.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/HoverButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/HoverButton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/SourceProxy.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/SourceProxy.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/TextSingleton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/TextSingleton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/StackViewTransition.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/StackViewTransition.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/DialStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/DialStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/MenuStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/MenuStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/tab.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/DefaultDialogWrapper.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/DefaultDialogWrapper.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/DefaultMessageDialog.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/DefaultMessageDialog.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/Private/CircularButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/Private/CircularButton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/Private/TextSingleton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/Private/TextSingleton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/DialSpecifics.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/DialSpecifics.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/GaugeSpecifics.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/GaugeSpecifics.qmlc -------------------------------------------------------------------------------- /win64/2020/QtGraphicalEffects/private/GaussianGlow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtGraphicalEffects/private/GaussianGlow.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQml/StateMachine/qmldir: -------------------------------------------------------------------------------- 1 | module QtQml.StateMachine 2 | plugin qtqmlstatemachine 3 | classname QtQmlStateMachinePlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/BasicTableView.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/BasicTableView.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/MenuContentItem.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/MenuContentItem.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/ToolMenuButton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/ToolMenuButton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/ButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/ButtonStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/GaugeStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/GaugeStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/HandleStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/HandleStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/SliderStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/SliderStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/SwitchStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/SwitchStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/check.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/knob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/knob.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Flat/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls.Styles.Flat 2 | plugin qtquickextrasflatplugin 3 | classname QtQuickExtrasStylesPlugin 4 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/PictureSpecifics.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/PictureSpecifics.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/PieMenuSpecifics.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/PieMenuSpecifics.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/dial-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/dial-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/gauge-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/gauge-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Particles.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Particles 2 | plugin particlesplugin 3 | classname QtQuick2ParticlesPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/Qt/labs/location/qmldir: -------------------------------------------------------------------------------- 1 | module Qt.labs.location 2 | plugin locationlabsplugin 3 | classname QtLocationLabsDeclarativeModule 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtGraphicalEffects/private/DropShadowBase.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtGraphicalEffects/private/DropShadowBase.qmlc -------------------------------------------------------------------------------- /win64/2020/QtGraphicalEffects/private/FastInnerShadow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtGraphicalEffects/private/FastInnerShadow.qmlc -------------------------------------------------------------------------------- /win64/2020/QtGraphicalEffects/private/FastMaskedBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtGraphicalEffects/private/FastMaskedBlur.qmlc -------------------------------------------------------------------------------- /win64/2020/QtPositioning/qmldir: -------------------------------------------------------------------------------- 1 | module QtPositioning 2 | plugin declarative_positioning 3 | classname QtPositioningDeclarativeModule 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/dial-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/dial-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/page-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/page-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/pane-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/pane-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/AbstractCheckable.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/AbstractCheckable.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/ColumnMenuContent.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/ColumnMenuContent.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/ModalPopupBehavior.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/ModalPopupBehavior.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/ScrollViewHelper.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/ScrollViewHelper.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/TableViewSelection.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/TableViewSelection.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/CalendarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/CalendarStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/CheckBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/CheckBoxStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/ComboBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/ComboBoxStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/GroupBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/GroupBoxStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/MenuBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/MenuBarStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/PieMenuStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/PieMenuStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/SpinBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/SpinBoxStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/StatusBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/StatusBarStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/TabViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/TabViewStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/TableViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/TableViewStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/TextAreaStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/TextAreaStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/TextFieldStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/TextFieldStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/ToolBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/ToolBarStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/TreeViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/TreeViewStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/TumblerStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/TumblerStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/arrow-up.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/button.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/check@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/editbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/editbox.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/groupbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/groupbox.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/header.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/needle.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/ButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/ButtonStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/MenuStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/MenuStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/SliderStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/SliderStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/SwitchStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/SwitchStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/qml/DefaultWindowDecoration.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Dialogs/qml/DefaultWindowDecoration.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/dial-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/dial-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/gauge-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/gauge-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/picture-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/picture-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/piemenu-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/piemenu-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/tumbler-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/tumbler-icon.png -------------------------------------------------------------------------------- /win64/2020/QtWebSockets/qmldir: -------------------------------------------------------------------------------- 1 | module QtWebSockets 2 | plugin declarative_qmlwebsockets 3 | classname QtWebSocketsDeclarativeModule 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtWebView/qmldir: -------------------------------------------------------------------------------- 1 | module QtWebView 2 | plugin declarative_webview 3 | typeinfo plugins.qmltypes 4 | classname QWebViewModule 5 | depends QtWebEngine 1.0 6 | -------------------------------------------------------------------------------- /win64/2020/Qt/labs/wavefrontmesh/qmldir: -------------------------------------------------------------------------------- 1 | module Qt.labs.wavefrontmesh 2 | plugin qmlwavefrontmeshplugin 3 | classname QmlWavefrontMeshPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtGraphicalEffects/private/GaussianMaskedBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtGraphicalEffects/private/GaussianMaskedBlur.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/button-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/button-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/dial-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/dial-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/frame-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/frame-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/label-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/label-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/page-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/page-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/pane-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/pane-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/slider-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/slider-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/switch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/switch-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/CalendarHeaderModel.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/CalendarHeaderModel.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/MenuContentScroller.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/MenuContentScroller.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/MenuItemSubControls.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/MenuItemSubControls.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/TextInputWithHandles.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/TextInputWithHandles.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/DelayButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/DelayButtonStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/FocusFrameStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/FocusFrameStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/ProgressBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/ProgressBarStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/RadioButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/RadioButtonStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/ScrollViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/ScrollViewStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/ToolButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/ToolButtonStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/arrow-down.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/arrow-left.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/focusframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/focusframe.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/CalendarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/CalendarStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/CheckBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/CheckBoxStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/ComboBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/ComboBoxStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/GroupBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/GroupBoxStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/MenuBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/MenuBarStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/SpinBoxStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/SpinBoxStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/TabViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/TabViewStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/TextAreaStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/TextAreaStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/ToolBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/ToolBarStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/TreeViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/TreeViewStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/Private/CircularTickmarkLabel.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/Private/CircularTickmarkLabel.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/DelayButtonSpecifics.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/DelayButtonSpecifics.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/ToggleButtonSpecifics.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/ToggleButtonSpecifics.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/picture-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/picture-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/piemenu-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/piemenu-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/tumbler-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/tumbler-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/LocalStorage/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.LocalStorage 2 | plugin qmllocalstorageplugin 3 | classname QQmlLocalStoragePlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/PrivateWidgets/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.PrivateWidgets 2 | plugin widgetsplugin 3 | classname QtQuick2PrivateWidgetsPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Templates.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Templates 2 | plugin qtquicktemplates2plugin 3 | classname QtQuickTemplates2Plugin 4 | depends QtQuick.Window 2.2 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Window.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Window 2 | plugin windowplugin 3 | classname QtQuick2WindowPlugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrow.png -------------------------------------------------------------------------------- /win64/2020/QtGraphicalEffects/private/GaussianInnerShadow.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtGraphicalEffects/private/GaussianInnerShadow.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/button-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/button-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/button-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/button-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/checkbox-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/checkbox-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/combobox-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/combobox-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/dial-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/dial-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/frame-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/frame-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/frame-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/frame-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/groupbox-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/groupbox-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/label-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/label-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/label-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/label-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/page-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/page-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/pane-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/pane-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/slider-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/slider-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/slider-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/slider-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/spinbox-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/spinbox-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/spinbox-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/spinbox-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/stackview-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/stackview-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/swipeview-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/swipeview-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/switch-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/switch-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/switch-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/switch-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/textarea-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/textarea-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/textfield-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/textfield-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/toolbar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/toolbar-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/toolbar-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/toolbar-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/tumbler-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/tumbler-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/tumbler-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/tumbler-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/StackViewSlideDelegate.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/StackViewSlideDelegate.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/SystemPaletteSingleton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/SystemPaletteSingleton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/BasicTableViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/BasicTableViewStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/BusyIndicatorStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/BusyIndicatorStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/CircularButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/CircularButtonStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/CircularGaugeStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/CircularGaugeStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/CommonStyleHelper.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/CommonStyleHelper.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/HandleStyleHelper.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/HandleStyleHelper.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/ToggleButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/ToggleButtonStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/arrow-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/arrow-down@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/arrow-left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/arrow-left@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/arrow-right.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/arrow-up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/arrow-up@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/button_down.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/slider-groove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/slider-groove.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/slider-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/slider-handle.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/spinner_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/spinner_large.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/spinner_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/spinner_small.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/tab_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/tab_selected.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/FocusFrameStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/FocusFrameStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/ProgressBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/ProgressBarStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/RadioButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/RadioButtonStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/RowItemSingleton.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/RowItemSingleton.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/ScrollViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/ScrollViewStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/StatusBarStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/StatusBarStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/TableViewStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/TableViewStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/TextFieldStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/TextFieldStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/ToolButtonStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/ToolButtonStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/Private/CircularButtonStyleHelper.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/Private/CircularButtonStyleHelper.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/CircularGaugeSpecifics.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/CircularGaugeSpecifics.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/StatusIndicatorSpecifics.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/StatusIndicatorSpecifics.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/circulargauge-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/circulargauge-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/delaybutton-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/delaybutton-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/delaybutton-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/delaybutton-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/togglebutton-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/togglebutton-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Layouts/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Layouts 2 | plugin qquicklayoutsplugin 3 | classname QtQuickLayoutsPlugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrows.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/qt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/qt-logo.png -------------------------------------------------------------------------------- /win64/2020/Qt/labs/folderlistmodel/qmldir: -------------------------------------------------------------------------------- 1 | module Qt.labs.folderlistmodel 2 | plugin qmlfolderlistmodelplugin 3 | classname QmlFolderListModelPlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtGraphicalEffects/private/GaussianDirectionalBlur.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtGraphicalEffects/private/GaussianDirectionalBlur.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/checkbox-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/checkbox-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/checkbox-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/checkbox-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/combobox-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/combobox-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/combobox-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/combobox-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/delaybutton-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/delaybutton-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/groupbox-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/groupbox-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/groupbox-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/groupbox-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/progressbar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/progressbar-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/radiobutton-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/radiobutton-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/rangeslider-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/rangeslider-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/roundbutton-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/roundbutton-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/scrollview-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/scrollview-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/spinbox-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/spinbox-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/stackview-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/stackview-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/swipeview-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/swipeview-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/textarea-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/textarea-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/textarea-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/textarea-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/textfield-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/textfield-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/toolbar-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/toolbar-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/toolbutton-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/toolbutton-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/tumbler-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/tumbler-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/StatusIndicatorStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/StatusIndicatorStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/arrow-right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/arrow-right@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/leftanglearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/leftanglearrow.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/rightanglearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/rightanglearrow.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/spinner_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/spinner_medium.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/BusyIndicatorStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/BusyIndicatorStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Dialogs/Private/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Dialogs.Private 2 | plugin dialogsprivateplugin 3 | classname QtQuick2DialogsPrivatePlugin 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/circulargauge-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/circulargauge-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/statusindicator-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/statusindicator-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/togglebutton-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/togglebutton-icon16.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrow@2x.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrow@3x.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrow@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrow@4x.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrows@2x.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrows@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrows@3x.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrows@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/arrows@4x.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/qt-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/qt-logo@2x.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/qt-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/qt-logo@3x.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/images/qt-logo@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/images/qt-logo@4x.png -------------------------------------------------------------------------------- /win64/2020/Qt/WebSockets/qmldir: -------------------------------------------------------------------------------- 1 | module Qt.WebSockets 2 | plugin declarative_qmlwebsockets ../../QtWebSockets/ 3 | classname QtWebSocketsDeclarativeModule 4 | typeinfo plugins.qmltypes 5 | -------------------------------------------------------------------------------- /win64/2020/QtMultimedia/qmldir: -------------------------------------------------------------------------------- 1 | module QtMultimedia 2 | plugin declarative_multimedia 3 | classname QMultimediaDeclarativeModule 4 | typeinfo plugins.qmltypes 5 | Video 5.0 Video.qml 6 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/busyindicator-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/busyindicator-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/delaybutton-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/delaybutton-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/delaybutton-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/delaybutton-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/itemdelegate-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/itemdelegate-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/itemdelegate-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/itemdelegate-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/pageindicator-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/pageindicator-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/progressbar-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/progressbar-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/progressbar-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/progressbar-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/radiobutton-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/radiobutton-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/radiobutton-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/radiobutton-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/rangeslider-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/rangeslider-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/rangeslider-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/rangeslider-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/roundbutton-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/roundbutton-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/roundbutton-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/roundbutton-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/scrollview-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/scrollview-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/scrollview-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/scrollview-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/stackview-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/stackview-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/swipeview-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/swipeview-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/textfield-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/textfield-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/toolbutton-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/toolbutton-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/toolbutton-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/toolbutton-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/toolseparator-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/toolseparator-icon.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/TableViewItemDelegateLoader.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/TableViewItemDelegateLoader.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Private/TreeViewItemDelegateLoader.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Private/TreeViewItemDelegateLoader.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/ApplicationWindowStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/ApplicationWindowStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/designer/images/statusindicator-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Extras/designer/images/statusindicator-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/busyindicator-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/busyindicator-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/busyindicator-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/busyindicator-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/itemdelegate-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/itemdelegate-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/pageindicator-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/pageindicator-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/pageindicator-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/pageindicator-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/toolseparator-icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/toolseparator-icon16.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/images/toolseparator-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls.2/designer/images/toolseparator-icon@2x.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls 2 | plugin qtquickcontrols2plugin 3 | classname QtQuickControls2Plugin 4 | depends QtQuick.Templates 2.5 5 | designersupported 6 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/CircularTickmarkLabelStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/CircularTickmarkLabelStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Desktop/ApplicationWindowStyle.qmlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Desktop/ApplicationWindowStyle.qmlc -------------------------------------------------------------------------------- /win64/2020/QtQuick/XmlListModel/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.XmlListModel 2 | plugin qmlxmllistmodelplugin 3 | classname QmlXmlListModelPlugin 4 | typeinfo plugins.qmltypes 5 | designersupported 6 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/progress-indeterminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/progress-indeterminate.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Extras/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Extras 2 | plugin qtquickextrasplugin 3 | classname QtQuickExtrasPlugin 4 | #typeinfo plugins.qmltypes 5 | 6 | depends QtGraphicalEffects 1.0 7 | -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20/back.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20/menu.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/scrollbar-handle-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/scrollbar-handle-vertical.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20/drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20/drawer.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@2/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@2/back.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@2/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@2/menu.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@3/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@3/back.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@3/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@3/menu.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@4/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@4/back.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@4/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@4/menu.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/Fusion/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls.Fusion 2 | plugin qtquickcontrols2fusionstyleplugin 3 | classname QtQuickControls2FusionStylePlugin 4 | depends QtQuick.Controls 2.5 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/scrollbar-handle-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/scrollbar-handle-horizontal.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls/Styles/Base/images/scrollbar-handle-transient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/win64/2020/QtQuick/Controls/Styles/Base/images/scrollbar-handle-transient.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@2/drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@2/drawer.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@3/drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@3/drawer.png -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@4/drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/qmlmaya/HEAD/scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/20x20@4/drawer.png -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/Material/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls.Material 2 | plugin qtquickcontrols2materialstyleplugin 3 | classname QtQuickControls2MaterialStylePlugin 4 | depends QtQuick.Controls 2.5 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/Universal/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls.Universal 2 | plugin qtquickcontrols2universalstyleplugin 3 | classname QtQuickControls2UniversalStylePlugin 4 | depends QtQuick.Controls 2.5 5 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/Imagine/qmldir: -------------------------------------------------------------------------------- 1 | module QtQuick.Controls.Imagine 2 | plugin qtquickcontrols2imaginestyleplugin 3 | classname QtQuickControls2ImagineStylePlugin 4 | depends QtQuick.Controls 2.5 5 | depends QtGraphicalEffects 1.0 6 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | depends QtQuick.Window 2.0 9 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/Qt/labs/sharedimage/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 Qt.labs.sharedimage 1.0' 8 | 9 | Module { 10 | dependencies: ["QtQuick 2.12"] 11 | } 12 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /scripts/qmlmaya_examples/quickcontrols2/gallery/icons/gallery/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Gallery 3 | Comment=Qt Quick Controls 2 Gallery Example Icon Theme 4 | 5 | Directories=20x20,20x20@2,20x20@3,20x20@4 6 | 7 | [20x20] 8 | Size=20 9 | Type=Fixed 10 | 11 | [20x20@2] 12 | Size=20 13 | Scale=2 14 | Type=Fixed 15 | 16 | [20x20@3] 17 | Size=20 18 | Scale=3 19 | Type=Fixed 20 | 21 | [20x20@4] 22 | Size=20 23 | Scale=4 24 | Type=Fixed 25 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/Qt3D/Logic/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 -dependencies dependencies.json Qt3D.Logic 2.12' 8 | 9 | Module { 10 | dependencies: ["Qt3D.Core 2.0"] 11 | Component { 12 | name: "Qt3DLogic::QFrameAction" 13 | prototype: "Qt3DCore::QComponent" 14 | exports: ["Qt3D.Logic/FrameAction 2.0"] 15 | exportMetaObjectRevisions: [0] 16 | Signal { 17 | name: "triggered" 18 | Parameter { name: "dt"; type: "float" } 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/Imagine/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.Imagine 2.3' 8 | 9 | Module { 10 | dependencies: [] 11 | Component { name: "QQuickAttachedObject"; prototype: "QObject" } 12 | Component { 13 | name: "QQuickImagineStyle" 14 | prototype: "QQuickAttachedObject" 15 | exports: ["QtQuick.Controls.Imagine/Imagine 2.3"] 16 | isCreatable: false 17 | exportMetaObjectRevisions: [0] 18 | Property { name: "path"; type: "string" } 19 | Property { name: "url"; type: "QUrl"; isReadonly: true } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/LocalStorage/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 -dependencies dependencies.json QtQuick.LocalStorage 2.12' 8 | 9 | Module { 10 | dependencies: [] 11 | Component { 12 | name: "QQuickLocalStorage" 13 | prototype: "QObject" 14 | exports: ["QtQuick.LocalStorage/LocalStorage 2.0"] 15 | isCreatable: false 16 | isSingleton: true 17 | exportMetaObjectRevisions: [0] 18 | Method { 19 | name: "openDatabaseSync" 20 | Parameter { name: "args"; type: "QQmlV4Function"; isPointer: true } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2020 Chad Vernon 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /win64/2020/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 -dependencies dependencies.json Qt.labs.settings 1.1' 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 | Property { name: "fileName"; type: "string" } 18 | Method { 19 | name: "value" 20 | type: "QVariant" 21 | Parameter { name: "key"; type: "string" } 22 | Parameter { name: "defaultValue"; type: "QVariant" } 23 | } 24 | Method { 25 | name: "value" 26 | type: "QVariant" 27 | Parameter { name: "key"; type: "string" } 28 | } 29 | Method { 30 | name: "setValue" 31 | Parameter { name: "key"; type: "string" } 32 | Parameter { name: "value"; type: "QVariant" } 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # qmlmaya 2 | qmlmaya contains a QMainWindow class that can be used to display QML-based UIs inside Maya. 3 | 4 | QML examples are also included. 5 | 6 | Maya does not ship with the QML modules found in default Qt installations. This repo contains the 7 | modules and the Maya module makes it easy to use them. 8 | 9 | # Requirements 10 | Currently only Maya 2020 on Windows is supported. 11 | 12 | # Installation Instructions 13 | qmlmaya is Maya module that can be installed like all other Maya modules. You can do one of the following: 14 | 15 | * Add the qmlmaya root directory to the MAYA_MODULE_PATH environment variable. 16 | * Add the qmlmaya root directory to the MAYA_MODULE_PATH in your Maya.env. e.g. MAYA_MODULE_PATH += /path/to/qmlmaya 17 | * Edit the qmlmaya.mod file, and replace the ./ with the full path to the qmlmaya root directory, then copy the qmlmaya.mod file to where your modules are loaded from. 18 | 19 | # Usage 20 | 21 | ``` 22 | import os 23 | from qmlmaya import QuickWindow 24 | 25 | window = QuickWindow() 26 | qml_file = os.path.join(os.path.dirname(__file__), "gallery.qml") 27 | window.setSource(qml_file) 28 | window.setWindowTitle("Qt Quick Controls 2") 29 | 30 | window.show() 31 | ``` 32 | 33 | # Running the Examples 34 | If you don't need the examples, you can delete the scripts/qmlmaya_examples directory 35 | 36 | ``` 37 | import qmlmaya_examples.quickcontrols2.flatstyle as flatstyle 38 | flatstyle.show() 39 | 40 | import qmlmaya_examples.quickcontrols2.gallery as gallery 41 | gallery.show() 42 | ``` 43 | -------------------------------------------------------------------------------- /win64/2020/Qt/labs/wavefrontmesh/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 Qt.labs.wavefrontmesh 1.12' 8 | 9 | Module { 10 | dependencies: ["QtQuick 2.12"] 11 | Component { 12 | name: "QWavefrontMesh" 13 | prototype: "QQuickShaderEffectMesh" 14 | exports: ["Qt.labs.wavefrontmesh/WavefrontMesh 1.0"] 15 | exportMetaObjectRevisions: [0] 16 | Enum { 17 | name: "Error" 18 | values: { 19 | "NoError": 0, 20 | "InvalidSourceError": 1, 21 | "UnsupportedFaceShapeError": 2, 22 | "UnsupportedIndexSizeError": 3, 23 | "FileNotFoundError": 4, 24 | "NoAttributesError": 5, 25 | "MissingPositionAttributeError": 6, 26 | "MissingTextureCoordinateAttributeError": 7, 27 | "MissingPositionAndTextureCoordinateAttributesError": 8, 28 | "TooManyAttributesError": 9, 29 | "InvalidPlaneDefinitionError": 10 30 | } 31 | } 32 | Property { name: "source"; type: "QUrl" } 33 | Property { name: "lastError"; type: "Error"; isReadonly: true } 34 | Property { name: "projectionPlaneV"; type: "QVector3D" } 35 | Property { name: "projectionPlaneW"; type: "QVector3D" } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/Qt/labs/qmlmodels/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 -dependencies dependencies.json Qt.labs.qmlmodels 1.0' 8 | 9 | Module { 10 | dependencies: [] 11 | Component { 12 | name: "QQmlAbstractDelegateComponent" 13 | prototype: "QQmlComponent" 14 | exports: ["Qt.labs.qmlmodels/AbstractDelegateComponent 1.0"] 15 | isCreatable: false 16 | exportMetaObjectRevisions: [0] 17 | Signal { name: "delegateChanged" } 18 | } 19 | Component { 20 | name: "QQmlDelegateChoice" 21 | defaultProperty: "delegate" 22 | prototype: "QObject" 23 | exports: ["Qt.labs.qmlmodels/DelegateChoice 1.0"] 24 | exportMetaObjectRevisions: [0] 25 | Property { name: "roleValue"; type: "QVariant" } 26 | Property { name: "row"; type: "int" } 27 | Property { name: "index"; type: "int" } 28 | Property { name: "column"; type: "int" } 29 | Property { name: "delegate"; type: "QQmlComponent"; isPointer: true } 30 | Signal { name: "changed" } 31 | } 32 | Component { 33 | name: "QQmlDelegateChooser" 34 | defaultProperty: "choices" 35 | prototype: "QQmlAbstractDelegateComponent" 36 | exports: ["Qt.labs.qmlmodels/DelegateChooser 1.0"] 37 | exportMetaObjectRevisions: [0] 38 | Property { name: "role"; type: "string" } 39 | Property { name: "choices"; type: "QQmlDelegateChoice"; isList: true; isReadonly: true } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/Action.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.12 38 | import QtQuick.Templates 2.12 as T 39 | 40 | T.Action { } 41 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/ActionGroup.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.12 38 | import QtQuick.Templates 2.12 as T 39 | 40 | T.ActionGroup { } 41 | -------------------------------------------------------------------------------- /win64/2020/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.12 38 | import QtQuick.Templates 2.12 as T 39 | 40 | T.ButtonGroup { } 41 | -------------------------------------------------------------------------------- /scripts/qmlmaya.py: -------------------------------------------------------------------------------- 1 | """qmlmaya contains a QMainWindow class that can be used to display QML-based UIs 2 | inside Maya. 3 | """ 4 | 5 | import logging 6 | import os 7 | from six import string_types 8 | 9 | from PySide2.QtQuick import QQuickView 10 | from PySide2.QtCore import Qt, QUrl 11 | from PySide2.QtWidgets import QWidget, QMainWindow 12 | 13 | from maya.app.general.mayaMixin import MayaQWidgetBaseMixin 14 | 15 | 16 | class QuickWindow(MayaQWidgetBaseMixin, QMainWindow): 17 | """A window that can be used to display a QML UI in Maya.""" 18 | 19 | def __init__(self, url=None, *args, **kwargs): 20 | super(QuickWindow, self).__init__(*args, **kwargs) 21 | self.view = QQuickView() 22 | self.view.statusChanged.connect(self.onStatusChanged) 23 | self.widget = None 24 | if url: 25 | self.setSource(url) 26 | self.setFocusPolicy(Qt.NoFocus) 27 | 28 | def setContextProperty(self, name, value): 29 | """Set a context property on the window. 30 | 31 | Context properties are used to handle the interop between QML and Python 32 | 33 | :param name: Name of the property 34 | :param value: Instance of the property object 35 | """ 36 | self.view.engine().rootContext().setContextProperty(name, value) 37 | 38 | def addImportPath(self, path): 39 | """Add a new module import path to the window engine.""" 40 | self.view.engine().addImportPath(path) 41 | 42 | def setSource(self, url): 43 | if isinstance(url, string_types): 44 | url = QUrl.fromLocalFile(os.path.abspath(url)) 45 | self.view.setSource(url) 46 | size = self.view.size() 47 | self.widget = QWidget.createWindowContainer(self.view, self) 48 | self.setCentralWidget(self.widget) 49 | self.setFocusProxy(self.widget) 50 | self.resize(size) 51 | 52 | def onStatusChanged(self, status): 53 | if status == QQuickView.Error: 54 | errors = self.view.errors() 55 | for error in errors: 56 | logging.critical(error) 57 | 58 | -------------------------------------------------------------------------------- /win64/2020/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.3' 8 | 9 | Module { 10 | dependencies: [] 11 | Component { name: "QQuickAttachedObject"; prototype: "QObject" } 12 | Component { 13 | name: "QQuickUniversalStyle" 14 | prototype: "QQuickAttachedObject" 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 | "System": 2 24 | } 25 | } 26 | Enum { 27 | name: "Color" 28 | values: { 29 | "Lime": 0, 30 | "Green": 1, 31 | "Emerald": 2, 32 | "Teal": 3, 33 | "Cyan": 4, 34 | "Cobalt": 5, 35 | "Indigo": 6, 36 | "Violet": 7, 37 | "Pink": 8, 38 | "Magenta": 9, 39 | "Crimson": 10, 40 | "Red": 11, 41 | "Orange": 12, 42 | "Amber": 13, 43 | "Yellow": 14, 44 | "Brown": 15, 45 | "Olive": 16, 46 | "Steel": 17, 47 | "Mauve": 18, 48 | "Taupe": 19 49 | } 50 | } 51 | Property { name: "theme"; type: "Theme" } 52 | Property { name: "accent"; type: "QVariant" } 53 | Property { name: "foreground"; type: "QVariant" } 54 | Property { name: "background"; type: "QVariant" } 55 | Signal { name: "paletteChanged" } 56 | Method { 57 | name: "color" 58 | type: "QColor" 59 | Parameter { name: "color"; type: "Color" } 60 | } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /win64/2020/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.12 38 | import QtQuick.Controls 2.12 39 | import QtQuick.Controls.impl 2.12 40 | import QtQuick.Templates 2.12 as T 41 | 42 | T.Label { 43 | id: control 44 | 45 | color: control.palette.windowText 46 | linkColor: control.palette.link 47 | } 48 | -------------------------------------------------------------------------------- /win64/2020/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.12 38 | import QtQuick.Templates 2.12 as T 39 | import QtQuick.Controls.Material 2.12 40 | 41 | T.Label { 42 | id: control 43 | 44 | color: enabled ? Material.foreground : Material.hintTextColor 45 | linkColor: Material.accentColor 46 | } 47 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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.12 38 | import QtQuick.Templates 2.12 as T 39 | import QtQuick.Controls.Universal 2.12 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 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Scene3D/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 -dependencies dependencies.json QtQuick.Scene3D 2.12' 8 | 9 | Module { 10 | dependencies: ["Qt3D.Core 2.0", "QtQuick 2.0"] 11 | Component { 12 | name: "Qt3DRender::Scene3DItem" 13 | defaultProperty: "entity" 14 | prototype: "QQuickItem" 15 | exports: ["QtQuick.Scene3D/Scene3D 2.0"] 16 | exportMetaObjectRevisions: [0] 17 | Enum { 18 | name: "CameraAspectRatioMode" 19 | values: { 20 | "AutomaticAspectRatio": 0, 21 | "UserAspectRatio": 1 22 | } 23 | } 24 | Property { name: "entity"; type: "Qt3DCore::QEntity"; isPointer: true } 25 | Property { name: "aspects"; type: "QStringList" } 26 | Property { name: "multisample"; type: "bool" } 27 | Property { name: "cameraAspectRatioMode"; type: "CameraAspectRatioMode" } 28 | Property { name: "hoverEnabled"; type: "bool" } 29 | Signal { 30 | name: "cameraAspectRatioModeChanged" 31 | Parameter { name: "mode"; type: "CameraAspectRatioMode" } 32 | } 33 | Method { 34 | name: "setAspects" 35 | Parameter { name: "aspects"; type: "QStringList" } 36 | } 37 | Method { 38 | name: "setEntity" 39 | Parameter { name: "entity"; type: "Qt3DCore::QEntity"; isPointer: true } 40 | } 41 | Method { 42 | name: "setCameraAspectRatioMode" 43 | Parameter { name: "mode"; type: "CameraAspectRatioMode" } 44 | } 45 | Method { 46 | name: "setHoverEnabled" 47 | Parameter { name: "enabled"; type: "bool" } 48 | } 49 | Method { 50 | name: "setItemAreaAndDevicePixelRatio" 51 | Parameter { name: "area"; type: "QSize" } 52 | Parameter { name: "devicePixelRatio"; type: "double" } 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/Fusion/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.12 38 | import QtQuick.Templates 2.12 as T 39 | import QtQuick.Controls 2.12 40 | import QtQuick.Controls.impl 2.12 41 | import QtQuick.Controls.Fusion 2.12 42 | import QtQuick.Controls.Fusion.impl 2.12 43 | 44 | T.Label { 45 | id: control 46 | 47 | color: control.palette.windowText 48 | linkColor: control.palette.link 49 | } 50 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/ControlSpecifics.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.12 38 | import HelperWidgets 2.0 39 | import QtQuick.Layouts 1.12 40 | 41 | Column { 42 | width: parent.width 43 | 44 | ControlSection { 45 | width: parent.width 46 | } 47 | 48 | FontSection { 49 | width: parent.width 50 | } 51 | 52 | PaddingSection { 53 | width: parent.width 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/StackViewSpecifics.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.12 38 | import HelperWidgets 2.0 39 | import QtQuick.Layouts 1.12 40 | 41 | Column { 42 | width: parent.width 43 | 44 | ControlSection { 45 | width: parent.width 46 | } 47 | 48 | FontSection { 49 | width: parent.width 50 | } 51 | 52 | PaddingSection { 53 | width: parent.width 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/XmlListModel/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.XmlListModel 2.12' 8 | 9 | Module { 10 | dependencies: ["QtQuick 2.12"] 11 | Component { 12 | name: "QQuickXmlListModel" 13 | defaultProperty: "roles" 14 | prototype: "QAbstractListModel" 15 | exports: ["QtQuick.XmlListModel/XmlListModel 2.0"] 16 | exportMetaObjectRevisions: [0] 17 | Enum { 18 | name: "Status" 19 | values: { 20 | "Null": 0, 21 | "Ready": 1, 22 | "Loading": 2, 23 | "Error": 3 24 | } 25 | } 26 | Property { name: "status"; type: "Status"; isReadonly: true } 27 | Property { name: "progress"; type: "double"; isReadonly: true } 28 | Property { name: "source"; type: "QUrl" } 29 | Property { name: "xml"; type: "string" } 30 | Property { name: "query"; type: "string" } 31 | Property { name: "namespaceDeclarations"; type: "string" } 32 | Property { name: "roles"; type: "QQuickXmlListModelRole"; isList: true; isReadonly: true } 33 | Property { name: "count"; type: "int"; isReadonly: true } 34 | Signal { 35 | name: "statusChanged" 36 | Parameter { type: "QQuickXmlListModel::Status" } 37 | } 38 | Signal { 39 | name: "progressChanged" 40 | Parameter { name: "progress"; type: "double" } 41 | } 42 | Method { name: "reload" } 43 | Method { 44 | name: "get" 45 | type: "QQmlV4Handle" 46 | Parameter { name: "index"; type: "int" } 47 | } 48 | Method { name: "errorString"; type: "string" } 49 | } 50 | Component { 51 | name: "QQuickXmlListModelRole" 52 | prototype: "QObject" 53 | exports: ["QtQuick.XmlListModel/XmlRole 2.0"] 54 | exportMetaObjectRevisions: [0] 55 | Property { name: "name"; type: "string" } 56 | Property { name: "query"; type: "string" } 57 | Property { name: "isKey"; type: "bool" } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /win64/2020/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.12 38 | import QtQuick.Templates 2.12 as T 39 | 40 | T.Container { 41 | id: control 42 | 43 | implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, 44 | contentWidth + leftPadding + rightPadding) 45 | implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, 46 | contentHeight + topPadding + bottomPadding) 47 | } 48 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/FrameSpecifics.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.12 38 | import HelperWidgets 2.0 39 | import QtQuick.Layouts 1.12 40 | 41 | Column { 42 | width: parent.width 43 | 44 | PaneSection { 45 | width: parent.width 46 | } 47 | 48 | ControlSection { 49 | width: parent.width 50 | } 51 | 52 | FontSection { 53 | width: parent.width 54 | } 55 | 56 | PaddingSection { 57 | width: parent.width 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/PaneSpecifics.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.12 38 | import HelperWidgets 2.0 39 | import QtQuick.Layouts 1.12 40 | 41 | Column { 42 | width: parent.width 43 | 44 | PaneSection { 45 | width: parent.width 46 | } 47 | 48 | ControlSection { 49 | width: parent.width 50 | } 51 | 52 | FontSection { 53 | width: parent.width 54 | } 55 | 56 | PaddingSection { 57 | width: parent.width 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /win64/2020/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.12 38 | import QtQuick.Templates 2.12 as T 39 | 40 | T.Control { 41 | id: control 42 | 43 | implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, 44 | implicitContentWidth + leftPadding + rightPadding) 45 | implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, 46 | implicitContentHeight + topPadding + bottomPadding) 47 | } 48 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/SwitchSpecifics.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.12 38 | import HelperWidgets 2.0 39 | import QtQuick.Layouts 1.12 40 | 41 | Column { 42 | width: parent.width 43 | 44 | AbstractButtonSection { 45 | width: parent.width 46 | } 47 | 48 | ControlSection { 49 | width: parent.width 50 | } 51 | 52 | FontSection { 53 | width: parent.width 54 | } 55 | 56 | PaddingSection { 57 | width: parent.width 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/AbstractButton.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.12 38 | import QtQuick.Templates 2.12 as T 39 | 40 | T.AbstractButton { 41 | id: control 42 | 43 | implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, 44 | implicitContentWidth + leftPadding + rightPadding) 45 | implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, 46 | implicitContentHeight + topPadding + bottomPadding) 47 | } 48 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/RadioButtonSpecifics.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.12 38 | import HelperWidgets 2.0 39 | import QtQuick.Layouts 1.12 40 | 41 | Column { 42 | width: parent.width 43 | 44 | AbstractButtonSection { 45 | width: parent.width 46 | } 47 | 48 | ControlSection { 49 | width: parent.width 50 | } 51 | 52 | FontSection { 53 | width: parent.width 54 | } 55 | 56 | PaddingSection { 57 | width: parent.width 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/TabButtonSpecifics.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.12 38 | import HelperWidgets 2.0 39 | import QtQuick.Layouts 1.12 40 | 41 | Column { 42 | width: parent.width 43 | 44 | AbstractButtonSection { 45 | width: parent.width 46 | } 47 | 48 | ControlSection { 49 | width: parent.width 50 | } 51 | 52 | FontSection { 53 | width: parent.width 54 | } 55 | 56 | PaddingSection { 57 | width: parent.width 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/Fusion/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.12 38 | import QtQuick.Window 2.2 39 | import QtQuick.Templates 2.12 as T 40 | import QtQuick.Controls.Fusion 2.12 41 | import QtQuick.Controls.Fusion.impl 2.12 42 | 43 | T.ApplicationWindow { 44 | id: window 45 | 46 | color: palette.window 47 | 48 | overlay.modal: Rectangle { 49 | color: Fusion.topShadow 50 | } 51 | 52 | overlay.modeless: Rectangle { 53 | color: Fusion.topShadow 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /win64/2020/QtQuick/Controls.2/designer/SwitchDelegateSpecifics.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.12 38 | import HelperWidgets 2.0 39 | import QtQuick.Layouts 1.12 40 | 41 | Column { 42 | width: parent.width 43 | 44 | ItemDelegateSection { 45 | width: parent.width 46 | } 47 | 48 | AbstractButtonSection { 49 | width: parent.width 50 | } 51 | 52 | ControlSection { 53 | width: parent.width 54 | } 55 | 56 | PaddingSection { 57 | width: parent.width 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /win64/2020/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 | -------------------------------------------------------------------------------- /win64/2020/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 | --------------------------------------------------------------------------------