diff options
author | Mitch Curtis <[email protected]> | 2021-08-12 14:39:51 +0200 |
---|---|---|
committer | Mitch Curtis <[email protected]> | 2021-08-16 12:52:59 +0200 |
commit | 809339d1484cf556512534367b8170bc26baf072 (patch) | |
tree | 12871313b658f36d058b5ef25af1e247e9c46ce9 /src/quickcontrols2/imagine | |
parent | b01b4f00eae8022c6a97d90f54dac395144ae095 (diff) |
Now that qtquickcontrols2 has been merged into qtdeclarative,
we should make it obvious that this repo should no longer be
used, by preventing it from being built.
Task-number: QTBUG-95173
Pick-to: 6.2
Change-Id: I95bd6a214f3d75a865ab163ee0a1f9ffbeb7a051
Reviewed-by: Alexandru Croitor <[email protected]>
Reviewed-by: Volker Hilsheimer <[email protected]>
Diffstat (limited to 'src/quickcontrols2/imagine')
1358 files changed, 0 insertions, 6968 deletions
diff --git a/src/quickcontrols2/imagine/ApplicationWindow.qml b/src/quickcontrols2/imagine/ApplicationWindow.qml deleted file mode 100644 index b54527eb..00000000 --- a/src/quickcontrols2/imagine/ApplicationWindow.qml +++ /dev/null @@ -1,57 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Window -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.ApplicationWindow { - id: window - - background: NinePatchImage { - width: window.width - height: window.height - - source: Imagine.url + "applicationwindow-background" - NinePatchImageSelector on source { - states: [ - {"active": window.active} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/BusyIndicator.qml b/src/quickcontrols2/imagine/BusyIndicator.qml deleted file mode 100644 index 163a64b4..00000000 --- a/src/quickcontrols2/imagine/BusyIndicator.qml +++ /dev/null @@ -1,88 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.BusyIndicator { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - contentItem: AnimatedImage { - opacity: control.running ? 1 : 0 - playing: control.running || opacity > 0 - visible: control.running || opacity > 0 - Behavior on opacity { OpacityAnimator { duration: 250 } } - - source: Imagine.url + "busyindicator-animation" - AnimatedImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"running": control.running}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - background: NinePatchImage { - source: Imagine.url + "busyindicator-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"running": control.running}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Button.qml b/src/quickcontrols2/imagine/Button.qml deleted file mode 100644 index f2228ec7..00000000 --- a/src/quickcontrols2/imagine/Button.qml +++ /dev/null @@ -1,98 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Button { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - spacing: 6 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - icon.width: 24 - icon.height: 24 - icon.color: control.enabled && control.flat && control.highlighted ? control.palette.highlight - : control.enabled && (control.down || control.checked || control.highlighted) && !control.flat - ? control.palette.brightText : control.flat ? control.palette.windowText : control.palette.buttonText - - contentItem: IconLabel { - spacing: control.spacing - mirrored: control.mirrored - display: control.display - - icon: control.icon - text: control.text - font: control.font - color: control.enabled && control.flat && control.highlighted ? control.palette.highlight - : control.enabled && (control.down || control.checked || control.highlighted) && !control.flat - ? control.palette.brightText : control.flat ? control.palette.windowText : control.palette.buttonText - } - - background: NinePatchImage { - source: Imagine.url + "button-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"checkable": control.checkable}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"flat": control.flat}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/CMakeLists.txt b/src/quickcontrols2/imagine/CMakeLists.txt deleted file mode 100644 index 088aeba6..00000000 --- a/src/quickcontrols2/imagine/CMakeLists.txt +++ /dev/null @@ -1,255 +0,0 @@ -##################################################################### -## qtquickcontrols2imaginestyleplugin Plugin: -##################################################################### - -set(qml_files - "ApplicationWindow.qml" - "BusyIndicator.qml" - "Button.qml" - "CheckBox.qml" - "CheckDelegate.qml" - "ComboBox.qml" - "DelayButton.qml" - "Dial.qml" - "Dialog.qml" - "DialogButtonBox.qml" - "Drawer.qml" - "Frame.qml" - "GroupBox.qml" - "HorizontalHeaderView.qml" - "ItemDelegate.qml" - "Label.qml" - "Menu.qml" - "MenuItem.qml" - "MenuSeparator.qml" - "PageIndicator.qml" - "Page.qml" - "Pane.qml" - "Popup.qml" - "ProgressBar.qml" - "RadioButton.qml" - "RadioDelegate.qml" - "RangeSlider.qml" - "RoundButton.qml" - "ScrollView.qml" - "ScrollBar.qml" - "ScrollIndicator.qml" - "Slider.qml" - "SpinBox.qml" - "SplitView.qml" - "StackView.qml" - "SwipeDelegate.qml" - "SwipeView.qml" - "Switch.qml" - "SwitchDelegate.qml" - "TextField.qml" - "TextArea.qml" - "TabBar.qml" - "TabButton.qml" - "ToolBar.qml" - "ToolButton.qml" - "ToolSeparator.qml" - "ToolTip.qml" - "Tumbler.qml" - "VerticalHeaderView.qml" -) -set_source_files_properties(ApplicationWindow.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(BusyIndicator.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(Button.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(CheckBox.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(CheckDelegate.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(ComboBox.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(DelayButton.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.2;6.0" -) -set_source_files_properties(Dial.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(Dialog.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.1;6.0" -) -set_source_files_properties(DialogButtonBox.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.1;6.0" -) -set_source_files_properties(Drawer.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(Frame.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(GroupBox.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(HorizontalHeaderView.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.15;6.0" -) -set_source_files_properties(ItemDelegate.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(Label.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(Menu.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(MenuItem.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(MenuSeparator.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.1;6.0" -) -set_source_files_properties(PageIndicator.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(Page.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(Pane.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(Popup.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(ProgressBar.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(RadioButton.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(RadioDelegate.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(RangeSlider.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(RoundButton.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.1;6.0" -) -set_source_files_properties(ScrollView.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(ScrollBar.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(ScrollIndicator.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(Slider.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(SpinBox.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(SplitView.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.13;6.0" -) -set_source_files_properties(StackView.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(SwipeDelegate.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(SwipeView.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(Switch.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(SwitchDelegate.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(TextField.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(TextArea.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(TabBar.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(TabButton.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(ToolBar.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(ToolButton.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(ToolSeparator.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.1;6.0" -) -set_source_files_properties(ToolTip.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(Tumbler.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.0;6.0" -) -set_source_files_properties(VerticalHeaderView.qml PROPERTIES - QT_QML_SOURCE_VERSION "2.15;6.0" -) - -qt_internal_add_qml_module(qtquickcontrols2imaginestyleplugin - URI "QtQuick.Controls.Imagine" - VERSION "${PROJECT_VERSION}" - CLASS_NAME QtQuickControls2ImagineStylePlugin - IMPORTS - QtQuick.Controls.Basic/auto - PLUGIN_TARGET qtquickcontrols2imaginestyleplugin - NO_PLUGIN_OPTIONAL - NO_GENERATE_PLUGIN_SOURCE - SOURCES - qquickimaginestyle.cpp qquickimaginestyle_p.h - qquickimaginetheme.cpp qquickimaginetheme_p.h - qtquickcontrols2imaginestyleplugin.cpp - QML_FILES - ${qml_files} - DEFINES - QT_NO_CAST_FROM_ASCII - QT_NO_CAST_TO_ASCII - LIBRARIES - Qt::CorePrivate - Qt::GuiPrivate - Qt::QmlPrivate - Qt::QuickControls2ImplPrivate - Qt::QuickControls2Private - Qt::QuickPrivate - Qt::QuickTemplates2Private -) - -file(GLOB resource_glob_0 RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "images/*.png") -foreach(file IN LISTS resource_glob_0) - set_source_files_properties("${CMAKE_CURRENT_SOURCE_DIR}/${file}" PROPERTIES QT_RESOURCE_ALIAS "${file}") -endforeach() - -file(GLOB resource_glob_1 RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "images/*.webp") -foreach(file IN LISTS resource_glob_1) - set_source_files_properties("${CMAKE_CURRENT_SOURCE_DIR}/${file}" PROPERTIES QT_RESOURCE_ALIAS "${file}") -endforeach() - -# Resources: -set(qmake_qtquickcontrols2imaginestyleplugin_resource_files - ${resource_glob_0} - ${resource_glob_1} -) - -qt_internal_add_resource(qtquickcontrols2imaginestyleplugin "qmake_qtquickcontrols2imaginestyleplugin" - PREFIX - "/qt-project.org/imports/QtQuick/Controls/Imagine" - FILES - ${qmake_qtquickcontrols2imaginestyleplugin_resource_files} -) - -add_subdirectory(impl) diff --git a/src/quickcontrols2/imagine/CheckBox.qml b/src/quickcontrols2/imagine/CheckBox.qml deleted file mode 100644 index a92837b5..00000000 --- a/src/quickcontrols2/imagine/CheckBox.qml +++ /dev/null @@ -1,106 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.CheckBox { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding, - implicitIndicatorHeight + topPadding + bottomPadding) - - spacing: 6 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - indicator: Image { - x: text ? (control.mirrored ? control.width - width - control.rightPadding : control.leftPadding) : control.leftPadding + (control.availableWidth - width) / 2 - y: control.topPadding + (control.availableHeight - height) / 2 - - source: Imagine.url + "checkbox-indicator" - ImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checkState === Qt.Checked}, - {"partially-checked": control.checkState === Qt.PartiallyChecked}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - contentItem: Text { - leftPadding: control.indicator && !control.mirrored ? control.indicator.width + control.spacing : 0 - rightPadding: control.indicator && control.mirrored ? control.indicator.width + control.spacing : 0 - - text: control.text - font: control.font - color: control.palette.windowText - elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter - } - - background: NinePatchImage { - source: Imagine.url + "checkbox-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checkState === Qt.Checked}, - {"partially-checked": control.checkState === Qt.PartiallyChecked}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/CheckDelegate.qml b/src/quickcontrols2/imagine/CheckDelegate.qml deleted file mode 100644 index 08be7085..00000000 --- a/src/quickcontrols2/imagine/CheckDelegate.qml +++ /dev/null @@ -1,117 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.CheckDelegate { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding, - implicitIndicatorHeight + topPadding + bottomPadding) - - spacing: 12 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - icon.width: 24 - icon.height: 24 - icon.color: control.palette.text - - indicator: Image { - x: control.mirrored ? control.leftPadding : control.width - width - control.rightPadding - y: control.topPadding + (control.availableHeight - height) / 2 - - source: Imagine.url + "checkdelegate-indicator" - ImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checkState === Qt.Checked}, - {"partially-checked": control.checkState === Qt.PartiallyChecked}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - contentItem: IconLabel { - leftPadding: control.mirrored ? control.indicator.width + control.spacing : 0 - rightPadding: !control.mirrored ? control.indicator.width + control.spacing : 0 - - spacing: control.spacing - mirrored: control.mirrored - display: control.display - alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft - - icon: control.icon - text: control.text - font: control.font - color: control.palette.text - } - - background: NinePatchImage { - source: Imagine.url + "checkdelegate-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checkState === Qt.Checked}, - {"partially-checked": control.checkState === Qt.PartiallyChecked}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/ComboBox.qml b/src/quickcontrols2/imagine/ComboBox.qml deleted file mode 100644 index 58683a84..00000000 --- a/src/quickcontrols2/imagine/ComboBox.qml +++ /dev/null @@ -1,173 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Window -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.ComboBox { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentItem.implicitWidth + background ? (background.leftPadding + background.rightPadding) : 0) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - Math.max(implicitContentHeight, - implicitIndicatorHeight) + background ? (background.topPadding + background.bottomPadding) : 0) - - leftPadding: padding + (!control.mirrored || !indicator || !indicator.visible ? 0 : indicator.width + spacing) - rightPadding: padding + (control.mirrored || !indicator || !indicator.visible ? 0 : indicator.width + spacing) - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - delegate: ItemDelegate { - width: ListView.view.width - text: control.textRole ? (Array.isArray(control.model) ? modelData[control.textRole] : model[control.textRole]) : modelData - font.weight: control.currentIndex === index ? Font.DemiBold : Font.Normal - highlighted: control.highlightedIndex === index - hoverEnabled: control.hoverEnabled - } - - indicator: Image { - x: control.mirrored ? control.padding : control.width - width - control.padding - y: control.topPadding + (control.availableHeight - height) / 2 - - source: Imagine.url + "combobox-indicator" - ImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.pressed}, - {"editable": control.editable}, - {"open": control.down}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered}, - {"flat": control.flat} - ] - } - } - - contentItem: T.TextField { - topPadding: control.background ? control.background.topPadding : 0 - leftPadding: control.background ? control.background.leftPadding : 0 - rightPadding: control.background ? control.background.rightPadding : 0 - bottomPadding: control.background ? control.background.bottomPadding : 0 - - text: control.editable ? control.editText : control.displayText - - enabled: control.editable - autoScroll: control.editable - readOnly: control.down - inputMethodHints: control.inputMethodHints - validator: control.validator - selectByMouse: control.selectTextByMouse - - font: control.font - color: control.flat ? control.palette.windowText : control.editable ? control.palette.text : control.palette.buttonText - selectionColor: control.palette.highlight - selectedTextColor: control.palette.highlightedText - verticalAlignment: Text.AlignVCenter - } - - background: NinePatchImage { - source: Imagine.url + "combobox-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.pressed}, - {"editable": control.editable}, - {"open": control.down}, - {"focused": control.visualFocus || (control.editable && control.activeFocus)}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered}, - {"flat": control.flat} - ] - } - } - - popup: T.Popup { - width: control.width - height: Math.min(contentItem.implicitHeight + topPadding + bottomPadding, control.Window.height - topMargin - bottomMargin) - - topMargin: background.topInset - bottomMargin: background.bottomInset - - topPadding: background.topPadding - leftPadding: background.leftPadding - rightPadding: background.rightPadding - bottomPadding: background.bottomPadding - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - palette.text: control.palette.text - palette.highlight: control.palette.highlight - palette.highlightedText: control.palette.highlightedText - palette.windowText: control.palette.windowText - palette.buttonText: control.palette.buttonText - - contentItem: ListView { - clip: true - implicitHeight: contentHeight - model: control.delegateModel - currentIndex: control.highlightedIndex - highlightMoveDuration: 0 - - T.ScrollIndicator.vertical: ScrollIndicator { } - } - - background: NinePatchImage { - source: Imagine.url + "combobox-popup" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.pressed}, - {"editable": control.editable}, - {"focused": control.visualFocus || (control.editable && control.activeFocus)}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered}, - {"flat": control.flat} - ] - } - } - } -} diff --git a/src/quickcontrols2/imagine/DelayButton.qml b/src/quickcontrols2/imagine/DelayButton.qml deleted file mode 100644 index e542eb69..00000000 --- a/src/quickcontrols2/imagine/DelayButton.qml +++ /dev/null @@ -1,137 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.DelayButton { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - transition: Transition { - NumberAnimation { - duration: control.delay * (control.pressed ? 1.0 - control.progress : 0.3 * control.progress) - } - } - - contentItem: Text { - text: control.text - font: control.font - color: control.palette.buttonText - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - elide: Text.ElideRight - } - - background: NinePatchImage { - source: Imagine.url + "delaybutton-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - - readonly property NinePatchImage progress: NinePatchImage { - parent: control.background - width: control.progress * parent.width - height: parent.height - visible: false - - source: Imagine.url + "delaybutton-progress" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - readonly property NinePatchImage mask: NinePatchImage { - width: control.background.width - height: control.background.height - visible: false - - source: Imagine.url + "delaybutton-mask" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - readonly property OpacityMask effect: OpacityMask { - parent: control.background - width: source.width - height: source.height - source: control.background.progress - - maskSource: ShaderEffectSource { - sourceItem: control.background.mask - sourceRect: Qt.rect(0, 0, control.background.effect.width, control.background.effect.height) - } - } - } -} diff --git a/src/quickcontrols2/imagine/Dial.qml b/src/quickcontrols2/imagine/Dial.qml deleted file mode 100644 index 224bff56..00000000 --- a/src/quickcontrols2/imagine/Dial.qml +++ /dev/null @@ -1,105 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Dial { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - (handle ? handle.implicitWidth : 0) + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - (handle ? handle.implicitHeight : 0) + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - handle: Image { - x: background.x + background.width / 2 - width / 2 - y: background.y + background.height / 2 - height / 2 - - source: Imagine.url + "dial-handle" - ImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.pressed}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - - transform: [ - Translate { - y: -Math.min(control.background.width, control.background.height) * 0.4 + control.handle.height / 2 - }, - Rotation { - angle: control.angle - origin.x: handle.width / 2 - origin.y: handle.height / 2 - } - ] - } - - background: NinePatchImage { - x: control.width / 2 - width / 2 - y: control.height / 2 - height / 2 - width: Math.max(64, Math.min(control.width, control.height)) - height: width - fillMode: Image.PreserveAspectFit - - source: Imagine.url + "dial-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.pressed}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Dialog.qml b/src/quickcontrols2/imagine/Dialog.qml deleted file mode 100644 index b788cc3c..00000000 --- a/src/quickcontrols2/imagine/Dialog.qml +++ /dev/null @@ -1,116 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Dialog { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding, - implicitHeaderWidth, - implicitFooterWidth) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding - + (implicitHeaderHeight > 0 ? implicitHeaderHeight + spacing : 0) - + (implicitFooterHeight > 0 ? implicitFooterHeight + spacing : 0)) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - background: NinePatchImage { - source: Imagine.url + "dialog-background" - NinePatchImageSelector on source { - states: [ - {"modal": control.modal}, - {"dim": control.dim} - ] - } - } - - header: Label { - text: control.title - visible: control.title - elide: Label.ElideRight - font.bold: true - padding: 12 - - background: NinePatchImage { - width: parent.width - height: parent.height - - source: Imagine.url + "dialog-title" - NinePatchImageSelector on source { - states: [ - {"modal": control.modal}, - {"dim": control.dim} - ] - } - } - } - - footer: DialogButtonBox { - visible: count > 0 - } - - T.Overlay.modal: NinePatchImage { - source: Imagine.url + "dialog-overlay" - NinePatchImageSelector on source { - states: [ - {"modal": true} - ] - } - } - - T.Overlay.modeless: NinePatchImage { - source: Imagine.url + "dialog-overlay" - NinePatchImageSelector on source { - states: [ - {"modal": false} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/DialogButtonBox.qml b/src/quickcontrols2/imagine/DialogButtonBox.qml deleted file mode 100644 index 1f3ccd0f..00000000 --- a/src/quickcontrols2/imagine/DialogButtonBox.qml +++ /dev/null @@ -1,84 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.DialogButtonBox { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - (control.count === 1 ? contentWidth * 2 : contentWidth) + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - spacing: 6 - - delegate: Button { - width: control.count === 1 ? control.availableWidth / 2 : undefined - flat: true - } - - contentItem: ListView { - model: control.contentModel - spacing: control.spacing - orientation: ListView.Horizontal - boundsBehavior: Flickable.StopAtBounds - snapMode: ListView.SnapToItem - } - - background: NinePatchImage { - source: Imagine.url + "dialogbuttonbox-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Drawer.qml b/src/quickcontrols2/imagine/Drawer.qml deleted file mode 100644 index 414516d3..00000000 --- a/src/quickcontrols2/imagine/Drawer.qml +++ /dev/null @@ -1,96 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Drawer { - id: control - - parent: T.Overlay.overlay - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - enter: Transition { SmoothedAnimation { velocity: 5 } } - exit: Transition { SmoothedAnimation { velocity: 5 } } - - background: NinePatchImage { - source: Imagine.url + "drawer-background" - NinePatchImageSelector on source { - states: [ - {"modal": control.modal}, - {"dim": control.dim}, - {"top": control.edge === Qt.TopEdge}, - {"left": control.edge === Qt.LeftEdge}, - {"right": control.edge === Qt.RightEdge}, - {"bottom": control.edge === Qt.BottomEdge} - ] - } - } - - T.Overlay.modal: NinePatchImage { - source: Imagine.url + "drawer-overlay" - NinePatchImageSelector on source { - states: [ - {"modal": true} - ] - } - } - - T.Overlay.modeless: NinePatchImage { - source: Imagine.url + "drawer-overlay" - NinePatchImageSelector on source { - states: [ - {"modal": false} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Frame.qml b/src/quickcontrols2/imagine/Frame.qml deleted file mode 100644 index 7ba93dbc..00000000 --- a/src/quickcontrols2/imagine/Frame.qml +++ /dev/null @@ -1,69 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Frame { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - background: NinePatchImage { - source: Imagine.url + "frame-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/GroupBox.qml b/src/quickcontrols2/imagine/GroupBox.qml deleted file mode 100644 index b0a8645f..00000000 --- a/src/quickcontrols2/imagine/GroupBox.qml +++ /dev/null @@ -1,99 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.GroupBox { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding, - implicitLabelWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topPadding: (background ? background.topPadding : 0) + (implicitLabelWidth > 0 ? implicitLabelHeight + spacing : 0) - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - label: Label { - width: control.width - - topPadding: background.topPadding - leftPadding: background.leftPadding - rightPadding: background.rightPadding - bottomPadding: background.bottomPadding - - text: control.title - font: control.font - elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter - - color: control.palette.windowText - - background: NinePatchImage { - width: parent.width - height: parent.height - - source: Imagine.url + "groupbox-title" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } - } - - background: NinePatchImage { - x: -leftInset - y: control.topPadding - control.bottomPadding - topInset - width: control.width + leftInset + rightInset - height: control.height + topInset + bottomInset - control.topPadding + control.bottomPadding - - source: Imagine.url + "groupbox-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/HorizontalHeaderView.qml b/src/quickcontrols2/imagine/HorizontalHeaderView.qml deleted file mode 100644 index e5214593..00000000 --- a/src/quickcontrols2/imagine/HorizontalHeaderView.qml +++ /dev/null @@ -1,67 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T - -T.HorizontalHeaderView { - id: control - - implicitWidth: syncView ? syncView.width : 0 - implicitHeight: contentHeight - - delegate: Rectangle { - // Qt6: add cellPadding (and font etc) as public API in headerview - readonly property real cellPadding: 8 - - implicitWidth: text.implicitWidth + (cellPadding * 2) - implicitHeight: Math.max(control.height, text.implicitHeight + (cellPadding * 2)) - color: "#f6f6f6" - border.color: "#e4e4e4" - - Text { - id: text - text: control.textRole ? (Array.isArray(control.model) ? modelData[control.textRole] - : model[control.textRole]) - : modelData - width: parent.width - height: parent.height - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - color: "#ff26282a" - } - } -} diff --git a/src/quickcontrols2/imagine/ItemDelegate.qml b/src/quickcontrols2/imagine/ItemDelegate.qml deleted file mode 100644 index 25c9a223..00000000 --- a/src/quickcontrols2/imagine/ItemDelegate.qml +++ /dev/null @@ -1,93 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.ItemDelegate { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding, - implicitIndicatorHeight + topPadding + bottomPadding) - - spacing: 12 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - icon.width: 24 - icon.height: 24 - icon.color: control.palette.text - - contentItem: IconLabel { - spacing: control.spacing - mirrored: control.mirrored - display: control.display - alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft - - icon: control.icon - text: control.text - font: control.font - color: control.palette.text - } - - background: NinePatchImage { - source: Imagine.url + "itemdelegate-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Label.qml b/src/quickcontrols2/imagine/Label.qml deleted file mode 100644 index 3654cd7d..00000000 --- a/src/quickcontrols2/imagine/Label.qml +++ /dev/null @@ -1,63 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Label { - id: control - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - color: control.palette.windowText - linkColor: control.palette.link - - background: NinePatchImage { - source: Imagine.url + "label-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Menu.qml b/src/quickcontrols2/imagine/Menu.qml deleted file mode 100644 index 346c6490..00000000 --- a/src/quickcontrols2/imagine/Menu.qml +++ /dev/null @@ -1,107 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl -import QtQuick.Window - -T.Menu { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topMargin: background ? background.topInset : 0 - leftMargin: background ? background.leftInset : 0 - rightMargin: background ? background.rightInset : 0 - bottomMargin: background ? background.bottomInset : 0 - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - delegate: MenuItem { } - - contentItem: ListView { - implicitHeight: contentHeight - model: control.contentModel - interactive: Window.window - ? contentHeight + control.topPadding + control.bottomPadding > Window.window.height - : false - clip: true - currentIndex: control.currentIndex - - T.ScrollIndicator.vertical: ScrollIndicator { } - } - - background: NinePatchImage { - source: Imagine.url + "menu-background" - NinePatchImageSelector on source { - states: [ - {"modal": control.modal}, - {"dim": control.dim} - ] - } - } - - T.Overlay.modal: NinePatchImage { - source: Imagine.url + "menu-overlay" - NinePatchImageSelector on source { - states: [ - {"modal": true} - ] - } - } - - T.Overlay.modeless: NinePatchImage { - source: Imagine.url + "menu-overlay" - NinePatchImageSelector on source { - states: [ - {"modal": false} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/MenuItem.qml b/src/quickcontrols2/imagine/MenuItem.qml deleted file mode 100644 index 963b3bba..00000000 --- a/src/quickcontrols2/imagine/MenuItem.qml +++ /dev/null @@ -1,137 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.MenuItem { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding, - implicitIndicatorHeight + topPadding + bottomPadding) - - spacing: 6 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - icon.width: 24 - icon.height: 24 - icon.color: control.palette.windowText - - contentItem: IconLabel { - readonly property real arrowPadding: control.subMenu && control.arrow ? control.arrow.width + control.spacing : 0 - readonly property real indicatorPadding: control.checkable && control.indicator ? control.indicator.width + control.spacing : 0 - leftPadding: !control.mirrored ? indicatorPadding : arrowPadding - rightPadding: control.mirrored ? indicatorPadding : arrowPadding - - spacing: control.spacing - mirrored: control.mirrored - display: control.display - alignment: Qt.AlignLeft - - icon: control.icon - text: control.text - font: control.font - color: control.palette.windowText - } - - arrow: Image { - x: control.mirrored ? control.leftPadding : control.width - width - control.rightPadding - y: control.topPadding + (control.availableHeight - height) / 2 - - visible: control.subMenu - source: Imagine.url + "menuitem-arrow" - ImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - indicator: Image { - x: control.text ? (control.mirrored ? control.width - width - control.rightPadding : control.leftPadding) : control.leftPadding + (control.availableWidth - width) / 2 - y: control.topPadding + (control.availableHeight - height) / 2 - - visible: control.checkable - source: Imagine.url + "menuitem-indicator" - ImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - background: NinePatchImage { - source: Imagine.url + "menuitem-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/MenuSeparator.qml b/src/quickcontrols2/imagine/MenuSeparator.qml deleted file mode 100644 index 42d1812f..00000000 --- a/src/quickcontrols2/imagine/MenuSeparator.qml +++ /dev/null @@ -1,79 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.MenuSeparator { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - contentItem: NinePatchImage { - source: Imagine.url + "menuseparator-separator" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } - - background: NinePatchImage { - source: Imagine.url + "menuseparator-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Page.qml b/src/quickcontrols2/imagine/Page.qml deleted file mode 100644 index 1b77112f..00000000 --- a/src/quickcontrols2/imagine/Page.qml +++ /dev/null @@ -1,73 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Page { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding, - implicitHeaderWidth, - implicitFooterWidth) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding - + (implicitHeaderHeight > 0 ? implicitHeaderHeight + spacing : 0) - + (implicitFooterHeight > 0 ? implicitFooterHeight + spacing : 0)) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - background: NinePatchImage { - source: Imagine.url + "page-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/PageIndicator.qml b/src/quickcontrols2/imagine/PageIndicator.qml deleted file mode 100644 index ba9bb85c..00000000 --- a/src/quickcontrols2/imagine/PageIndicator.qml +++ /dev/null @@ -1,92 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.PageIndicator { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - delegate: Image { - source: Imagine.url + "pageindicator-delegate" - ImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": pressed}, - {"current": index === control.currentIndex}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} // ### TODO: context property - ] - } - } - - contentItem: Row { - spacing: control.spacing - - Repeater { - model: control.count - delegate: control.delegate - } - } - - background: NinePatchImage { - source: Imagine.url + "pageindicator-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Pane.qml b/src/quickcontrols2/imagine/Pane.qml deleted file mode 100644 index 4fdfaa18..00000000 --- a/src/quickcontrols2/imagine/Pane.qml +++ /dev/null @@ -1,69 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Pane { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - background: NinePatchImage { - source: Imagine.url + "pane-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Popup.qml b/src/quickcontrols2/imagine/Popup.qml deleted file mode 100644 index bc7e544b..00000000 --- a/src/quickcontrols2/imagine/Popup.qml +++ /dev/null @@ -1,87 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Popup { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : undefined - leftPadding: background ? background.leftPadding : undefined - rightPadding: background ? background.rightPadding : undefined - bottomPadding: background ? background.bottomPadding : undefined - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - background: NinePatchImage { - source: Imagine.url + "popup-background" - NinePatchImageSelector on source { - states: [ - {"modal": control.modal}, - {"dim": control.dim} - ] - } - } - - T.Overlay.modal: NinePatchImage { - source: Imagine.url + "popup-overlay" - NinePatchImageSelector on source { - states: [ - {"modal": true} - ] - } - } - - T.Overlay.modeless: NinePatchImage { - source: Imagine.url + "popup-overlay" - NinePatchImageSelector on source { - states: [ - {"modal": false} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/ProgressBar.qml b/src/quickcontrols2/imagine/ProgressBar.qml deleted file mode 100644 index 0c2ed8d7..00000000 --- a/src/quickcontrols2/imagine/ProgressBar.qml +++ /dev/null @@ -1,141 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.ProgressBar { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - contentItem: Item { - implicitWidth: control.indeterminate ? animation.implicitWidth || progress.implicitWidth : progress.implicitWidth - implicitHeight: control.indeterminate ? animation.implicitHeight || progress.implicitHeight : progress.implicitHeight - scale: control.mirrored ? -1 : 1 - - readonly property bool hasMask: mask.status !== Image.Null - - readonly property NinePatchImage progress: NinePatchImage { - parent: control.contentItem - width: control.position * parent.width - height: parent.height - visible: !control.indeterminate && !control.contentItem.hasMask - - source: Imagine.url + "progressbar-progress" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"indeterminate": control.indeterminate}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - readonly property AnimatedImage animation: AnimatedImage { - parent: control.contentItem - width: parent.width - height: parent.height - playing: control.indeterminate - visible: control.indeterminate && !control.contentItem.hasMask - - source: Imagine.url + "progressbar-animation" - AnimatedImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - readonly property NinePatchImage mask: NinePatchImage { - width: control.availableWidth - height: control.availableHeight - visible: false - - source: Imagine.url + "progressbar-mask" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"indeterminate": control.indeterminate}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - readonly property OpacityMask effect: OpacityMask { - parent: control.contentItem - width: source.width - height: source.height - source: control.indeterminate ? control.contentItem.animation : control.contentItem.progress - - maskSource: ShaderEffectSource { - sourceItem: control.contentItem.mask - sourceRect: Qt.rect(0, 0, control.contentItem.effect.width, control.contentItem.effect.height) - } - } - } - - background: NinePatchImage { - source: Imagine.url + "progressbar-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"indeterminate": control.indeterminate}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/RadioButton.qml b/src/quickcontrols2/imagine/RadioButton.qml deleted file mode 100644 index e1a81321..00000000 --- a/src/quickcontrols2/imagine/RadioButton.qml +++ /dev/null @@ -1,104 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.RadioButton { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding, - implicitIndicatorHeight + topPadding + bottomPadding) - - spacing: 6 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - indicator: Image { - x: control.text ? (control.mirrored ? control.width - width - control.rightPadding : control.leftPadding) : control.leftPadding + (control.availableWidth - width) / 2 - y: control.topPadding + (control.availableHeight - height) / 2 - - source: Imagine.url + "radiobutton-indicator" - ImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - contentItem: Text { - leftPadding: control.indicator && !control.mirrored ? control.indicator.width + control.spacing : 0 - rightPadding: control.indicator && control.mirrored ? control.indicator.width + control.spacing : 0 - - text: control.text - font: control.font - color: control.palette.windowText - elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter - } - - background: NinePatchImage { - source: Imagine.url + "radiobutton-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/RadioDelegate.qml b/src/quickcontrols2/imagine/RadioDelegate.qml deleted file mode 100644 index 0344160c..00000000 --- a/src/quickcontrols2/imagine/RadioDelegate.qml +++ /dev/null @@ -1,115 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.RadioDelegate { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding, - implicitIndicatorHeight + topPadding + bottomPadding) - - spacing: 12 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - icon.width: 24 - icon.height: 24 - icon.color: control.palette.text - - indicator: Image { - x: control.mirrored ? control.leftPadding : control.width - width - control.rightPadding - y: control.topPadding + (control.availableHeight - height) / 2 - - source: Imagine.url + "radiodelegate-indicator" - ImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - contentItem: IconLabel { - leftPadding: control.mirrored ? control.indicator.width + control.spacing : 0 - rightPadding: !control.mirrored ? control.indicator.width + control.spacing : 0 - - spacing: control.spacing - mirrored: control.mirrored - display: control.display - alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft - - icon: control.icon - text: control.text - font: control.font - color: control.palette.text - } - - background: NinePatchImage { - source: Imagine.url + "radiodelegate-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/RangeSlider.qml b/src/quickcontrols2/imagine/RangeSlider.qml deleted file mode 100644 index 37f59a3a..00000000 --- a/src/quickcontrols2/imagine/RangeSlider.qml +++ /dev/null @@ -1,134 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.RangeSlider { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - first.implicitHandleWidth + leftPadding + rightPadding, - second.implicitHandleWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - first.implicitHandleHeight + topPadding + bottomPadding, - second.implicitHandleHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - first.handle: Image { - x: control.leftPadding + (control.horizontal ? control.first.visualPosition * (control.availableWidth - width) : (control.availableWidth - width) / 2) - y: control.topPadding + (control.horizontal ? (control.availableHeight - height) / 2 : control.first.visualPosition * (control.availableHeight - height)) - - source: Imagine.url + "rangeslider-handle" - ImageSelector on source { - states: [ - {"first": true}, - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"pressed": control.first.pressed}, - {"focused": control.first.handle.activeFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.first.hovered} - ] - } - } - - second.handle: Image { - x: control.leftPadding + (control.horizontal ? control.second.visualPosition * (control.availableWidth - width) : (control.availableWidth - width) / 2) - y: control.topPadding + (control.horizontal ? (control.availableHeight - height) / 2 : control.second.visualPosition * (control.availableHeight - height)) - - source: Imagine.url + "rangeslider-handle" - ImageSelector on source { - states: [ - {"second": true}, - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"pressed": control.second.pressed}, - {"focused": control.second.handle.activeFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.second.hovered} - ] - } - } - - background: NinePatchImage { - scale: control.horizontal && control.mirrored ? -1 : 1 - - source: Imagine.url + "rangeslider-background" - NinePatchImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - - NinePatchImage { - x: control.horizontal ? control.first.handle.width / 2 + control.first.position * (parent.width - control.first.handle.width) : (parent.width - width) / 2 - y: control.horizontal ? (parent.height - height) / 2 : control.first.handle.height / 2 + control.second.visualPosition * (parent.height - control.first.handle.height) - width: control.horizontal ? control.second.position * (parent.width - control.first.handle.width) - control.first.position * (parent.width - control.first.handle.width) : parent.width - height: control.vertical ? control.second.position * (parent.height - control.first.handle.height) - control.first.position * (parent.height - control.first.handle.height): parent.height - - source: Imagine.url + "rangeslider-progress" - NinePatchImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - } -} diff --git a/src/quickcontrols2/imagine/RoundButton.qml b/src/quickcontrols2/imagine/RoundButton.qml deleted file mode 100644 index 5c9580a3..00000000 --- a/src/quickcontrols2/imagine/RoundButton.qml +++ /dev/null @@ -1,97 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.RoundButton { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - icon.width: 24 - icon.height: 24 - icon.color: control.enabled && control.flat && control.highlighted ? control.palette.highlight - : control.enabled && (control.down || control.checked || control.highlighted) && !control.flat - ? control.palette.brightText : control.flat ? control.palette.windowText : control.palette.buttonText - - contentItem: IconLabel { - spacing: control.spacing - mirrored: control.mirrored - display: control.display - - icon: control.icon - text: control.text - font: control.font - color: control.enabled && control.flat && control.highlighted ? control.palette.highlight - : control.enabled && (control.down || control.checked || control.highlighted) && !control.flat - ? control.palette.brightText : control.flat ? control.palette.windowText : control.palette.buttonText - } - - background: NinePatchImage { - // ### TODO: radius? - source: Imagine.url + "roundbutton-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"checkable": control.checkable}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"flat": control.flat}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/ScrollBar.qml b/src/quickcontrols2/imagine/ScrollBar.qml deleted file mode 100644 index f512a0b7..00000000 --- a/src/quickcontrols2/imagine/ScrollBar.qml +++ /dev/null @@ -1,119 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.ScrollBar { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - visible: control.policy !== T.ScrollBar.AlwaysOff - minimumSize: orientation == Qt.Horizontal ? height / width : width / height - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - contentItem: NinePatchImage { - width: control.availableWidth - height: control.availableHeight - - source: Imagine.url + "scrollbar-handle" - NinePatchImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"interactive": control.interactive}, - {"pressed": control.pressed}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - opacity: 0.0 - } - - background: NinePatchImage { - source: Imagine.url + "scrollbar-background" - NinePatchImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"interactive": control.interactive}, - {"pressed": control.pressed}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - opacity: 0.0 - } - - states: [ - State { - name: "active" - when: control.policy === T.ScrollBar.AlwaysOn || (control.active && control.size < 1.0) - } - ] - - transitions: [ - Transition { - to: "active" - NumberAnimation { targets: [control.contentItem, control.background]; property: "opacity"; to: 1.0 } - }, - Transition { - from: "active" - SequentialAnimation { - PropertyAction{ targets: [control.contentItem, control.background]; property: "opacity"; value: 1.0 } - PauseAnimation { duration: 3000 } - NumberAnimation { targets: [control.contentItem, control.background]; property: "opacity"; to: 0.0 } - } - } - ] -} diff --git a/src/quickcontrols2/imagine/ScrollIndicator.qml b/src/quickcontrols2/imagine/ScrollIndicator.qml deleted file mode 100644 index 316b749c..00000000 --- a/src/quickcontrols2/imagine/ScrollIndicator.qml +++ /dev/null @@ -1,111 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.ScrollIndicator { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - contentItem: NinePatchImage { - width: control.availableWidth - height: control.availableHeight - - source: Imagine.url + "scrollindicator-handle" - NinePatchImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - opacity: 0.0 - } - - background: NinePatchImage { - source: Imagine.url + "scrollindicator-background" - NinePatchImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - opacity: 0.0 - } - - states: [ - State { - name: "active" - when: (control.active && control.size < 1.0) - } - ] - - transitions: [ - Transition { - to: "active" - NumberAnimation { targets: [contentItem, control.background]; property: "opacity"; to: 1.0 } - }, - Transition { - from: "active" - SequentialAnimation { - PauseAnimation { duration: 5000 } - NumberAnimation { targets: [contentItem, control.background]; property: "opacity"; to: 0.0 } - } - } - ] -} diff --git a/src/quickcontrols2/imagine/ScrollView.qml b/src/quickcontrols2/imagine/ScrollView.qml deleted file mode 100644 index 80427e9d..00000000 --- a/src/quickcontrols2/imagine/ScrollView.qml +++ /dev/null @@ -1,85 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.ScrollView { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - T.ScrollBar.vertical: ScrollBar { - parent: control - x: control.mirrored ? 0 : control.width - width - y: control.topPadding - height: control.availableHeight - active: control.T.ScrollBar.horizontal.active - } - - T.ScrollBar.horizontal: ScrollBar { - parent: control - x: control.leftPadding - y: control.height - height - width: control.availableWidth - active: control.T.ScrollBar.vertical.active - } - - background: NinePatchImage { - source: Imagine.path + "scrollview-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Slider.qml b/src/quickcontrols2/imagine/Slider.qml deleted file mode 100644 index 597e222a..00000000 --- a/src/quickcontrols2/imagine/Slider.qml +++ /dev/null @@ -1,120 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Slider { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitHandleWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitHandleHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - handle: Image { - x: Math.round(control.leftPadding + (control.horizontal ? control.visualPosition * (control.availableWidth - width) : (control.availableWidth - width) / 2)) - y: Math.round(control.topPadding + (control.horizontal ? (control.availableHeight - height) / 2 : control.visualPosition * (control.availableHeight - height))) - - source: Imagine.url + "slider-handle" - ImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"pressed": control.pressed}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - - background: NinePatchImage { - scale: control.horizontal && control.mirrored ? -1 : 1 - - source: Imagine.url + "slider-background" - NinePatchImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - - NinePatchImage { - x: control.horizontal ? 0 : (parent.width - width) / 2 - y: control.horizontal - ? (parent.height - height) / 2 - : control.handle.height / 2 + control.visualPosition * (parent.height - control.handle.height) - width: control.horizontal - ? control.handle.width / 2 + control.position * (parent.width - control.handle.width) - : parent.width - height: control.vertical - ? control.handle.height / 2 + control.position * (parent.height - control.handle.height) - : parent.height - - source: Imagine.url + "slider-progress" - NinePatchImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - } -} diff --git a/src/quickcontrols2/imagine/SpinBox.qml b/src/quickcontrols2/imagine/SpinBox.qml deleted file mode 100644 index 6d1bdaba..00000000 --- a/src/quickcontrols2/imagine/SpinBox.qml +++ /dev/null @@ -1,152 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.SpinBox { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentItem.implicitWidth + 2 * padding + - up.implicitIndicatorWidth + - down.implicitIndicatorWidth) - implicitHeight: Math.max(implicitContentHeight + topPadding + bottomPadding, - implicitBackgroundHeight, - up.implicitIndicatorHeight, - down.implicitIndicatorHeight) - - topPadding: background ? background.topPadding : 0 - leftPadding: (background ? background.leftPadding : 0) + (control.mirrored ? (up.indicator ? up.indicator.width : 0) : (down.indicator ? down.indicator.width : 0)) - rightPadding: (background ? background.rightPadding : 0) + (control.mirrored ? (down.indicator ? down.indicator.width : 0) : (up.indicator ? up.indicator.width : 0)) - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - validator: IntValidator { - locale: control.locale.name - bottom: Math.min(control.from, control.to) - top: Math.max(control.from, control.to) - } - - contentItem: TextInput { - z: 2 - text: control.displayText - opacity: control.enabled ? 1 : 0.3 - - font: control.font - color: control.palette.text - selectionColor: control.palette.highlight - selectedTextColor: control.palette.highlightedText - horizontalAlignment: Qt.AlignHCenter - verticalAlignment: Qt.AlignVCenter - - readOnly: !control.editable - validator: control.validator - inputMethodHints: control.inputMethodHints - - NinePatchImage { - z: -1 - width: control.width - height: control.height - visible: control.editable - - source: Imagine.url + "spinbox-editor" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"focused": control.activeFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } - } - - up.indicator: NinePatchImage { - x: control.mirrored ? 0 : parent.width - width - height: parent.height - - source: Imagine.url + "spinbox-indicator" - NinePatchImageSelector on source { - states: [ - {"up": true}, - {"disabled": !control.up.indicator.enabled}, - {"editable": control.editable}, - {"pressed": control.up.pressed}, - {"focused": control.activeFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.up.hovered} - ] - } - } - - down.indicator: NinePatchImage { - x: control.mirrored ? parent.width - width : 0 - height: parent.height - - source: Imagine.url + "spinbox-indicator" - NinePatchImageSelector on source { - states: [ - {"down": true}, - {"disabled": !control.down.indicator.enabled}, - {"editable": control.editable}, - {"pressed": control.down.pressed}, - {"focused": control.activeFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.down.hovered} - ] - } - } - - background: NinePatchImage { - source: Imagine.url + "spinbox-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"editable": control.editable}, - {"focused": control.activeFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/SplitView.qml b/src/quickcontrols2/imagine/SplitView.qml deleted file mode 100644 index 36e1b213..00000000 --- a/src/quickcontrols2/imagine/SplitView.qml +++ /dev/null @@ -1,63 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.SplitView { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - handle: NinePatchImage { - source: Imagine.url + "splitview-handle" - NinePatchImageSelector on source { - states: [ - {"vertical": control.orientation === Qt.Vertical}, - {"horizontal":control.orientation === Qt.Horizontal}, - {"disabled": !control.enabled}, - {"pressed": T.SplitHandle.pressed}, - {"mirrored": control.mirrored}, - {"hovered": T.SplitHandle.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/StackView.qml b/src/quickcontrols2/imagine/StackView.qml deleted file mode 100644 index a9ddac66..00000000 --- a/src/quickcontrols2/imagine/StackView.qml +++ /dev/null @@ -1,91 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.StackView { - id: control - - implicitWidth: implicitBackgroundWidth - implicitHeight: implicitBackgroundHeight - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - popEnter: Transition { - XAnimator { from: (control.mirrored ? -1 : 1) * -control.width; to: 0; duration: 400; easing.type: Easing.OutCubic } - } - - popExit: Transition { - XAnimator { from: 0; to: (control.mirrored ? -1 : 1) * control.width; duration: 400; easing.type: Easing.OutCubic } - } - - pushEnter: Transition { - XAnimator { from: (control.mirrored ? -1 : 1) * control.width; to: 0; duration: 400; easing.type: Easing.OutCubic } - } - - pushExit: Transition { - XAnimator { from: 0; to: (control.mirrored ? -1 : 1) * -control.width; duration: 400; easing.type: Easing.OutCubic } - } - - replaceEnter: Transition { - XAnimator { from: (control.mirrored ? -1 : 1) * control.width; to: 0; duration: 400; easing.type: Easing.OutCubic } - } - - replaceExit: Transition { - XAnimator { from: 0; to: (control.mirrored ? -1 : 1) * -control.width; duration: 400; easing.type: Easing.OutCubic } - } - - background: NinePatchImage { - source: Imagine.url + "stackview-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/SwipeDelegate.qml b/src/quickcontrols2/imagine/SwipeDelegate.qml deleted file mode 100644 index 5e13fc6b..00000000 --- a/src/quickcontrols2/imagine/SwipeDelegate.qml +++ /dev/null @@ -1,95 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.SwipeDelegate { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding, - implicitIndicatorHeight + topPadding + bottomPadding) - - spacing: 12 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - icon.width: 24 - icon.height: 24 - icon.color: control.palette.text - - swipe.transition: Transition { SmoothedAnimation { velocity: 3; easing.type: Easing.InOutCubic } } - - contentItem: IconLabel { - spacing: control.spacing - mirrored: control.mirrored - display: control.display - alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft - - icon: control.icon - text: control.text - font: control.font - color: control.palette.text - } - - background: NinePatchImage { - source: Imagine.url + "swipedelegate-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/SwipeView.qml b/src/quickcontrols2/imagine/SwipeView.qml deleted file mode 100644 index 12cafbb8..00000000 --- a/src/quickcontrols2/imagine/SwipeView.qml +++ /dev/null @@ -1,90 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.SwipeView { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - contentItem: ListView { - model: control.contentModel - interactive: control.interactive - currentIndex: control.currentIndex - focus: control.focus - - spacing: control.spacing - orientation: control.orientation - snapMode: ListView.SnapOneItem - boundsBehavior: Flickable.StopAtBounds - - highlightRangeMode: ListView.StrictlyEnforceRange - preferredHighlightBegin: 0 - preferredHighlightEnd: 0 - highlightMoveDuration: 250 - } - - background: NinePatchImage { - source: Imagine.url + "swipeview-background" - NinePatchImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"interactive": control.interactive}, - {"focused": control.contentItem.activeFocus}, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Switch.qml b/src/quickcontrols2/imagine/Switch.qml deleted file mode 100644 index a2f7a9a7..00000000 --- a/src/quickcontrols2/imagine/Switch.qml +++ /dev/null @@ -1,134 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Switch { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding, - implicitIndicatorHeight + topPadding + bottomPadding) - - spacing: 6 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - indicator: NinePatchImage { - x: control.text ? (control.mirrored ? control.width - width - control.rightPadding : control.leftPadding) : control.leftPadding + (control.availableWidth - width) / 2 - y: control.topPadding + (control.availableHeight - height) / 2 - width: Math.max(implicitWidth, handle.leftPadding && handle.rightPadding ? handle.implicitWidth : 2 * handle.implicitWidth) - height: Math.max(implicitHeight, handle.implicitHeight) - - source: Imagine.url + "switch-indicator" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - - property NinePatchImage handle: NinePatchImage { - readonly property real minPos: parent.leftPadding - leftPadding - readonly property real maxPos: parent.width - width + rightPadding - parent.rightPadding - readonly property real dragPos: control.visualPosition * parent.width - (width / 2) - - parent: control.indicator - - x: Math.max(minPos, Math.min(maxPos, control.visualPosition * parent.width - (width / 2))) - y: (parent.height - height) / 2 - - source: Imagine.url + "switch-handle" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - - Behavior on x { - enabled: !control.down - SmoothedAnimation { velocity: 200 } - } - } - } - - contentItem: Text { - leftPadding: control.indicator && !control.mirrored ? control.indicator.width + control.spacing : 0 - rightPadding: control.indicator && control.mirrored ? control.indicator.width + control.spacing : 0 - - text: control.text - font: control.font - color: control.palette.windowText - elide: Text.ElideRight - verticalAlignment: Text.AlignVCenter - } - - background: NinePatchImage { - source: Imagine.url + "switch-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/SwitchDelegate.qml b/src/quickcontrols2/imagine/SwitchDelegate.qml deleted file mode 100644 index 6fde82c1..00000000 --- a/src/quickcontrols2/imagine/SwitchDelegate.qml +++ /dev/null @@ -1,146 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.SwitchDelegate { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding, - implicitIndicatorHeight + topPadding + bottomPadding) - - spacing: 12 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - icon.width: 24 - icon.height: 24 - icon.color: control.palette.text - - indicator: NinePatchImage { - x: control.text ? (control.mirrored ? control.leftPadding : control.width - width - control.rightPadding) : control.leftPadding + (control.availableWidth - width) / 2 - y: control.topPadding + (control.availableHeight - height) / 2 - width: Math.max(implicitWidth, handle.leftPadding && handle.rightPadding ? handle.implicitWidth : 2 * handle.implicitWidth) - height: Math.max(implicitHeight, handle.implicitHeight) - - source: Imagine.url + "switchdelegate-indicator" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - - property NinePatchImage handle: NinePatchImage { - readonly property real minPos: parent.leftPadding - leftPadding - readonly property real maxPos: parent.width - width + rightPadding - parent.rightPadding - readonly property real dragPos: control.visualPosition * parent.width - (width / 2) - - parent: control.indicator - - x: Math.max(minPos, Math.min(maxPos, control.visualPosition * parent.width - (width / 2))) - y: (parent.height - height) / 2 - - source: Imagine.url + "switchdelegate-handle" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - - Behavior on x { - enabled: !control.down - SmoothedAnimation { velocity: 200 } - } - } - } - - contentItem: IconLabel { - leftPadding: control.mirrored ? control.indicator.width + control.spacing : 0 - rightPadding: !control.mirrored ? control.indicator.width + control.spacing : 0 - - spacing: control.spacing - mirrored: control.mirrored - display: control.display - alignment: control.display === IconLabel.IconOnly || control.display === IconLabel.TextUnderIcon ? Qt.AlignCenter : Qt.AlignLeft - - icon: control.icon - text: control.text - font: control.font - color: control.palette.text - } - - background: NinePatchImage { - source: Imagine.url + "switchdelegate-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/TabBar.qml b/src/quickcontrols2/imagine/TabBar.qml deleted file mode 100644 index 26c30e92..00000000 --- a/src/quickcontrols2/imagine/TabBar.qml +++ /dev/null @@ -1,87 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.TabBar { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - contentItem: ListView { - model: control.contentModel - currentIndex: control.currentIndex - - spacing: control.spacing - orientation: ListView.Horizontal - boundsBehavior: Flickable.StopAtBounds - flickableDirection: Flickable.AutoFlickIfNeeded - snapMode: ListView.SnapToItem - - highlightMoveDuration: 0 - highlightRangeMode: ListView.ApplyRange - preferredHighlightBegin: 48 - preferredHighlightEnd: width - 48 - } - - background: NinePatchImage { - source: Imagine.url + "tabbar-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"header": control.position === T.TabBar.Header }, - {"footer": control.position === T.TabBar.Footer }, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/TabButton.qml b/src/quickcontrols2/imagine/TabButton.qml deleted file mode 100644 index 023da2cb..00000000 --- a/src/quickcontrols2/imagine/TabButton.qml +++ /dev/null @@ -1,91 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.TabButton { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - spacing: 6 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - icon.width: 24 - icon.height: 24 - icon.color: control.palette.buttonText - - contentItem: IconLabel { - spacing: control.spacing - mirrored: control.mirrored - display: control.display - - icon: control.icon - text: control.text - font: control.font - color: control.palette.buttonText - } - - background: NinePatchImage { - source: Imagine.url + "tabbutton-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/TextArea.qml b/src/quickcontrols2/imagine/TextArea.qml deleted file mode 100644 index 556e746a..00000000 --- a/src/quickcontrols2/imagine/TextArea.qml +++ /dev/null @@ -1,96 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.TextArea { - id: control - - implicitWidth: Math.max(contentWidth + leftPadding + rightPadding, - implicitBackgroundWidth + leftInset + rightInset, - placeholder.implicitWidth + leftPadding + rightPadding) - implicitHeight: Math.max(contentHeight + topPadding + bottomPadding, - implicitBackgroundHeight + topInset + bottomInset, - placeholder.implicitHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - color: control.palette.text - selectionColor: control.palette.highlight - selectedTextColor: control.palette.highlightedText - verticalAlignment: Qt.AlignVCenter - placeholderTextColor: control.palette.placeholderText - - PlaceholderText { - id: placeholder - x: control.leftPadding - y: control.topPadding - width: control.width - (control.leftPadding + control.rightPadding) - height: control.height - (control.topPadding + control.bottomPadding) - - text: control.placeholderText - font: control.font - color: control.placeholderTextColor - verticalAlignment: control.verticalAlignment - visible: !control.length && !control.preeditText && (!control.activeFocus || control.horizontalAlignment !== Qt.AlignHCenter) - elide: Text.ElideRight - renderType: control.renderType - } - - background: NinePatchImage { - source: Imagine.url + "textarea-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"focused": control.activeFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/TextField.qml b/src/quickcontrols2/imagine/TextField.qml deleted file mode 100644 index e641a749..00000000 --- a/src/quickcontrols2/imagine/TextField.qml +++ /dev/null @@ -1,95 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.TextField { - id: control - - implicitWidth: implicitBackgroundWidth + leftInset + rightInset - || Math.max(contentWidth, placeholder.implicitWidth) + leftPadding + rightPadding - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding, - placeholder.implicitHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - color: control.palette.text - selectionColor: control.palette.highlight - selectedTextColor: control.palette.highlightedText - placeholderTextColor: control.palette.placeholderText - verticalAlignment: Qt.AlignVCenter - - PlaceholderText { - id: placeholder - x: control.leftPadding - y: control.topPadding - width: control.width - (control.leftPadding + control.rightPadding) - height: control.height - (control.topPadding + control.bottomPadding) - - text: control.placeholderText - font: control.font - color: control.placeholderTextColor - verticalAlignment: control.verticalAlignment - visible: !control.length && !control.preeditText && (!control.activeFocus || control.horizontalAlignment !== Qt.AlignHCenter) - elide: Text.ElideRight - renderType: control.renderType - } - - background: NinePatchImage { - source: Imagine.url + "textfield-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"focused": control.activeFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/ToolBar.qml b/src/quickcontrols2/imagine/ToolBar.qml deleted file mode 100644 index 4a343e3c..00000000 --- a/src/quickcontrols2/imagine/ToolBar.qml +++ /dev/null @@ -1,71 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.ToolBar { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - background: NinePatchImage { - source: Imagine.url + "toolbar-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"header": control.position === T.ToolBar.Header }, - {"footer": control.position === T.ToolBar.Footer }, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/ToolButton.qml b/src/quickcontrols2/imagine/ToolButton.qml deleted file mode 100644 index 1ef570e0..00000000 --- a/src/quickcontrols2/imagine/ToolButton.qml +++ /dev/null @@ -1,94 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.ToolButton { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - spacing: 6 // ### - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - icon.width: 24 - icon.height: 24 - icon.color: control.palette.buttonText - - contentItem: IconLabel { - spacing: control.spacing - mirrored: control.mirrored - display: control.display - - icon: control.icon - text: control.text - font: control.font - color: control.palette.buttonText - } - - background: NinePatchImage { - source: Imagine.url + "toolbutton-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"pressed": control.down}, - {"checked": control.checked}, - {"checkable": control.checkable}, - {"focused": control.visualFocus}, - {"highlighted": control.highlighted}, - {"flat": control.flat}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/ToolSeparator.qml b/src/quickcontrols2/imagine/ToolSeparator.qml deleted file mode 100644 index 962c14c7..00000000 --- a/src/quickcontrols2/imagine/ToolSeparator.qml +++ /dev/null @@ -1,83 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.ToolSeparator { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - contentItem: NinePatchImage { - source: Imagine.url + "toolseparator-separator" - NinePatchImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } - - background: NinePatchImage { - source: Imagine.url + "toolseparator-background" - NinePatchImageSelector on source { - states: [ - {"vertical": control.vertical}, - {"horizontal": control.horizontal}, - {"disabled": !control.enabled}, - {"mirrored": control.mirrored} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/ToolTip.qml b/src/quickcontrols2/imagine/ToolTip.qml deleted file mode 100644 index f5261400..00000000 --- a/src/quickcontrols2/imagine/ToolTip.qml +++ /dev/null @@ -1,85 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.ToolTip { - id: control - - x: parent ? (parent.width - implicitWidth) / 2 : 0 - (background ? background.leftInset : 0) - y: -implicitHeight - (background ? background.topInset : 0) - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - contentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - contentHeight + topPadding + bottomPadding) - - topMargin: background ? background.topInset : 0 - leftMargin: background ? background.leftInset : 0 - rightMargin: background ? background.rightInset : 0 - bottomMargin: background ? background.bottomInset : 0 - - topPadding: background ? background.topPadding : 0 - leftPadding: background ? background.leftPadding : 0 - rightPadding: background ? background.rightPadding : 0 - bottomPadding: background ? background.bottomPadding : 0 - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - closePolicy: T.Popup.CloseOnEscape | T.Popup.CloseOnPressOutsideParent | T.Popup.CloseOnReleaseOutsideParent - - contentItem: Text { - text: control.text - font: control.font - wrapMode: Text.Wrap - color: control.palette.toolTipText - } - - background: NinePatchImage { - source: Imagine.url + "tooltip-background" - NinePatchImageSelector on source { - states: [ - // ### - ] - } - } -} diff --git a/src/quickcontrols2/imagine/Tumbler.qml b/src/quickcontrols2/imagine/Tumbler.qml deleted file mode 100644 index f380a000..00000000 --- a/src/quickcontrols2/imagine/Tumbler.qml +++ /dev/null @@ -1,93 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T -import QtQuick.Controls.impl -import QtQuick.Controls.Imagine -import QtQuick.Controls.Imagine.impl - -T.Tumbler { - id: control - - implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, - implicitContentWidth + leftPadding + rightPadding) - implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, - implicitContentHeight + topPadding + bottomPadding) - - topInset: background ? -background.topInset || 0 : 0 - leftInset: background ? -background.leftInset || 0 : 0 - rightInset: background ? -background.rightInset || 0 : 0 - bottomInset: background ? -background.bottomInset || 0 : 0 - - delegate: Text { - text: modelData - font: control.font - color: control.palette.text - opacity: (1.0 - Math.abs(Tumbler.displacement) / (control.visibleItemCount / 2)) * (control.enabled ? 1 : 0.6) - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - } - - contentItem: TumblerView { - implicitWidth: 60 - implicitHeight: 200 - model: control.model - delegate: control.delegate - path: Path { - startX: control.contentItem.width / 2 - startY: -control.contentItem.delegateHeight / 2 - PathLine { - x: control.contentItem.width / 2 - y: (control.visibleItemCount + 1) * control.contentItem.delegateHeight - control.contentItem.delegateHeight / 2 - } - } - - property real delegateHeight: control.availableHeight / control.visibleItemCount - } - - background: NinePatchImage { - source: Imagine.url + "tumbler-background" - NinePatchImageSelector on source { - states: [ - {"disabled": !control.enabled}, - {"focused": control.visualFocus}, - {"mirrored": control.mirrored}, - {"hovered": control.hovered} - ] - } - } -} diff --git a/src/quickcontrols2/imagine/VerticalHeaderView.qml b/src/quickcontrols2/imagine/VerticalHeaderView.qml deleted file mode 100644 index 7c057e01..00000000 --- a/src/quickcontrols2/imagine/VerticalHeaderView.qml +++ /dev/null @@ -1,67 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick -import QtQuick.Templates as T - -T.VerticalHeaderView { - id: control - - implicitWidth: contentWidth - implicitHeight: syncView ? syncView.height : 0 - - delegate: Rectangle { - // Qt6: add cellPadding (and font etc) as public API in headerview - readonly property real cellPadding: 8 - - implicitWidth: Math.max(control.width, text.implicitWidth + (cellPadding * 2)) - implicitHeight: text.implicitHeight + (cellPadding * 2) - color: "#f6f6f6" - border.color: "#e4e4e4" - - Text { - id: text - text: control.textRole ? (Array.isArray(control.model) ? modelData[control.textRole] - : model[control.textRole]) - : modelData - width: parent.width - height: parent.height - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - color: "#ff26282a" - } - } -} diff --git a/src/quickcontrols2/imagine/design/9-patch-export.sketchplugin/Contents/Sketch/9-patch-export.js b/src/quickcontrols2/imagine/design/9-patch-export.sketchplugin/Contents/Sketch/9-patch-export.js deleted file mode 100644 index a7f9a459..00000000 --- a/src/quickcontrols2/imagine/design/9-patch-export.sketchplugin/Contents/Sketch/9-patch-export.js +++ /dev/null @@ -1,24 +0,0 @@ -// 9-patch export -// -// This plugin crops upscaled 9-patch PNG assets when exported from Sketch, -// to ensure that 9-patch borders remain 1px wide when upscaled. -// -function onExportSlices(context) { - var exports = context.actionContext.exports; - for (var i = 0; i < exports.count(); ++i) { - var name = exports[i].request.name(); - var scale = exports[i].request.scale(); - if (scale > 1 && name.endsWith(".9")) - cropAsset(exports[i].path, scale - 1); - } -} - -function cropAsset(path, inset) { - var url = NSURL.fileURLWithPath(path); - var img = CIImage.imageWithContentsOfURL(url); - var rect = NSInsetRect(img.extent(), inset, inset); - var cropped = img.imageByCroppingToRect(rect); - var rep = NSBitmapImageRep.alloc().initWithCIImage(cropped); - var data = rep.PNGRepresentationWithInterlaced(false); - data.writeToFile(path); -} diff --git a/src/quickcontrols2/imagine/design/9-patch-export.sketchplugin/Contents/Sketch/manifest.json b/src/quickcontrols2/imagine/design/9-patch-export.sketchplugin/Contents/Sketch/manifest.json deleted file mode 100644 index 40807aa3..00000000 --- a/src/quickcontrols2/imagine/design/9-patch-export.sketchplugin/Contents/Sketch/manifest.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name" : "9-patch export", - "description" : "Crops upscaled 9-patch PNG assets when exported from Sketch.", - "version" : "0.1", - "identifier" : "org.qt-project.sketch.9-patch-export", - "author" : "The Qt Project", - "commands" : [ - { - "name" : "9-patch export", - "identifier" : "9-patch-export", - "script" : "9-patch-export.js", - "handlers" : { - "actions" : { - "ExportSlices": "onExportSlices", - }, - }, - }, - ], -} diff --git a/src/quickcontrols2/imagine/design/imagine.sketch b/src/quickcontrols2/imagine/design/imagine.sketch Binary files differdeleted file mode 100644 index f3535b37..00000000 --- a/src/quickcontrols2/imagine/design/imagine.sketch +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/applicationwindow-background.png b/src/quickcontrols2/imagine/images/applicationwindow-background.png Binary files differdeleted file mode 100644 index 2d8d70f2..00000000 --- a/src/quickcontrols2/imagine/images/applicationwindow-background.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 18fbaa4c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 241232b1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8eb1b1ec..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/applicationwindow-overlay-modal.png b/src/quickcontrols2/imagine/images/applicationwindow-overlay-modal.png Binary files differdeleted file mode 100644 index d4a43d1c..00000000 --- a/src/quickcontrols2/imagine/images/applicationwindow-overlay-modal.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c9a8f412..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4a1084a9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b92e600d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/applicationwindow-overlay.png b/src/quickcontrols2/imagine/images/applicationwindow-overlay.png Binary files differdeleted file mode 100644 index b7da23c0..00000000 --- a/src/quickcontrols2/imagine/images/applicationwindow-overlay.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 23828d5a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d9d53828..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a76c1a3a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/busyindicator-animation.webp b/src/quickcontrols2/imagine/images/busyindicator-animation.webp Binary files differdeleted file mode 100644 index ebf04c4a..00000000 --- a/src/quickcontrols2/imagine/images/busyindicator-animation.webp +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 43805a0b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b700b81f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bfaa8df9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-checked-disabled.9.png b/src/quickcontrols2/imagine/images/button-background-checked-disabled.9.png Binary files differdeleted file mode 100644 index 8196289c..00000000 --- a/src/quickcontrols2/imagine/images/button-background-checked-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 76cd4490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bd6259a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e081520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-checked-focused.9.png b/src/quickcontrols2/imagine/images/button-background-checked-focused.9.png Binary files differdeleted file mode 100644 index e3d14e99..00000000 --- a/src/quickcontrols2/imagine/images/button-background-checked-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ebc74b4a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 75834723..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9b570f4d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-checked-hovered.9.png b/src/quickcontrols2/imagine/images/button-background-checked-hovered.9.png Binary files differdeleted file mode 100644 index e3d14e99..00000000 --- a/src/quickcontrols2/imagine/images/button-background-checked-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ebc74b4a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 75834723..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9b570f4d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-checked.9.png b/src/quickcontrols2/imagine/images/button-background-checked.9.png Binary files differdeleted file mode 100644 index d0942509..00000000 --- a/src/quickcontrols2/imagine/images/button-background-checked.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c38bcd02..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 80889bf8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 05de8377..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-disabled.9.png b/src/quickcontrols2/imagine/images/button-background-disabled.9.png Binary files differdeleted file mode 100644 index 8196289c..00000000 --- a/src/quickcontrols2/imagine/images/button-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 76cd4490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bd6259a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e081520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-flat-checked-pressed.9.png b/src/quickcontrols2/imagine/images/button-background-flat-checked-pressed.9.png Binary files differdeleted file mode 100644 index 8196289c..00000000 --- a/src/quickcontrols2/imagine/images/button-background-flat-checked-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 76cd4490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bd6259a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e081520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-flat-checked.9.png b/src/quickcontrols2/imagine/images/button-background-flat-checked.9.png Binary files differdeleted file mode 100644 index 8196289c..00000000 --- a/src/quickcontrols2/imagine/images/button-background-flat-checked.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 76cd4490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bd6259a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e081520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-flat-disabled.9.png b/src/quickcontrols2/imagine/images/button-background-flat-disabled.9.png Binary files differdeleted file mode 100644 index 59907409..00000000 --- a/src/quickcontrols2/imagine/images/button-background-flat-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d66acd9c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 89b8c353..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d3a675cf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-flat-highlighted-checked.9.png b/src/quickcontrols2/imagine/images/button-background-flat-highlighted-checked.9.png Binary files differdeleted file mode 100644 index 8196289c..00000000 --- a/src/quickcontrols2/imagine/images/button-background-flat-highlighted-checked.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 76cd4490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bd6259a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e081520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-flat-highlighted-pressed.9.png b/src/quickcontrols2/imagine/images/button-background-flat-highlighted-pressed.9.png Binary files differdeleted file mode 100644 index 8196289c..00000000 --- a/src/quickcontrols2/imagine/images/button-background-flat-highlighted-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 76cd4490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bd6259a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e081520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-flat-highlighted.9.png b/src/quickcontrols2/imagine/images/button-background-flat-highlighted.9.png Binary files differdeleted file mode 100644 index 59907409..00000000 --- a/src/quickcontrols2/imagine/images/button-background-flat-highlighted.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d66acd9c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 89b8c353..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d3a675cf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-flat-hovered.9.png b/src/quickcontrols2/imagine/images/button-background-flat-hovered.9.png Binary files differdeleted file mode 100644 index 8196289c..00000000 --- a/src/quickcontrols2/imagine/images/button-background-flat-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 76cd4490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bd6259a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e081520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-flat-pressed.9.png b/src/quickcontrols2/imagine/images/button-background-flat-pressed.9.png Binary files differdeleted file mode 100644 index 8196289c..00000000 --- a/src/quickcontrols2/imagine/images/button-background-flat-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 76cd4490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bd6259a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e081520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-flat.9.png b/src/quickcontrols2/imagine/images/button-background-flat.9.png Binary files differdeleted file mode 100644 index 59907409..00000000 --- a/src/quickcontrols2/imagine/images/button-background-flat.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d66acd9c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 89b8c353..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d3a675cf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-focused.9.png b/src/quickcontrols2/imagine/images/button-background-focused.9.png Binary files differdeleted file mode 100644 index 42e40e60..00000000 --- a/src/quickcontrols2/imagine/images/button-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 90dc70bf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2ed2340c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e1428e37..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-highlighted-checked.9.png b/src/quickcontrols2/imagine/images/button-background-highlighted-checked.9.png Binary files differdeleted file mode 100644 index 7a2a4011..00000000 --- a/src/quickcontrols2/imagine/images/button-background-highlighted-checked.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 05b2f214..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c22e1f3..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c5617f0e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-highlighted-disabled.9.png b/src/quickcontrols2/imagine/images/button-background-highlighted-disabled.9.png Binary files differdeleted file mode 100644 index 8196289c..00000000 --- a/src/quickcontrols2/imagine/images/button-background-highlighted-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 76cd4490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bd6259a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e081520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-highlighted-focused.9.png b/src/quickcontrols2/imagine/images/button-background-highlighted-focused.9.png Binary files differdeleted file mode 100644 index 3ea580e0..00000000 --- a/src/quickcontrols2/imagine/images/button-background-highlighted-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index effcce1f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 502ac689..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3243231e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-highlighted-hovered.9.png b/src/quickcontrols2/imagine/images/button-background-highlighted-hovered.9.png Binary files differdeleted file mode 100644 index 3ea580e0..00000000 --- a/src/quickcontrols2/imagine/images/button-background-highlighted-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index effcce1f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 502ac689..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3243231e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-highlighted-pressed.9.png b/src/quickcontrols2/imagine/images/button-background-highlighted-pressed.9.png Binary files differdeleted file mode 100644 index 7a2a4011..00000000 --- a/src/quickcontrols2/imagine/images/button-background-highlighted-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 05b2f214..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c22e1f3..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c5617f0e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-highlighted.9.png b/src/quickcontrols2/imagine/images/button-background-highlighted.9.png Binary files differdeleted file mode 100644 index 7761595f..00000000 --- a/src/quickcontrols2/imagine/images/button-background-highlighted.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bb42c45..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c23c021..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 365cd048..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-hovered.9.png b/src/quickcontrols2/imagine/images/button-background-hovered.9.png Binary files differdeleted file mode 100644 index 42e40e60..00000000 --- a/src/quickcontrols2/imagine/images/button-background-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 90dc70bf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2ed2340c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e1428e37..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background-pressed.9.png b/src/quickcontrols2/imagine/images/button-background-pressed.9.png Binary files differdeleted file mode 100644 index d0942509..00000000 --- a/src/quickcontrols2/imagine/images/button-background-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c38bcd02..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 80889bf8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 05de8377..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/button-background.9.png b/src/quickcontrols2/imagine/images/button-background.9.png Binary files differdeleted file mode 100644 index 6f1daed8..00000000 --- a/src/quickcontrols2/imagine/images/button-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4a2507f5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4f13b4ef..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0e1ab452..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-checked-focused.png b/src/quickcontrols2/imagine/images/checkbox-indicator-checked-focused.png Binary files differdeleted file mode 100644 index d55a5204..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-checked-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7289f639..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 02d6cdf2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3f074dbf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-checked-hovered.png b/src/quickcontrols2/imagine/images/checkbox-indicator-checked-hovered.png Binary files differdeleted file mode 100644 index d55a5204..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-checked-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7289f639..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 02d6cdf2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3f074dbf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-checked-pressed.png b/src/quickcontrols2/imagine/images/checkbox-indicator-checked-pressed.png Binary files differdeleted file mode 100644 index 9c03d096..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-checked-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 680ba3ef..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 974205de..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2c8b6aab..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-checked.png b/src/quickcontrols2/imagine/images/checkbox-indicator-checked.png Binary files differdeleted file mode 100644 index 598b163a..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-checked.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 06382264..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 12a32dcd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4bc6701d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-disabled.png b/src/quickcontrols2/imagine/images/checkbox-indicator-disabled.png Binary files differdeleted file mode 100644 index 0a499f8f..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index db652c5a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 482f045d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a386e272..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-focused.png b/src/quickcontrols2/imagine/images/checkbox-indicator-focused.png Binary files differdeleted file mode 100644 index c5eb8527..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8496fb1a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 30849fd0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 55ce7c0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-hovered.png b/src/quickcontrols2/imagine/images/checkbox-indicator-hovered.png Binary files differdeleted file mode 100644 index c5eb8527..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8496fb1a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 30849fd0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 55ce7c0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked-focused.png b/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked-focused.png Binary files differdeleted file mode 100644 index cd07b1cc..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index acae6aff..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1e8d2c45..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 577017c4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked-hovered.png b/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked-hovered.png Binary files differdeleted file mode 100644 index cd07b1cc..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index acae6aff..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1e8d2c45..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 577017c4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked-pressed.png b/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked-pressed.png Binary files differdeleted file mode 100644 index 928706ab..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3645d78a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ade63bd0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cd73617e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked.png b/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked.png Binary files differdeleted file mode 100644 index e404a4e3..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-partially-checked.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2d0f5176..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4b9777b7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e0f67e98..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator-pressed.png b/src/quickcontrols2/imagine/images/checkbox-indicator-pressed.png Binary files differdeleted file mode 100644 index a1baaf90..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 81a7c364..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9325de38..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c93b8fb8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkbox-indicator.png b/src/quickcontrols2/imagine/images/checkbox-indicator.png Binary files differdeleted file mode 100644 index 2b3e2323..00000000 --- a/src/quickcontrols2/imagine/images/checkbox-indicator.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ce8985db..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2968731d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ea8da284..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-background-disabled.9.png b/src/quickcontrols2/imagine/images/checkdelegate-background-disabled.9.png Binary files differdeleted file mode 100644 index 23570729..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c7abb65c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 46b84d7d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f4dfd338..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-background-focused.9.png b/src/quickcontrols2/imagine/images/checkdelegate-background-focused.9.png Binary files differdeleted file mode 100644 index 6ae574d5..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b61562c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e46c0bf1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 010444e8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-background-highlighted.9.png b/src/quickcontrols2/imagine/images/checkdelegate-background-highlighted.9.png Binary files differdeleted file mode 100644 index e79d8e1d..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-background-highlighted.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ea68d35f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6d610415..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 590cca96..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-background-hovered.9.png b/src/quickcontrols2/imagine/images/checkdelegate-background-hovered.9.png Binary files differdeleted file mode 100644 index b8749743..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-background-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5a136a0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f47a366b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ecb680f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-background-pressed.9.png b/src/quickcontrols2/imagine/images/checkdelegate-background-pressed.9.png Binary files differdeleted file mode 100644 index 6ae574d5..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-background-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b61562c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e46c0bf1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 010444e8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-background.9.png b/src/quickcontrols2/imagine/images/checkdelegate-background.9.png Binary files differdeleted file mode 100644 index b8749743..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5a136a0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f47a366b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ecb680f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked-focused.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked-focused.png Binary files differdeleted file mode 100644 index d55a5204..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7289f639..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 02d6cdf2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3f074dbf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked-hovered.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked-hovered.png Binary files differdeleted file mode 100644 index d55a5204..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7289f639..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 02d6cdf2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3f074dbf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked-pressed.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked-pressed.png Binary files differdeleted file mode 100644 index 9c03d096..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 680ba3ef..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 974205de..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2c8b6aab..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked.png Binary files differdeleted file mode 100644 index 598b163a..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-checked.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 06382264..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 12a32dcd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4bc6701d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-disabled.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-disabled.png Binary files differdeleted file mode 100644 index 0a499f8f..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index db652c5a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 482f045d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a386e272..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-focused.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-focused.png Binary files differdeleted file mode 100644 index c5eb8527..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8496fb1a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 30849fd0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 55ce7c0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-hovered.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-hovered.png Binary files differdeleted file mode 100644 index c5eb8527..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8496fb1a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 30849fd0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 55ce7c0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked-focused.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked-focused.png Binary files differdeleted file mode 100644 index cd07b1cc..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index acae6aff..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1e8d2c45..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 577017c4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked-hovered.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked-hovered.png Binary files differdeleted file mode 100644 index cd07b1cc..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index acae6aff..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1e8d2c45..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 577017c4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked-pressed.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked-pressed.png Binary files differdeleted file mode 100644 index 928706ab..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3645d78a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ade63bd0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cd73617e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked.png Binary files differdeleted file mode 100644 index e404a4e3..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-partially-checked.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2d0f5176..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4b9777b7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e0f67e98..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator-pressed.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator-pressed.png Binary files differdeleted file mode 100644 index a1baaf90..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 81a7c364..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9325de38..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c93b8fb8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/checkdelegate-indicator.png b/src/quickcontrols2/imagine/images/checkdelegate-indicator.png Binary files differdeleted file mode 100644 index 2b3e2323..00000000 --- a/src/quickcontrols2/imagine/images/checkdelegate-indicator.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ce8985db..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2968731d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ea8da284..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-background-disabled.9.png b/src/quickcontrols2/imagine/images/combobox-background-disabled.9.png Binary files differdeleted file mode 100644 index a91b4b55..00000000 --- a/src/quickcontrols2/imagine/images/combobox-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 570b990c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b0f9b9c4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6e810f75..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-background-editable-disabled.9.png b/src/quickcontrols2/imagine/images/combobox-background-editable-disabled.9.png Binary files differdeleted file mode 100644 index e192afb8..00000000 --- a/src/quickcontrols2/imagine/images/combobox-background-editable-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 58a0f6e9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cd6f226b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ff9103b0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-background-editable-focused.9.png b/src/quickcontrols2/imagine/images/combobox-background-editable-focused.9.png Binary files differdeleted file mode 100644 index a0f079bc..00000000 --- a/src/quickcontrols2/imagine/images/combobox-background-editable-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 83cb503f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4cf96edf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5823de80..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-background-editable.9.png b/src/quickcontrols2/imagine/images/combobox-background-editable.9.png Binary files differdeleted file mode 100644 index 8edac132..00000000 --- a/src/quickcontrols2/imagine/images/combobox-background-editable.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 15e465f1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 910b48d2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ff0f6411..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-background-focused.9.png b/src/quickcontrols2/imagine/images/combobox-background-focused.9.png Binary files differdeleted file mode 100644 index a3865fa6..00000000 --- a/src/quickcontrols2/imagine/images/combobox-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index fc49f4b8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b432b4ec..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 15862059..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-background-hovered.9.png b/src/quickcontrols2/imagine/images/combobox-background-hovered.9.png Binary files differdeleted file mode 100644 index a3865fa6..00000000 --- a/src/quickcontrols2/imagine/images/combobox-background-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index fc49f4b8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b432b4ec..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 15862059..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-background-open.9.png b/src/quickcontrols2/imagine/images/combobox-background-open.9.png Binary files differdeleted file mode 100644 index 1be84403..00000000 --- a/src/quickcontrols2/imagine/images/combobox-background-open.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 95f7cd6d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2f71271c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 17f6f2ce..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-background-pressed.9.png b/src/quickcontrols2/imagine/images/combobox-background-pressed.9.png Binary files differdeleted file mode 100644 index 1be84403..00000000 --- a/src/quickcontrols2/imagine/images/combobox-background-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 95f7cd6d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2f71271c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 17f6f2ce..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-background.9.png b/src/quickcontrols2/imagine/images/combobox-background.9.png Binary files differdeleted file mode 100644 index 4ed8ddc3..00000000 --- a/src/quickcontrols2/imagine/images/combobox-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1d7a8894..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 313630f8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index be63d56e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-indicator-disabled.png b/src/quickcontrols2/imagine/images/combobox-indicator-disabled.png Binary files differdeleted file mode 100644 index 761537f9..00000000 --- a/src/quickcontrols2/imagine/images/combobox-indicator-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 322b7b68..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 73feec34..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 910c4d3d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-indicator-editable-disabled.png b/src/quickcontrols2/imagine/images/combobox-indicator-editable-disabled.png Binary files differdeleted file mode 100644 index 4399b6aa..00000000 --- a/src/quickcontrols2/imagine/images/combobox-indicator-editable-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e45a2ad1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 23f74b10..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index db495899..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-indicator-editable-mirrored-disabled.png b/src/quickcontrols2/imagine/images/combobox-indicator-editable-mirrored-disabled.png Binary files differdeleted file mode 100644 index 2e954ae9..00000000 --- a/src/quickcontrols2/imagine/images/combobox-indicator-editable-mirrored-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 252a5e37..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6d939a93..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 00a21ebd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-indicator-editable-mirrored.png b/src/quickcontrols2/imagine/images/combobox-indicator-editable-mirrored.png Binary files differdeleted file mode 100644 index ad529912..00000000 --- a/src/quickcontrols2/imagine/images/combobox-indicator-editable-mirrored.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 70b995c1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9b865377..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b4f7ae25..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-indicator-editable.png b/src/quickcontrols2/imagine/images/combobox-indicator-editable.png Binary files differdeleted file mode 100644 index e053109f..00000000 --- a/src/quickcontrols2/imagine/images/combobox-indicator-editable.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b8dfd6fe..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2cdee7a8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2569b4ae..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-indicator.png b/src/quickcontrols2/imagine/images/combobox-indicator.png Binary files differdeleted file mode 100644 index cc32f2a2..00000000 --- a/src/quickcontrols2/imagine/images/combobox-indicator.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 57ea3f30..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 384f8152..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f326c03b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/combobox-popup.9.png b/src/quickcontrols2/imagine/images/combobox-popup.9.png Binary files differdeleted file mode 100644 index 7344cdf6..00000000 --- a/src/quickcontrols2/imagine/images/combobox-popup.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 00c88c7d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 82d911ed..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 98db30af..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-background-checked-focused.9.png b/src/quickcontrols2/imagine/images/delaybutton-background-checked-focused.9.png Binary files differdeleted file mode 100644 index e3d14e99..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-background-checked-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ebc74b4a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 75834723..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9b570f4d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-background-checked-hovered.9.png b/src/quickcontrols2/imagine/images/delaybutton-background-checked-hovered.9.png Binary files differdeleted file mode 100644 index e3d14e99..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-background-checked-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ebc74b4a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 75834723..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9b570f4d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-background-checked.9.png b/src/quickcontrols2/imagine/images/delaybutton-background-checked.9.png Binary files differdeleted file mode 100644 index d0942509..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-background-checked.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c38bcd02..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 80889bf8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 05de8377..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-background-disabled-checked.9.png b/src/quickcontrols2/imagine/images/delaybutton-background-disabled-checked.9.png Binary files differdeleted file mode 100644 index 8196289c..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-background-disabled-checked.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 76cd4490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bd6259a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e081520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-background-disabled.9.png b/src/quickcontrols2/imagine/images/delaybutton-background-disabled.9.png Binary files differdeleted file mode 100644 index 8196289c..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 76cd4490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bd6259a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e081520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-background-focused.9.png b/src/quickcontrols2/imagine/images/delaybutton-background-focused.9.png Binary files differdeleted file mode 100644 index 294ff8bd..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 48e2bbcb..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0981eb2a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4ae48bfa..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-background-hovered.9.png b/src/quickcontrols2/imagine/images/delaybutton-background-hovered.9.png Binary files differdeleted file mode 100644 index 42e40e60..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-background-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 90dc70bf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2ed2340c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e1428e37..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-background-pressed.9.png b/src/quickcontrols2/imagine/images/delaybutton-background-pressed.9.png Binary files differdeleted file mode 100644 index d0942509..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-background-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c38bcd02..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 80889bf8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 05de8377..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-background.9.png b/src/quickcontrols2/imagine/images/delaybutton-background.9.png Binary files differdeleted file mode 100644 index 6f1daed8..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4a2507f5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4f13b4ef..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0e1ab452..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-mask.9.png b/src/quickcontrols2/imagine/images/delaybutton-mask.9.png Binary files differdeleted file mode 100644 index 76d3967d..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-mask.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b8db224c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3bff2c15..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 045c7fac..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-progress-disabled.9.png b/src/quickcontrols2/imagine/images/delaybutton-progress-disabled.9.png Binary files differdeleted file mode 100644 index 5c209c9c..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-progress-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0ef11a8d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f3f8e547..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b24f50e6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/delaybutton-progress.9.png b/src/quickcontrols2/imagine/images/delaybutton-progress.9.png Binary files differdeleted file mode 100644 index 4dd3aec5..00000000 --- a/src/quickcontrols2/imagine/images/delaybutton-progress.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cd422076..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 08610300..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 24cc19ba..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dial-background-disabled.png b/src/quickcontrols2/imagine/images/dial-background-disabled.png Binary files differdeleted file mode 100644 index d7c4f847..00000000 --- a/src/quickcontrols2/imagine/images/dial-background-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 56b085df..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4f1e17e7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4aacbf82..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dial-background-focused.png b/src/quickcontrols2/imagine/images/dial-background-focused.png Binary files differdeleted file mode 100644 index fc53d5c4..00000000 --- a/src/quickcontrols2/imagine/images/dial-background-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b547a17..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7b8a2582..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 406f46b5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dial-background.png b/src/quickcontrols2/imagine/images/dial-background.png Binary files differdeleted file mode 100644 index 58aa09ed..00000000 --- a/src/quickcontrols2/imagine/images/dial-background.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 87cd9a0f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 103fb461..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c290f84a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dial-handle-disabled.png b/src/quickcontrols2/imagine/images/dial-handle-disabled.png Binary files differdeleted file mode 100644 index a93fd0f2..00000000 --- a/src/quickcontrols2/imagine/images/dial-handle-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2cd536be..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 56b9fe06..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5098d688..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dial-handle-focused-hovered.png b/src/quickcontrols2/imagine/images/dial-handle-focused-hovered.png Binary files differdeleted file mode 100644 index 2a143f2a..00000000 --- a/src/quickcontrols2/imagine/images/dial-handle-focused-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 24dfee82..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 16e128d5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b4523acb..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dial-handle-focused-pressed.png b/src/quickcontrols2/imagine/images/dial-handle-focused-pressed.png Binary files differdeleted file mode 100644 index d43971ff..00000000 --- a/src/quickcontrols2/imagine/images/dial-handle-focused-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index caa2376e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c2913883..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 50ff1c8b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dial-handle-focused.png b/src/quickcontrols2/imagine/images/dial-handle-focused.png Binary files differdeleted file mode 100644 index d2733474..00000000 --- a/src/quickcontrols2/imagine/images/dial-handle-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c7bc8f74..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c0dcd945..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b9d2234c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dial-handle-hovered.png b/src/quickcontrols2/imagine/images/dial-handle-hovered.png Binary files differdeleted file mode 100644 index f5d0ac6f..00000000 --- a/src/quickcontrols2/imagine/images/dial-handle-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index da23baaa..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7287a419..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9f6982dd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dial-handle-pressed.png b/src/quickcontrols2/imagine/images/dial-handle-pressed.png Binary files differdeleted file mode 100644 index 3b98e124..00000000 --- a/src/quickcontrols2/imagine/images/dial-handle-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 454e7364..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 794516da..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 211b1135..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dial-handle.png b/src/quickcontrols2/imagine/images/dial-handle.png Binary files differdeleted file mode 100644 index 652b82d3..00000000 --- a/src/quickcontrols2/imagine/images/dial-handle.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3c86a59b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cbfcdbcd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2872e006..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dialog-background.9.png b/src/quickcontrols2/imagine/images/dialog-background.9.png Binary files differdeleted file mode 100644 index c842b5ff..00000000 --- a/src/quickcontrols2/imagine/images/dialog-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ca23df1f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 46cd4065..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3da74119..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dialog-overlay-modal.png b/src/quickcontrols2/imagine/images/dialog-overlay-modal.png Binary files differdeleted file mode 100644 index d4a43d1c..00000000 --- a/src/quickcontrols2/imagine/images/dialog-overlay-modal.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c9a8f412..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4a1084a9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b92e600d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dialog-overlay.png b/src/quickcontrols2/imagine/images/dialog-overlay.png Binary files differdeleted file mode 100644 index b7da23c0..00000000 --- a/src/quickcontrols2/imagine/images/dialog-overlay.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 23828d5a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d9d53828..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a76c1a3a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/dialogbuttonbox-background.9.png b/src/quickcontrols2/imagine/images/dialogbuttonbox-background.9.png Binary files differdeleted file mode 100644 index 4b080c7f..00000000 --- a/src/quickcontrols2/imagine/images/dialogbuttonbox-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 38306bea..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 66afaabe..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7d0db539..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/drawer-background-bottom.9.png b/src/quickcontrols2/imagine/images/drawer-background-bottom.9.png Binary files differdeleted file mode 100644 index 023d8bf8..00000000 --- a/src/quickcontrols2/imagine/images/drawer-background-bottom.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b229ce9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c61118b6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 08b2e25f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/drawer-background-left.9.png b/src/quickcontrols2/imagine/images/drawer-background-left.9.png Binary files differdeleted file mode 100644 index 5145a3a3..00000000 --- a/src/quickcontrols2/imagine/images/drawer-background-left.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 95a80ab5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bd330b7f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 10f0702a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/drawer-background-right.9.png b/src/quickcontrols2/imagine/images/drawer-background-right.9.png Binary files differdeleted file mode 100644 index 37afb734..00000000 --- a/src/quickcontrols2/imagine/images/drawer-background-right.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cfbc8f35..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9a49b6d5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 56405776..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/drawer-background-top.9.png b/src/quickcontrols2/imagine/images/drawer-background-top.9.png Binary files differdeleted file mode 100644 index 56da059f..00000000 --- a/src/quickcontrols2/imagine/images/drawer-background-top.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 976671ce..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7c07deba..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e3b1edf7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/drawer-overlay-modal.png b/src/quickcontrols2/imagine/images/drawer-overlay-modal.png Binary files differdeleted file mode 100644 index d4a43d1c..00000000 --- a/src/quickcontrols2/imagine/images/drawer-overlay-modal.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c9a8f412..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4a1084a9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b92e600d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/drawer-overlay.png b/src/quickcontrols2/imagine/images/drawer-overlay.png Binary files differdeleted file mode 100644 index b7da23c0..00000000 --- a/src/quickcontrols2/imagine/images/drawer-overlay.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 23828d5a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d9d53828..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a76c1a3a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/frame-background.9.png b/src/quickcontrols2/imagine/images/frame-background.9.png Binary files differdeleted file mode 100644 index 8674059d..00000000 --- a/src/quickcontrols2/imagine/images/frame-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 19661496..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 07d644be..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bf47d2a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/groupbox-background.9.png b/src/quickcontrols2/imagine/images/groupbox-background.9.png Binary files differdeleted file mode 100644 index 8674059d..00000000 --- a/src/quickcontrols2/imagine/images/groupbox-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 19661496..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 07d644be..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bf47d2a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/groupbox-title.9.png b/src/quickcontrols2/imagine/images/groupbox-title.9.png Binary files differdeleted file mode 100644 index e85e0cb1..00000000 --- a/src/quickcontrols2/imagine/images/groupbox-title.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d5359d85..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0e4b5c9f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 908dfe6b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/itemdelegate-background-disabled.9.png b/src/quickcontrols2/imagine/images/itemdelegate-background-disabled.9.png Binary files differdeleted file mode 100644 index 23570729..00000000 --- a/src/quickcontrols2/imagine/images/itemdelegate-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c7abb65c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 46b84d7d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f4dfd338..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/itemdelegate-background-focused.9.png b/src/quickcontrols2/imagine/images/itemdelegate-background-focused.9.png Binary files differdeleted file mode 100644 index 6ae574d5..00000000 --- a/src/quickcontrols2/imagine/images/itemdelegate-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b61562c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e46c0bf1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 010444e8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/itemdelegate-background-highlighted.9.png b/src/quickcontrols2/imagine/images/itemdelegate-background-highlighted.9.png Binary files differdeleted file mode 100644 index e79d8e1d..00000000 --- a/src/quickcontrols2/imagine/images/itemdelegate-background-highlighted.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ea68d35f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6d610415..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 590cca96..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/itemdelegate-background-hovered.9.png b/src/quickcontrols2/imagine/images/itemdelegate-background-hovered.9.png Binary files differdeleted file mode 100644 index b8749743..00000000 --- a/src/quickcontrols2/imagine/images/itemdelegate-background-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5a136a0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f47a366b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ecb680f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/itemdelegate-background-pressed.9.png b/src/quickcontrols2/imagine/images/itemdelegate-background-pressed.9.png Binary files differdeleted file mode 100644 index 6ae574d5..00000000 --- a/src/quickcontrols2/imagine/images/itemdelegate-background-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b61562c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e46c0bf1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 010444e8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/itemdelegate-background.9.png b/src/quickcontrols2/imagine/images/itemdelegate-background.9.png Binary files differdeleted file mode 100644 index b8749743..00000000 --- a/src/quickcontrols2/imagine/images/itemdelegate-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5a136a0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f47a366b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ecb680f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menu-background.9.png b/src/quickcontrols2/imagine/images/menu-background.9.png Binary files differdeleted file mode 100644 index 3195fbc3..00000000 --- a/src/quickcontrols2/imagine/images/menu-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 454c347c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 32ed6086..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 948cc3e9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-arrow-disabled.png b/src/quickcontrols2/imagine/images/menuitem-arrow-disabled.png Binary files differdeleted file mode 100644 index 6cad53f6..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-arrow-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bad6fe8c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index da420091..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2d8e44e2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-arrow-mirrored-disabled.png b/src/quickcontrols2/imagine/images/menuitem-arrow-mirrored-disabled.png Binary files differdeleted file mode 100644 index 44ac2771..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-arrow-mirrored-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 71a9b88a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1e03f215..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0f85b409..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-arrow-mirrored.png b/src/quickcontrols2/imagine/images/menuitem-arrow-mirrored.png Binary files differdeleted file mode 100644 index 4ac1160b..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-arrow-mirrored.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 79b089b6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index aeb191fd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 139fab35..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-arrow.png b/src/quickcontrols2/imagine/images/menuitem-arrow.png Binary files differdeleted file mode 100644 index edf1f6bd..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-arrow.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8e629265..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0cef53ac..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index dbdc83bc..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-background-highlighted.9.png b/src/quickcontrols2/imagine/images/menuitem-background-highlighted.9.png Binary files differdeleted file mode 100644 index 7b8fa0f4..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-background-highlighted.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9edc3079..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 183f6194..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0a1ab863..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-background.9.png b/src/quickcontrols2/imagine/images/menuitem-background.9.png Binary files differdeleted file mode 100644 index aab131ed..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c46938c4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bac1a83f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ba77504c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-indicator-checked-focused.png b/src/quickcontrols2/imagine/images/menuitem-indicator-checked-focused.png Binary files differdeleted file mode 100644 index d55a5204..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-indicator-checked-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7289f639..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 02d6cdf2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3f074dbf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-indicator-checked-hovered.png b/src/quickcontrols2/imagine/images/menuitem-indicator-checked-hovered.png Binary files differdeleted file mode 100644 index d55a5204..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-indicator-checked-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7289f639..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 02d6cdf2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3f074dbf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-indicator-checked-pressed.png b/src/quickcontrols2/imagine/images/menuitem-indicator-checked-pressed.png Binary files differdeleted file mode 100644 index 9c03d096..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-indicator-checked-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 680ba3ef..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 974205de..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2c8b6aab..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-indicator-checked.png b/src/quickcontrols2/imagine/images/menuitem-indicator-checked.png Binary files differdeleted file mode 100644 index 598b163a..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-indicator-checked.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 06382264..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 12a32dcd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4bc6701d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-indicator-disabled.png b/src/quickcontrols2/imagine/images/menuitem-indicator-disabled.png Binary files differdeleted file mode 100644 index 0a499f8f..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-indicator-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index db652c5a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 482f045d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a386e272..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-indicator-focused.png b/src/quickcontrols2/imagine/images/menuitem-indicator-focused.png Binary files differdeleted file mode 100644 index c5eb8527..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-indicator-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8496fb1a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 30849fd0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 55ce7c0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-indicator-hovered.png b/src/quickcontrols2/imagine/images/menuitem-indicator-hovered.png Binary files differdeleted file mode 100644 index c5eb8527..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-indicator-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8496fb1a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 30849fd0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 55ce7c0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-indicator-pressed.png b/src/quickcontrols2/imagine/images/menuitem-indicator-pressed.png Binary files differdeleted file mode 100644 index a1baaf90..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-indicator-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 81a7c364..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9325de38..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c93b8fb8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuitem-indicator.png b/src/quickcontrols2/imagine/images/menuitem-indicator.png Binary files differdeleted file mode 100644 index 2b3e2323..00000000 --- a/src/quickcontrols2/imagine/images/menuitem-indicator.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ce8985db..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2968731d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ea8da284..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/menuseparator-separator.9.png b/src/quickcontrols2/imagine/images/menuseparator-separator.9.png Binary files differdeleted file mode 100644 index b8825b99..00000000 --- a/src/quickcontrols2/imagine/images/menuseparator-separator.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e5a023d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index abe775c7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 164c8e3e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/page-background.png b/src/quickcontrols2/imagine/images/page-background.png Binary files differdeleted file mode 100644 index 2d8d70f2..00000000 --- a/src/quickcontrols2/imagine/images/page-background.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 18fbaa4c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 241232b1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8eb1b1ec..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/pageindicator-delegate-current.png b/src/quickcontrols2/imagine/images/pageindicator-delegate-current.png Binary files differdeleted file mode 100644 index dc96d723..00000000 --- a/src/quickcontrols2/imagine/images/pageindicator-delegate-current.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e0d794f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 397501a7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f741a896..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/pageindicator-delegate-disabled-current.png b/src/quickcontrols2/imagine/images/pageindicator-delegate-disabled-current.png Binary files differdeleted file mode 100644 index 848d4351..00000000 --- a/src/quickcontrols2/imagine/images/pageindicator-delegate-disabled-current.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 65b5a9d4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 99e3b644..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f1801fff..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/pageindicator-delegate-disabled.png b/src/quickcontrols2/imagine/images/pageindicator-delegate-disabled.png Binary files differdeleted file mode 100644 index 848d4351..00000000 --- a/src/quickcontrols2/imagine/images/pageindicator-delegate-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 65b5a9d4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 99e3b644..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f1801fff..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/pageindicator-delegate-pressed.png b/src/quickcontrols2/imagine/images/pageindicator-delegate-pressed.png Binary files differdeleted file mode 100644 index dc96d723..00000000 --- a/src/quickcontrols2/imagine/images/pageindicator-delegate-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3e0d794f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 397501a7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f741a896..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/pageindicator-delegate.png b/src/quickcontrols2/imagine/images/pageindicator-delegate.png Binary files differdeleted file mode 100644 index 84d23cd1..00000000 --- a/src/quickcontrols2/imagine/images/pageindicator-delegate.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0e706372..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 85af5a4e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0aacbab1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/pane-background.9.png b/src/quickcontrols2/imagine/images/pane-background.9.png Binary files differdeleted file mode 100644 index 658f4863..00000000 --- a/src/quickcontrols2/imagine/images/pane-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a84ac04a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2b1c4da9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 90295db4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/popup-background.9.png b/src/quickcontrols2/imagine/images/popup-background.9.png Binary files differdeleted file mode 100644 index c842b5ff..00000000 --- a/src/quickcontrols2/imagine/images/popup-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ca23df1f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 46cd4065..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3da74119..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/popup-overlay-modal.png b/src/quickcontrols2/imagine/images/popup-overlay-modal.png Binary files differdeleted file mode 100644 index d4a43d1c..00000000 --- a/src/quickcontrols2/imagine/images/popup-overlay-modal.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c9a8f412..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4a1084a9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b92e600d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/popup-overlay.png b/src/quickcontrols2/imagine/images/popup-overlay.png Binary files differdeleted file mode 100644 index b7da23c0..00000000 --- a/src/quickcontrols2/imagine/images/popup-overlay.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 23828d5a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d9d53828..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a76c1a3a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/progressbar-animation.webp b/src/quickcontrols2/imagine/images/progressbar-animation.webp Binary files differdeleted file mode 100644 index 51c35c88..00000000 --- a/src/quickcontrols2/imagine/images/progressbar-animation.webp +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ee120630..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c2f94a74..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d49657e9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/progressbar-background.9.png b/src/quickcontrols2/imagine/images/progressbar-background.9.png Binary files differdeleted file mode 100644 index e1760070..00000000 --- a/src/quickcontrols2/imagine/images/progressbar-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e69922d5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b3c43205..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 905bdc32..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/progressbar-mask.9.png b/src/quickcontrols2/imagine/images/progressbar-mask.9.png Binary files differdeleted file mode 100644 index 35a47dc8..00000000 --- a/src/quickcontrols2/imagine/images/progressbar-mask.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 23ed1a8c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 25bc843e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 645ff201..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/progressbar-progress.png b/src/quickcontrols2/imagine/images/progressbar-progress.png Binary files differdeleted file mode 100644 index bb31dc9b..00000000 --- a/src/quickcontrols2/imagine/images/progressbar-progress.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6bb464c9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d514c727..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index abc8fa67..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiobutton-indicator-checked-focused.png b/src/quickcontrols2/imagine/images/radiobutton-indicator-checked-focused.png Binary files differdeleted file mode 100644 index 2f9e5e18..00000000 --- a/src/quickcontrols2/imagine/images/radiobutton-indicator-checked-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 47ec5534..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 26cdebf8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 708e286e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiobutton-indicator-checked-hovered.png b/src/quickcontrols2/imagine/images/radiobutton-indicator-checked-hovered.png Binary files differdeleted file mode 100644 index 2f9e5e18..00000000 --- a/src/quickcontrols2/imagine/images/radiobutton-indicator-checked-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 47ec5534..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 26cdebf8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 708e286e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiobutton-indicator-checked-pressed.png b/src/quickcontrols2/imagine/images/radiobutton-indicator-checked-pressed.png Binary files differdeleted file mode 100644 index 1e5ebca4..00000000 --- a/src/quickcontrols2/imagine/images/radiobutton-indicator-checked-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6eaae9bf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e54a1624..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7a7850ba..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiobutton-indicator-checked.png b/src/quickcontrols2/imagine/images/radiobutton-indicator-checked.png Binary files differdeleted file mode 100644 index 83c85623..00000000 --- a/src/quickcontrols2/imagine/images/radiobutton-indicator-checked.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4bdeb456..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2230a8ce..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e3dce04e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiobutton-indicator-disabled.png b/src/quickcontrols2/imagine/images/radiobutton-indicator-disabled.png Binary files differdeleted file mode 100644 index 05b8bfca..00000000 --- a/src/quickcontrols2/imagine/images/radiobutton-indicator-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e26fa5de..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c47e8c7d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bc66dde7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiobutton-indicator-focused.png b/src/quickcontrols2/imagine/images/radiobutton-indicator-focused.png Binary files differdeleted file mode 100644 index 3001638d..00000000 --- a/src/quickcontrols2/imagine/images/radiobutton-indicator-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b9890714..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b6221277..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 49ae2206..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiobutton-indicator-hovered.png b/src/quickcontrols2/imagine/images/radiobutton-indicator-hovered.png Binary files differdeleted file mode 100644 index 3001638d..00000000 --- a/src/quickcontrols2/imagine/images/radiobutton-indicator-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b9890714..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b6221277..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 49ae2206..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiobutton-indicator-pressed.png b/src/quickcontrols2/imagine/images/radiobutton-indicator-pressed.png Binary files differdeleted file mode 100644 index 76c7b4ed..00000000 --- a/src/quickcontrols2/imagine/images/radiobutton-indicator-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d5d4cac6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ca2a1ed1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1cb753d7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiobutton-indicator.png b/src/quickcontrols2/imagine/images/radiobutton-indicator.png Binary files differdeleted file mode 100644 index c05d4bfc..00000000 --- a/src/quickcontrols2/imagine/images/radiobutton-indicator.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 62744d27..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index fa5d241e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7db85e94..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-background-disabled.9.png b/src/quickcontrols2/imagine/images/radiodelegate-background-disabled.9.png Binary files differdeleted file mode 100644 index 23570729..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c7abb65c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 46b84d7d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f4dfd338..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-background-focused.9.png b/src/quickcontrols2/imagine/images/radiodelegate-background-focused.9.png Binary files differdeleted file mode 100644 index 6ae574d5..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b61562c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e46c0bf1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 010444e8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-background-highlighted.9.png b/src/quickcontrols2/imagine/images/radiodelegate-background-highlighted.9.png Binary files differdeleted file mode 100644 index e79d8e1d..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-background-highlighted.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ea68d35f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6d610415..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 590cca96..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-background-hovered.9.png b/src/quickcontrols2/imagine/images/radiodelegate-background-hovered.9.png Binary files differdeleted file mode 100644 index b8749743..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-background-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5a136a0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f47a366b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ecb680f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-background-pressed.9.png b/src/quickcontrols2/imagine/images/radiodelegate-background-pressed.9.png Binary files differdeleted file mode 100644 index 6ae574d5..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-background-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b61562c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e46c0bf1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 010444e8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-background.9.png b/src/quickcontrols2/imagine/images/radiodelegate-background.9.png Binary files differdeleted file mode 100644 index b8749743..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5a136a0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f47a366b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ecb680f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked-focused.png b/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked-focused.png Binary files differdeleted file mode 100644 index 2f9e5e18..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 47ec5534..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 26cdebf8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 708e286e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked-hovered.png b/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked-hovered.png Binary files differdeleted file mode 100644 index 2f9e5e18..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 47ec5534..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 26cdebf8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 708e286e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked-pressed.png b/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked-pressed.png Binary files differdeleted file mode 100644 index 1e5ebca4..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6eaae9bf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e54a1624..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7a7850ba..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked.png b/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked.png Binary files differdeleted file mode 100644 index 83c85623..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-indicator-checked.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4bdeb456..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2230a8ce..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e3dce04e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-indicator-disabled.png b/src/quickcontrols2/imagine/images/radiodelegate-indicator-disabled.png Binary files differdeleted file mode 100644 index 05b8bfca..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-indicator-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e26fa5de..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c47e8c7d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bc66dde7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-indicator-focused.png b/src/quickcontrols2/imagine/images/radiodelegate-indicator-focused.png Binary files differdeleted file mode 100644 index 3001638d..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-indicator-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b9890714..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b6221277..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 49ae2206..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-indicator-hovered.png b/src/quickcontrols2/imagine/images/radiodelegate-indicator-hovered.png Binary files differdeleted file mode 100644 index 3001638d..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-indicator-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b9890714..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b6221277..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 49ae2206..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-indicator-pressed.png b/src/quickcontrols2/imagine/images/radiodelegate-indicator-pressed.png Binary files differdeleted file mode 100644 index 76c7b4ed..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-indicator-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d5d4cac6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ca2a1ed1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1cb753d7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/radiodelegate-indicator.png b/src/quickcontrols2/imagine/images/radiodelegate-indicator.png Binary files differdeleted file mode 100644 index c05d4bfc..00000000 --- a/src/quickcontrols2/imagine/images/radiodelegate-indicator.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 62744d27..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index fa5d241e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7db85e94..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-background-horizontal.9.png b/src/quickcontrols2/imagine/images/rangeslider-background-horizontal.9.png Binary files differdeleted file mode 100644 index c4e957ad..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-background-horizontal.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6d839113..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b2e634c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 969c791a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-background-vertical.9.png b/src/quickcontrols2/imagine/images/rangeslider-background-vertical.9.png Binary files differdeleted file mode 100644 index f76e0b21..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-background-vertical.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index fecd0ab2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 77a9c830..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f1613684..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-handle-disabled.png b/src/quickcontrols2/imagine/images/rangeslider-handle-disabled.png Binary files differdeleted file mode 100644 index 4934fb77..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-handle-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 451b719e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1daffca7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 64830707..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-handle-focused-hovered.png b/src/quickcontrols2/imagine/images/rangeslider-handle-focused-hovered.png Binary files differdeleted file mode 100644 index c2958f1b..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-handle-focused-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 12a4d1f8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1696ac95..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e1d13056..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-handle-focused-pressed.png b/src/quickcontrols2/imagine/images/rangeslider-handle-focused-pressed.png Binary files differdeleted file mode 100644 index c2958f1b..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-handle-focused-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 12a4d1f8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1696ac95..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e1d13056..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-handle-focused.png b/src/quickcontrols2/imagine/images/rangeslider-handle-focused.png Binary files differdeleted file mode 100644 index bdf8239a..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-handle-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9f887c5e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8042d4c2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e7e68c47..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-handle-hovered.png b/src/quickcontrols2/imagine/images/rangeslider-handle-hovered.png Binary files differdeleted file mode 100644 index 4934fb77..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-handle-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 451b719e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1daffca7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 64830707..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-handle-pressed.png b/src/quickcontrols2/imagine/images/rangeslider-handle-pressed.png Binary files differdeleted file mode 100644 index 4934fb77..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-handle-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 451b719e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1daffca7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 64830707..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-handle.png b/src/quickcontrols2/imagine/images/rangeslider-handle.png Binary files differdeleted file mode 100644 index fd72dedf..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-handle.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 57eed9f8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e217a644..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c212b59f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-progress-horizontal-disabled.9.png b/src/quickcontrols2/imagine/images/rangeslider-progress-horizontal-disabled.9.png Binary files differdeleted file mode 100644 index 7f7e6b93..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-progress-horizontal-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cbf6fb63..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 643776b8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d64acb90..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-progress-horizontal.9.png b/src/quickcontrols2/imagine/images/rangeslider-progress-horizontal.9.png Binary files differdeleted file mode 100644 index 43192f54..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-progress-horizontal.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ebbbbf82..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0a029b53..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a1354169..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-progress-vertical-disabled.9.png b/src/quickcontrols2/imagine/images/rangeslider-progress-vertical-disabled.9.png Binary files differdeleted file mode 100644 index a4edafc9..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-progress-vertical-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c38226e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a939bffd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9f653770..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/rangeslider-progress-vertical.9.png b/src/quickcontrols2/imagine/images/rangeslider-progress-vertical.9.png Binary files differdeleted file mode 100644 index d3e877fc..00000000 --- a/src/quickcontrols2/imagine/images/rangeslider-progress-vertical.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7790050e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 039d1987..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b3051d1f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-checked-focused.png b/src/quickcontrols2/imagine/images/roundbutton-background-checked-focused.png Binary files differdeleted file mode 100644 index 032a7caa..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-checked-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a2944b6a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ffd4d210..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 35a41fc5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-checked-hovered.png b/src/quickcontrols2/imagine/images/roundbutton-background-checked-hovered.png Binary files differdeleted file mode 100644 index 032a7caa..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-checked-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a2944b6a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ffd4d210..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 35a41fc5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-checked.png b/src/quickcontrols2/imagine/images/roundbutton-background-checked.png Binary files differdeleted file mode 100644 index d57d3894..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-checked.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7c374528..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b0e0b9be..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 748864ef..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-disabled-checked.png b/src/quickcontrols2/imagine/images/roundbutton-background-disabled-checked.png Binary files differdeleted file mode 100644 index e26fa5de..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-disabled-checked.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bc66dde7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a0c5f9ad..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 190210c8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-disabled.png b/src/quickcontrols2/imagine/images/roundbutton-background-disabled.png Binary files differdeleted file mode 100644 index e26fa5de..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bc66dde7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a0c5f9ad..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 190210c8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-focused.png b/src/quickcontrols2/imagine/images/roundbutton-background-focused.png Binary files differdeleted file mode 100644 index 832955c4..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bb1ed2ac..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cbf02913..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1c765dee..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-highlighted-focused.png b/src/quickcontrols2/imagine/images/roundbutton-background-highlighted-focused.png Binary files differdeleted file mode 100644 index 269a9d52..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-highlighted-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bd795651..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5ed0f662..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5bbb8e7a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-highlighted-hovered.png b/src/quickcontrols2/imagine/images/roundbutton-background-highlighted-hovered.png Binary files differdeleted file mode 100644 index 269a9d52..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-highlighted-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bd795651..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5ed0f662..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5bbb8e7a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-highlighted-pressed.png b/src/quickcontrols2/imagine/images/roundbutton-background-highlighted-pressed.png Binary files differdeleted file mode 100644 index a0fa8df0..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-highlighted-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3082a1d9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d32e8af0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f4916e0b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-highlighted.png b/src/quickcontrols2/imagine/images/roundbutton-background-highlighted.png Binary files differdeleted file mode 100644 index f90e29f9..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-highlighted.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7dce11b4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 436abbdd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e728d6fa..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-hovered.png b/src/quickcontrols2/imagine/images/roundbutton-background-hovered.png Binary files differdeleted file mode 100644 index 832955c4..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bb1ed2ac..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cbf02913..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1c765dee..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background-pressed.png b/src/quickcontrols2/imagine/images/roundbutton-background-pressed.png Binary files differdeleted file mode 100644 index d57d3894..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7c374528..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b0e0b9be..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 748864ef..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/roundbutton-background.png b/src/quickcontrols2/imagine/images/roundbutton-background.png Binary files differdeleted file mode 100644 index d5d4cac6..00000000 --- a/src/quickcontrols2/imagine/images/roundbutton-background.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1cb753d7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6cc304bf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 56ea82f6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/scrollbar-handle-disabled.png b/src/quickcontrols2/imagine/images/scrollbar-handle-disabled.png Binary files differdeleted file mode 100644 index b0b95bed..00000000 --- a/src/quickcontrols2/imagine/images/scrollbar-handle-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8ab854b0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f3c97231..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 325469b8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/scrollbar-handle-interactive-disabled.png b/src/quickcontrols2/imagine/images/scrollbar-handle-interactive-disabled.png Binary files differdeleted file mode 100644 index 236002ff..00000000 --- a/src/quickcontrols2/imagine/images/scrollbar-handle-interactive-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index abc3d2c0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e215cf5b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c6ec0520..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/scrollbar-handle-interactive-hovered.png b/src/quickcontrols2/imagine/images/scrollbar-handle-interactive-hovered.png Binary files differdeleted file mode 100644 index 19b48f1d..00000000 --- a/src/quickcontrols2/imagine/images/scrollbar-handle-interactive-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8f5abb84..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 73963d75..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 04d6131e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/scrollbar-handle-interactive-pressed.png b/src/quickcontrols2/imagine/images/scrollbar-handle-interactive-pressed.png Binary files differdeleted file mode 100644 index f48f514d..00000000 --- a/src/quickcontrols2/imagine/images/scrollbar-handle-interactive-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e31820ad..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 278ba900..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 01e4e5c8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/scrollbar-handle-interactive.png b/src/quickcontrols2/imagine/images/scrollbar-handle-interactive.png Binary files differdeleted file mode 100644 index fd7832a6..00000000 --- a/src/quickcontrols2/imagine/images/scrollbar-handle-interactive.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bd63a1b1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 31452954..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6db4d81d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/scrollbar-handle.png b/src/quickcontrols2/imagine/images/scrollbar-handle.png Binary files differdeleted file mode 100644 index 255f6c4d..00000000 --- a/src/quickcontrols2/imagine/images/scrollbar-handle.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2b69cef6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6fdfa487..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cc3205f1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/scrollindicator-handle.png b/src/quickcontrols2/imagine/images/scrollindicator-handle.png Binary files differdeleted file mode 100644 index 255f6c4d..00000000 --- a/src/quickcontrols2/imagine/images/scrollindicator-handle.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2b69cef6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6fdfa487..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cc3205f1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-background-horizontal.9.png b/src/quickcontrols2/imagine/images/slider-background-horizontal.9.png Binary files differdeleted file mode 100644 index c4e957ad..00000000 --- a/src/quickcontrols2/imagine/images/slider-background-horizontal.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6d839113..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b2e634c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 969c791a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-background-vertical.9.png b/src/quickcontrols2/imagine/images/slider-background-vertical.9.png Binary files differdeleted file mode 100644 index f76e0b21..00000000 --- a/src/quickcontrols2/imagine/images/slider-background-vertical.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index fecd0ab2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 77a9c830..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f1613684..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-handle-disabled.png b/src/quickcontrols2/imagine/images/slider-handle-disabled.png Binary files differdeleted file mode 100644 index 4934fb77..00000000 --- a/src/quickcontrols2/imagine/images/slider-handle-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 451b719e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1daffca7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 64830707..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-handle-focused-hovered.png b/src/quickcontrols2/imagine/images/slider-handle-focused-hovered.png Binary files differdeleted file mode 100644 index c2958f1b..00000000 --- a/src/quickcontrols2/imagine/images/slider-handle-focused-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 12a4d1f8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1696ac95..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e1d13056..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-handle-focused-pressed.png b/src/quickcontrols2/imagine/images/slider-handle-focused-pressed.png Binary files differdeleted file mode 100644 index c2958f1b..00000000 --- a/src/quickcontrols2/imagine/images/slider-handle-focused-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 12a4d1f8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1696ac95..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e1d13056..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-handle-focused.png b/src/quickcontrols2/imagine/images/slider-handle-focused.png Binary files differdeleted file mode 100644 index bdf8239a..00000000 --- a/src/quickcontrols2/imagine/images/slider-handle-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9f887c5e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8042d4c2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e7e68c47..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-handle-hovered.png b/src/quickcontrols2/imagine/images/slider-handle-hovered.png Binary files differdeleted file mode 100644 index 4934fb77..00000000 --- a/src/quickcontrols2/imagine/images/slider-handle-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 451b719e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1daffca7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 64830707..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-handle-pressed.png b/src/quickcontrols2/imagine/images/slider-handle-pressed.png Binary files differdeleted file mode 100644 index 4934fb77..00000000 --- a/src/quickcontrols2/imagine/images/slider-handle-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 451b719e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1daffca7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 64830707..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-handle.png b/src/quickcontrols2/imagine/images/slider-handle.png Binary files differdeleted file mode 100644 index fd72dedf..00000000 --- a/src/quickcontrols2/imagine/images/slider-handle.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 57eed9f8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e217a644..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c212b59f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-progress-horizontal-disabled.9.png b/src/quickcontrols2/imagine/images/slider-progress-horizontal-disabled.9.png Binary files differdeleted file mode 100644 index 7f7e6b93..00000000 --- a/src/quickcontrols2/imagine/images/slider-progress-horizontal-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cbf6fb63..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 643776b8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d64acb90..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-progress-horizontal.9.png b/src/quickcontrols2/imagine/images/slider-progress-horizontal.9.png Binary files differdeleted file mode 100644 index 43192f54..00000000 --- a/src/quickcontrols2/imagine/images/slider-progress-horizontal.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ebbbbf82..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0a029b53..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a1354169..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-progress-vertical-disabled.9.png b/src/quickcontrols2/imagine/images/slider-progress-vertical-disabled.9.png Binary files differdeleted file mode 100644 index a4edafc9..00000000 --- a/src/quickcontrols2/imagine/images/slider-progress-vertical-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c38226e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a939bffd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9f653770..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/slider-progress-vertical.9.png b/src/quickcontrols2/imagine/images/slider-progress-vertical.9.png Binary files differdeleted file mode 100644 index d3e877fc..00000000 --- a/src/quickcontrols2/imagine/images/slider-progress-vertical.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7790050e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 039d1987..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b3051d1f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-background-disabled.9.png b/src/quickcontrols2/imagine/images/spinbox-background-disabled.9.png Binary files differdeleted file mode 100644 index 7baaeec5..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e0d59070..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 24b3054d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8ac4740a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-background-editable.9.png b/src/quickcontrols2/imagine/images/spinbox-background-editable.9.png Binary files differdeleted file mode 100644 index 995c8276..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-background-editable.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 42c9dd6b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4ee974a1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 59b00915..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-background-focused.9.png b/src/quickcontrols2/imagine/images/spinbox-background-focused.9.png Binary files differdeleted file mode 100644 index 27751eac..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1692578f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4c44c1bb..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f8632bf2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-background.9.png b/src/quickcontrols2/imagine/images/spinbox-background.9.png Binary files differdeleted file mode 100644 index ae8b043b..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index eaae097e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d8add811..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d954febf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-disabled.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-disabled.9.png Binary files differdeleted file mode 100644 index b3953398..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 18e2ca65..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ed6674b4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0da2cf93..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-focused.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-focused.9.png Binary files differdeleted file mode 100644 index 46220a8e..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b8ebb7b7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 10561d8d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ccd09d69..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-hovered.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-hovered.9.png Binary files differdeleted file mode 100644 index 46220a8e..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b8ebb7b7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 10561d8d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ccd09d69..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored-focused.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored-focused.9.png Binary files differdeleted file mode 100644 index 23842de4..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e5078932..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7edec0c9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f6e5ff82..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored-hovered.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored-hovered.9.png Binary files differdeleted file mode 100644 index 23842de4..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e5078932..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7edec0c9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f6e5ff82..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored-pressed.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored-pressed.9.png Binary files differdeleted file mode 100644 index b6917a03..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8999d3e4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 77aa0044..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4f2fd261..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored.9.png Binary files differdeleted file mode 100644 index 3c3da5b1..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-mirrored.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e0760e07..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c37080f5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bdc24823..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-pressed.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-pressed.9.png Binary files differdeleted file mode 100644 index 65f2821b..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 010dd9d0..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f647f489..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index db0486d1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable.9.png Binary files differdeleted file mode 100644 index c3207f31..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-editable.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c8c2630e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d0a6c818..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 40e89762..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-focused.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-focused.9.png Binary files differdeleted file mode 100644 index 6ad31bb0..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6cc60b4b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 722c7ec7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 64fa4ab6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-hovered.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-hovered.9.png Binary files differdeleted file mode 100644 index 6ad31bb0..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6cc60b4b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 722c7ec7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 64fa4ab6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-disabled.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-disabled.9.png Binary files differdeleted file mode 100644 index ac7da20e..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a12f3615..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index de11317b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8be41f38..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-focused.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-focused.9.png Binary files differdeleted file mode 100644 index 6b6e5264..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e0c36da3..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ca2389da..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7e6c5474..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-hovered.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-hovered.9.png Binary files differdeleted file mode 100644 index 6b6e5264..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e0c36da3..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ca2389da..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7e6c5474..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-pressed.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-pressed.9.png Binary files differdeleted file mode 100644 index d756679f..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e49c7e89..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6041ffdc..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e23dda15..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored.9.png Binary files differdeleted file mode 100644 index 58be2120..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-mirrored.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 709a1ab6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ee5b5b82..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1e88d44d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down-pressed.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down-pressed.9.png Binary files differdeleted file mode 100644 index 9703314b..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 173eccfb..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 77737c75..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6a2bb865..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-down.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-down.9.png Binary files differdeleted file mode 100644 index a6c9679a..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-down.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bd14cdbb..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 02d18c1d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ec1bf04..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-disabled.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-disabled.9.png Binary files differdeleted file mode 100644 index 5fe5ab6a..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f7a2a5d5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3244c93f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 82482005..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-focused.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-focused.9.png Binary files differdeleted file mode 100644 index d291c50a..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 06e27b1b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 34b43735..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4a95cca4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-hovered.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-hovered.9.png Binary files differdeleted file mode 100644 index d291c50a..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 06e27b1b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 34b43735..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4a95cca4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored-focused.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored-focused.9.png Binary files differdeleted file mode 100644 index a98d5a1d..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4b845860..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index da241c07..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d1333671..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored-hovered.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored-hovered.9.png Binary files differdeleted file mode 100644 index a98d5a1d..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4b845860..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index da241c07..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d1333671..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored-pressed.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored-pressed.9.png Binary files differdeleted file mode 100644 index 793e009d..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index aca00c57..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a49b9549..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e0814f3b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored.9.png Binary files differdeleted file mode 100644 index ac4c46d1..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-mirrored.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b1c335ee..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3f0d9f2f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cac6eca8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-pressed.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-pressed.9.png Binary files differdeleted file mode 100644 index 87a1ae7a..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 95c5ea06..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3ed6cddf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8f5e3f02..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable.9.png Binary files differdeleted file mode 100644 index b3cc7bea..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-editable.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 51313f59..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8db540f5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 310400a2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-focused.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-focused.9.png Binary files differdeleted file mode 100644 index d88bd00d..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 77dbb52a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0739b1b1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d53ee543..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-hovered.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-hovered.9.png Binary files differdeleted file mode 100644 index d88bd00d..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 77dbb52a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0739b1b1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d53ee543..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-disabled.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-disabled.9.png Binary files differdeleted file mode 100644 index 53f6d7e5..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7c7bb214..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5a69027c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index fe2171a5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-focused.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-focused.9.png Binary files differdeleted file mode 100644 index cf31f936..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 48b8861e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d6a41720..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e0c7e374..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-hovered.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-hovered.9.png Binary files differdeleted file mode 100644 index cf31f936..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 48b8861e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d6a41720..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e0c7e374..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-pressed.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-pressed.9.png Binary files differdeleted file mode 100644 index 4548cddd..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c5fb9d1b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ffbe520a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 784f9bee..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored.9.png Binary files differdeleted file mode 100644 index f2679457..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-mirrored.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7f07e625..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0b060816..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index df76dfce..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up-pressed.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up-pressed.9.png Binary files differdeleted file mode 100644 index cbba897f..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a49e11fa..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 720e4543..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 46333e3d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/spinbox-indicator-up.9.png b/src/quickcontrols2/imagine/images/spinbox-indicator-up.9.png Binary files differdeleted file mode 100644 index 67cbe434..00000000 --- a/src/quickcontrols2/imagine/images/spinbox-indicator-up.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8e804b87..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 15baec74..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7112de67..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/splitview-handle-disabled.png b/src/quickcontrols2/imagine/images/splitview-handle-disabled.png Binary files differdeleted file mode 100644 index 8ab854b0..00000000 --- a/src/quickcontrols2/imagine/images/splitview-handle-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 325469b8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5357e847..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e215cf5b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/splitview-handle-hovered.png b/src/quickcontrols2/imagine/images/splitview-handle-hovered.png Binary files differdeleted file mode 100644 index 429d5508..00000000 --- a/src/quickcontrols2/imagine/images/splitview-handle-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6f17b06e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 11dcfa26..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 73963d75..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/splitview-handle-pressed.png b/src/quickcontrols2/imagine/images/splitview-handle-pressed.png Binary files differdeleted file mode 100644 index 6e00db20..00000000 --- a/src/quickcontrols2/imagine/images/splitview-handle-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e1392de6..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ff6a397f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 278ba900..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/splitview-handle.png b/src/quickcontrols2/imagine/images/splitview-handle.png Binary files differdeleted file mode 100644 index 2b69cef6..00000000 --- a/src/quickcontrols2/imagine/images/splitview-handle.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index cc3205f1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b8be2b4d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 31452954..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/swipedelegate-background-disabled.9.png b/src/quickcontrols2/imagine/images/swipedelegate-background-disabled.9.png Binary files differdeleted file mode 100644 index 23570729..00000000 --- a/src/quickcontrols2/imagine/images/swipedelegate-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c7abb65c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 46b84d7d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f4dfd338..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/swipedelegate-background-focused.9.png b/src/quickcontrols2/imagine/images/swipedelegate-background-focused.9.png Binary files differdeleted file mode 100644 index 6ae574d5..00000000 --- a/src/quickcontrols2/imagine/images/swipedelegate-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b61562c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e46c0bf1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 010444e8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/swipedelegate-background-highlighted.9.png b/src/quickcontrols2/imagine/images/swipedelegate-background-highlighted.9.png Binary files differdeleted file mode 100644 index e79d8e1d..00000000 --- a/src/quickcontrols2/imagine/images/swipedelegate-background-highlighted.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ea68d35f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6d610415..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 590cca96..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/swipedelegate-background-hovered.9.png b/src/quickcontrols2/imagine/images/swipedelegate-background-hovered.9.png Binary files differdeleted file mode 100644 index b8749743..00000000 --- a/src/quickcontrols2/imagine/images/swipedelegate-background-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5a136a0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f47a366b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ecb680f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/swipedelegate-background-pressed.9.png b/src/quickcontrols2/imagine/images/swipedelegate-background-pressed.9.png Binary files differdeleted file mode 100644 index 6ae574d5..00000000 --- a/src/quickcontrols2/imagine/images/swipedelegate-background-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b61562c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e46c0bf1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 010444e8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/swipedelegate-background.9.png b/src/quickcontrols2/imagine/images/swipedelegate-background.9.png Binary files differdeleted file mode 100644 index b8749743..00000000 --- a/src/quickcontrols2/imagine/images/swipedelegate-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5a136a0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f47a366b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ecb680f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-handle-disabled.png b/src/quickcontrols2/imagine/images/switch-handle-disabled.png Binary files differdeleted file mode 100644 index 595dd546..00000000 --- a/src/quickcontrols2/imagine/images/switch-handle-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5be736aa..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c8002ca3..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 00e70c1b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-handle-pressed.png b/src/quickcontrols2/imagine/images/switch-handle-pressed.png Binary files differdeleted file mode 100644 index 595dd546..00000000 --- a/src/quickcontrols2/imagine/images/switch-handle-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5be736aa..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c8002ca3..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 00e70c1b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-handle.png b/src/quickcontrols2/imagine/images/switch-handle.png Binary files differdeleted file mode 100644 index 15649c34..00000000 --- a/src/quickcontrols2/imagine/images/switch-handle.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 04f84ed9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e0cfb637..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 73fa381a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-indicator-checked-focused.png b/src/quickcontrols2/imagine/images/switch-indicator-checked-focused.png Binary files differdeleted file mode 100644 index 7f5ba5df..00000000 --- a/src/quickcontrols2/imagine/images/switch-indicator-checked-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a0090df4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0c7e5264..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3a5e1d36..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-indicator-checked-hovered.png b/src/quickcontrols2/imagine/images/switch-indicator-checked-hovered.png Binary files differdeleted file mode 100644 index 7f5ba5df..00000000 --- a/src/quickcontrols2/imagine/images/switch-indicator-checked-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a0090df4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0c7e5264..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3a5e1d36..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-indicator-checked-pressed.png b/src/quickcontrols2/imagine/images/switch-indicator-checked-pressed.png Binary files differdeleted file mode 100644 index ecbc552a..00000000 --- a/src/quickcontrols2/imagine/images/switch-indicator-checked-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 07fe7241..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c65c27f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f6a1e476..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-indicator-checked.png b/src/quickcontrols2/imagine/images/switch-indicator-checked.png Binary files differdeleted file mode 100644 index 2b7265cd..00000000 --- a/src/quickcontrols2/imagine/images/switch-indicator-checked.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6ec88c7f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 48c97985..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e9f81807..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-indicator-disabled.png b/src/quickcontrols2/imagine/images/switch-indicator-disabled.png Binary files differdeleted file mode 100644 index 9cfab791..00000000 --- a/src/quickcontrols2/imagine/images/switch-indicator-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3bbbb8df..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 80d9a746..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ee7bfab..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-indicator-focused.png b/src/quickcontrols2/imagine/images/switch-indicator-focused.png Binary files differdeleted file mode 100644 index 4867bcac..00000000 --- a/src/quickcontrols2/imagine/images/switch-indicator-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d833a0cd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a632b6ae..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b5affab7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-indicator-hovered.png b/src/quickcontrols2/imagine/images/switch-indicator-hovered.png Binary files differdeleted file mode 100644 index 4867bcac..00000000 --- a/src/quickcontrols2/imagine/images/switch-indicator-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d833a0cd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a632b6ae..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b5affab7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-indicator-pressed.png b/src/quickcontrols2/imagine/images/switch-indicator-pressed.png Binary files differdeleted file mode 100644 index 4fbbc060..00000000 --- a/src/quickcontrols2/imagine/images/switch-indicator-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7939f943..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index adcbe45b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 74c0c77e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switch-indicator.png b/src/quickcontrols2/imagine/images/switch-indicator.png Binary files differdeleted file mode 100644 index b6b4f1cd..00000000 --- a/src/quickcontrols2/imagine/images/switch-indicator.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bfeedeb7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 19e5ba2c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9345cd4f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-background-disabled.9.png b/src/quickcontrols2/imagine/images/switchdelegate-background-disabled.9.png Binary files differdeleted file mode 100644 index 23570729..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c7abb65c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 46b84d7d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f4dfd338..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-background-focused.9.png b/src/quickcontrols2/imagine/images/switchdelegate-background-focused.9.png Binary files differdeleted file mode 100644 index 6ae574d5..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b61562c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e46c0bf1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 010444e8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-background-hovered.9.png b/src/quickcontrols2/imagine/images/switchdelegate-background-hovered.9.png Binary files differdeleted file mode 100644 index b8749743..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-background-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5a136a0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f47a366b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ecb680f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-background-pressed.9.png b/src/quickcontrols2/imagine/images/switchdelegate-background-pressed.9.png Binary files differdeleted file mode 100644 index 6ae574d5..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-background-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6b61562c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e46c0bf1..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 010444e8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-background.9.png b/src/quickcontrols2/imagine/images/switchdelegate-background.9.png Binary files differdeleted file mode 100644 index b8749743..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5a136a0c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f47a366b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ecb680f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-handle-disabled.png b/src/quickcontrols2/imagine/images/switchdelegate-handle-disabled.png Binary files differdeleted file mode 100644 index 595dd546..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-handle-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5be736aa..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c8002ca3..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 00e70c1b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-handle-pressed.png b/src/quickcontrols2/imagine/images/switchdelegate-handle-pressed.png Binary files differdeleted file mode 100644 index 595dd546..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-handle-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5be736aa..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c8002ca3..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 00e70c1b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-handle.png b/src/quickcontrols2/imagine/images/switchdelegate-handle.png Binary files differdeleted file mode 100644 index 15649c34..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-handle.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 04f84ed9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e0cfb637..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 73fa381a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked-focused.png b/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked-focused.png Binary files differdeleted file mode 100644 index 7f5ba5df..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a0090df4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0c7e5264..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3a5e1d36..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked-hovered.png b/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked-hovered.png Binary files differdeleted file mode 100644 index 7f5ba5df..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a0090df4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0c7e5264..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3a5e1d36..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked-pressed.png b/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked-pressed.png Binary files differdeleted file mode 100644 index ecbc552a..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 07fe7241..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c65c27f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f6a1e476..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked.png b/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked.png Binary files differdeleted file mode 100644 index 2b7265cd..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-indicator-checked.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6ec88c7f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 48c97985..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e9f81807..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-indicator-disabled.png b/src/quickcontrols2/imagine/images/switchdelegate-indicator-disabled.png Binary files differdeleted file mode 100644 index 9cfab791..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-indicator-disabled.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3bbbb8df..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 80d9a746..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9ee7bfab..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-indicator-focused.png b/src/quickcontrols2/imagine/images/switchdelegate-indicator-focused.png Binary files differdeleted file mode 100644 index 4867bcac..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-indicator-focused.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d833a0cd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a632b6ae..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b5affab7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-indicator-hovered.png b/src/quickcontrols2/imagine/images/switchdelegate-indicator-hovered.png Binary files differdeleted file mode 100644 index 4867bcac..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-indicator-hovered.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d833a0cd..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a632b6ae..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b5affab7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-indicator-pressed.png b/src/quickcontrols2/imagine/images/switchdelegate-indicator-pressed.png Binary files differdeleted file mode 100644 index 4fbbc060..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-indicator-pressed.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7939f943..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index adcbe45b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 74c0c77e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/switchdelegate-indicator.png b/src/quickcontrols2/imagine/images/switchdelegate-indicator.png Binary files differdeleted file mode 100644 index b6b4f1cd..00000000 --- a/src/quickcontrols2/imagine/images/switchdelegate-indicator.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bfeedeb7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 19e5ba2c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9345cd4f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/tabbar-background.png b/src/quickcontrols2/imagine/images/tabbar-background.png Binary files differdeleted file mode 100644 index 002efded..00000000 --- a/src/quickcontrols2/imagine/images/tabbar-background.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index aaa1cbaf..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c4eb9e1f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4a4e234a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/tabbutton-background-checked.9.png b/src/quickcontrols2/imagine/images/tabbutton-background-checked.9.png Binary files differdeleted file mode 100644 index d2f0fa76..00000000 --- a/src/quickcontrols2/imagine/images/tabbutton-background-checked.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index bee13292..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 70afb7d3..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3a2015c4..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/tabbutton-background-disabled-checked.9.png b/src/quickcontrols2/imagine/images/tabbutton-background-disabled-checked.9.png Binary files differdeleted file mode 100644 index a6d3011b..00000000 --- a/src/quickcontrols2/imagine/images/tabbutton-background-disabled-checked.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8ebfa026..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1d5a1d51..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f06dc55f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/tabbutton-background-disabled.9.png b/src/quickcontrols2/imagine/images/tabbutton-background-disabled.9.png Binary files differdeleted file mode 100644 index a6d3011b..00000000 --- a/src/quickcontrols2/imagine/images/tabbutton-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8ebfa026..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1d5a1d51..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f06dc55f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/tabbutton-background-hovered.9.png b/src/quickcontrols2/imagine/images/tabbutton-background-hovered.9.png Binary files differdeleted file mode 100644 index 3f945184..00000000 --- a/src/quickcontrols2/imagine/images/tabbutton-background-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8a19720a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index eadcf457..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8bf8e992..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/tabbutton-background-pressed.9.png b/src/quickcontrols2/imagine/images/tabbutton-background-pressed.9.png Binary files differdeleted file mode 100644 index d48733ed..00000000 --- a/src/quickcontrols2/imagine/images/tabbutton-background-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index fbbaad7b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3a0ba70e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c04f124e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/tabbutton-background.9.png b/src/quickcontrols2/imagine/images/tabbutton-background.9.png Binary files differdeleted file mode 100644 index 2266c722..00000000 --- a/src/quickcontrols2/imagine/images/tabbutton-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b7adb7ad..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d8f4eae5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 066d35b3..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/textarea-background-disabled.9.png b/src/quickcontrols2/imagine/images/textarea-background-disabled.9.png Binary files differdeleted file mode 100644 index 97d48f8c..00000000 --- a/src/quickcontrols2/imagine/images/textarea-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f9ea1d49..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 04e7ef6f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index feaaa3bc..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/textarea-background-focused.9.png b/src/quickcontrols2/imagine/images/textarea-background-focused.9.png Binary files differdeleted file mode 100644 index 1d73acfa..00000000 --- a/src/quickcontrols2/imagine/images/textarea-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 5be4cd6f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 6ba3e246..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 366aa511..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/textarea-background.9.png b/src/quickcontrols2/imagine/images/textarea-background.9.png Binary files differdeleted file mode 100644 index 0b9ca9f3..00000000 --- a/src/quickcontrols2/imagine/images/textarea-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a806ed1b..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 547ef33c..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b759b1e8..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/textfield-background-disabled.9.png b/src/quickcontrols2/imagine/images/textfield-background-disabled.9.png Binary files differdeleted file mode 100644 index 312a1294..00000000 --- a/src/quickcontrols2/imagine/images/textfield-background-disabled.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 2c6c7e91..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 1d1aca71..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index ed93182a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/textfield-background-focused.9.png b/src/quickcontrols2/imagine/images/textfield-background-focused.9.png Binary files differdeleted file mode 100644 index 1251f4e4..00000000 --- a/src/quickcontrols2/imagine/images/textfield-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index d535e8bc..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9fca3bb2..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index a275a52e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/textfield-background.9.png b/src/quickcontrols2/imagine/images/textfield-background.9.png Binary files differdeleted file mode 100644 index 7ea60968..00000000 --- a/src/quickcontrols2/imagine/images/textfield-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 0a4c3f2a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index e8552741..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 29ef5bb9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/toolbar-background.png b/src/quickcontrols2/imagine/images/toolbar-background.png Binary files differdeleted file mode 100644 index 9c67cf27..00000000 --- a/src/quickcontrols2/imagine/images/toolbar-background.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index b0602519..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 7f227ca3..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 4788ecc7..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/toolbutton-background-checked-focused.9.png b/src/quickcontrols2/imagine/images/toolbutton-background-checked-focused.9.png Binary files differdeleted file mode 100644 index 287a2872..00000000 --- a/src/quickcontrols2/imagine/images/toolbutton-background-checked-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index aa844165..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c682255..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 89bdd096..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/toolbutton-background-checked-hovered.9.png b/src/quickcontrols2/imagine/images/toolbutton-background-checked-hovered.9.png Binary files differdeleted file mode 100644 index 287a2872..00000000 --- a/src/quickcontrols2/imagine/images/toolbutton-background-checked-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index aa844165..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c682255..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 89bdd096..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/toolbutton-background-checked.9.png b/src/quickcontrols2/imagine/images/toolbutton-background-checked.9.png Binary files differdeleted file mode 100644 index 287a2872..00000000 --- a/src/quickcontrols2/imagine/images/toolbutton-background-checked.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index aa844165..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c682255..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 89bdd096..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/toolbutton-background-disabled-checked.9.png b/src/quickcontrols2/imagine/images/toolbutton-background-disabled-checked.9.png Binary files differdeleted file mode 100644 index 287a2872..00000000 --- a/src/quickcontrols2/imagine/images/toolbutton-background-disabled-checked.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index aa844165..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c682255..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 89bdd096..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/toolbutton-background-focused.9.png b/src/quickcontrols2/imagine/images/toolbutton-background-focused.9.png Binary files differdeleted file mode 100644 index 287a2872..00000000 --- a/src/quickcontrols2/imagine/images/toolbutton-background-focused.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index aa844165..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c682255..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 89bdd096..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/toolbutton-background-hovered.9.png b/src/quickcontrols2/imagine/images/toolbutton-background-hovered.9.png Binary files differdeleted file mode 100644 index 287a2872..00000000 --- a/src/quickcontrols2/imagine/images/toolbutton-background-hovered.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index aa844165..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c682255..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 89bdd096..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/toolbutton-background-pressed.9.png b/src/quickcontrols2/imagine/images/toolbutton-background-pressed.9.png Binary files differdeleted file mode 100644 index 287a2872..00000000 --- a/src/quickcontrols2/imagine/images/toolbutton-background-pressed.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index aa844165..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 8c682255..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 89bdd096..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/toolbutton-background.9.png b/src/quickcontrols2/imagine/images/toolbutton-background.9.png Binary files differdeleted file mode 100644 index 5a72a621..00000000 --- a/src/quickcontrols2/imagine/images/toolbutton-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 688a071a..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 64375a7e..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 96004a10..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/toolseparator-separator-horizontal.9.png b/src/quickcontrols2/imagine/images/toolseparator-separator-horizontal.9.png Binary files differdeleted file mode 100644 index 75e3e662..00000000 --- a/src/quickcontrols2/imagine/images/toolseparator-separator-horizontal.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 3662dec9..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 27714701..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index deeda9f5..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/toolseparator-separator-vertical.9.png b/src/quickcontrols2/imagine/images/toolseparator-separator-vertical.9.png Binary files differdeleted file mode 100644 index 5b607aaf..00000000 --- a/src/quickcontrols2/imagine/images/toolseparator-separator-vertical.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index f5a11e04..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c957280f..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index c888689d..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/tooltip-background.9.png b/src/quickcontrols2/imagine/images/tooltip-background.9.png Binary files differdeleted file mode 100644 index 2e0dc67c..00000000 --- a/src/quickcontrols2/imagine/images/tooltip-background.9.png +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index dd560998..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index fed46542..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/images/[email protected] b/src/quickcontrols2/imagine/images/[email protected] Binary files differdeleted file mode 100644 index 9bc96490..00000000 --- a/src/quickcontrols2/imagine/images/[email protected] +++ /dev/null diff --git a/src/quickcontrols2/imagine/imagine.pri b/src/quickcontrols2/imagine/imagine.pri deleted file mode 100644 index 134aa2c3..00000000 --- a/src/quickcontrols2/imagine/imagine.pri +++ /dev/null @@ -1,58 +0,0 @@ -HEADERS += \ - $$PWD/qquickimaginestyle_p.h \ - $$PWD/qquickimaginetheme_p.h - -SOURCES += \ - $$PWD/qquickimaginestyle.cpp \ - $$PWD/qquickimaginetheme.cpp - -QML_FILES += \ - $$PWD/ApplicationWindow.qml \ - $$PWD/BusyIndicator.qml \ - $$PWD/Button.qml \ - $$PWD/CheckBox.qml \ - $$PWD/CheckDelegate.qml \ - $$PWD/ComboBox.qml \ - $$PWD/DelayButton.qml \ - $$PWD/Dial.qml \ - $$PWD/Dialog.qml \ - $$PWD/DialogButtonBox.qml \ - $$PWD/Drawer.qml \ - $$PWD/Frame.qml \ - $$PWD/GroupBox.qml \ - $$PWD/HorizontalHeaderView.qml \ - $$PWD/ItemDelegate.qml \ - $$PWD/Label.qml \ - $$PWD/Menu.qml \ - $$PWD/MenuItem.qml \ - $$PWD/MenuSeparator.qml \ - $$PWD/PageIndicator.qml \ - $$PWD/Page.qml \ - $$PWD/Pane.qml \ - $$PWD/Popup.qml \ - $$PWD/ProgressBar.qml \ - $$PWD/RadioButton.qml \ - $$PWD/RadioDelegate.qml \ - $$PWD/RangeSlider.qml \ - $$PWD/RoundButton.qml \ - $$PWD/ScrollView.qml \ - $$PWD/ScrollBar.qml \ - $$PWD/ScrollIndicator.qml \ - $$PWD/Slider.qml \ - $$PWD/SpinBox.qml \ - $$PWD/SplitView.qml \ - $$PWD/StackView.qml \ - $$PWD/SwipeDelegate.qml \ - $$PWD/SwipeView.qml \ - $$PWD/Switch.qml \ - $$PWD/SwitchDelegate.qml \ - $$PWD/TextField.qml \ - $$PWD/TextArea.qml \ - $$PWD/TabBar.qml \ - $$PWD/TabButton.qml \ - $$PWD/ToolBar.qml \ - $$PWD/ToolButton.qml \ - $$PWD/ToolSeparator.qml \ - $$PWD/ToolTip.qml \ - $$PWD/Tumbler.qml \ - $$PWD/VerticalHeaderView.qml diff --git a/src/quickcontrols2/imagine/impl/CMakeLists.txt b/src/quickcontrols2/imagine/impl/CMakeLists.txt deleted file mode 100644 index 87cfc332..00000000 --- a/src/quickcontrols2/imagine/impl/CMakeLists.txt +++ /dev/null @@ -1,47 +0,0 @@ -##################################################################### -## qtquickcontrols2imaginestyleimplplugin Plugin: -##################################################################### - -set(qml_files - "OpacityMask.qml" -) -set_source_files_properties(OpacityMask.qml PROPERTIES - QT_QML_SOURCE_VERSION "6.0" -) - -qt_internal_add_qml_module(qtquickcontrols2imaginestyleimplplugin - URI "QtQuick.Controls.Imagine.impl" - VERSION "${PROJECT_VERSION}" - CLASS_NAME QtQuickControls2ImagineStyleImplPlugin - PLUGIN_TARGET qtquickcontrols2imaginestyleimplplugin - NO_PLUGIN_OPTIONAL - SOURCES - qquickimageselector.cpp qquickimageselector_p.h - qquickninepatchimage.cpp qquickninepatchimage_p.h - QML_FILES - ${qml_files} - DEFINES - QT_NO_CAST_FROM_ASCII - QT_NO_CAST_TO_ASCII - LIBRARIES - Qt::CorePrivate - Qt::Gui - Qt::QmlPrivate - Qt::QuickControls2ImplPrivate - Qt::QuickPrivate - Qt::QuickTemplates2Private -) - -# Resources: -set(qmake_qtquickcontrols2imaginestyleimplplugin_resource_files - "shaders/+glslcore/OpacityMask.frag" - "shaders/+qsb/OpacityMask.frag" - "shaders/OpacityMask.frag" -) - -qt_internal_add_resource(qtquickcontrols2imaginestyleimplplugin "qmake_qtquickcontrols2imaginestyleimplplugin" - PREFIX - "qt-project.org/imports/QtQuick/Controls/Imagine/impl" - FILES - ${qmake_qtquickcontrols2imaginestyleimplplugin_resource_files} -) diff --git a/src/quickcontrols2/imagine/impl/OpacityMask.qml b/src/quickcontrols2/imagine/impl/OpacityMask.qml deleted file mode 100644 index 26663a1b..00000000 --- a/src/quickcontrols2/imagine/impl/OpacityMask.qml +++ /dev/null @@ -1,68 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2020 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -import QtQuick - -/* - A cross-graphics API implementation of QtGraphicalEffects' OpacityMask. - */ -Item { - id: rootItem - - property variant source - property variant maskSource - property bool cached: false - - ShaderEffectSource { - id: cacheItem - anchors.fill: parent - visible: rootItem.cached - smooth: true - sourceItem: shaderItem - live: true - hideSource: visible - } - - ShaderEffect { - id: shaderItem - property variant source: rootItem.source - property variant maskSource: rootItem.maskSource - - anchors.fill: parent - - fragmentShader: "qrc:/qt-project.org/imports/QtQuick/Controls/Imagine/impl/shaders/OpacityMask.frag" - } -} diff --git a/src/quickcontrols2/imagine/impl/qquickimageselector.cpp b/src/quickcontrols2/imagine/impl/qquickimageselector.cpp deleted file mode 100644 index dcb7738c..00000000 --- a/src/quickcontrols2/imagine/impl/qquickimageselector.cpp +++ /dev/null @@ -1,338 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include "qquickimageselector_p.h" - -#include <QtCore/qdir.h> -#include <QtCore/qfileinfo.h> -#include <QtCore/qcache.h> -#include <QtCore/qloggingcategory.h> -#include <QtCore/qfileselector.h> -#include <QtQml/qqmlfile.h> -#include <QtQml/private/qqmlproperty_p.h> -#include <algorithm> - -QT_BEGIN_NAMESPACE - -Q_LOGGING_CATEGORY(lcQtQuickControlsImagine, "qt.quick.controls.imagine") - -static const int DEFAULT_CACHE = 500; - -static inline int cacheSize() -{ - static bool ok = false; - static const int size = qEnvironmentVariableIntValue("QT_QUICK_CONTROLS_IMAGINE_CACHE", &ok); - return ok ? size : DEFAULT_CACHE; -} - -// input: [focused, pressed] -// => [[focused, pressed], [pressed, focused], [focused], [pressed]] -static QList<QStringList> permutations(const QStringList &input, int count = -1) -{ - if (count == -1) - count = input.count(); - - QList<QStringList> output; - for (int i = 0; i < input.count(); ++i) { - QStringList sub = input.mid(i, count); - - if (count > 1) { - if (i + count > input.count()) - sub += input.mid(0, count - i + 1); - - std::sort(sub.begin(), sub.end()); - do { - if (!sub.isEmpty()) - output += sub; - } while (std::next_permutation(sub.begin(), sub.end())); - } else { - output += sub; - } - - if (count == input.count()) - break; - } - - if (count > 1) - output += permutations(input, --count); - - return output; -} - -static QString findFile(const QDir &dir, const QString &baseName, const QStringList &extensions) -{ - for (const QString &ext : extensions) { - QString filePath = dir.filePath(baseName + QLatin1Char('.') + ext); - if (QFile::exists(filePath)) - return QFileSelector().select(filePath); - } - // return an empty string to indicate that the lookup has been done - // even if no matching asset was found - return QLatin1String(""); -} - -QQuickImageSelector::QQuickImageSelector(QObject *parent) - : QObject(parent), - m_cache(cacheSize() > 0) -{ -} - -QUrl QQuickImageSelector::source() const -{ - return m_source; -} - -void QQuickImageSelector::setSource(const QUrl &source) -{ - if (m_property.isValid()) - QQmlPropertyPrivate::write(m_property, source, QQmlPropertyData::BypassInterceptor | QQmlPropertyData::DontRemoveBinding); - if (m_source == source) - return; - - m_source = source; - emit sourceChanged(); -} - -QString QQuickImageSelector::name() const -{ - return m_name; -} - -void QQuickImageSelector::setName(const QString &name) -{ - if (m_name == name) - return; - - m_name = name; - if (m_complete) - updateSource(); -} - -QString QQuickImageSelector::path() const -{ - return m_path; -} - -void QQuickImageSelector::setPath(const QString &path) -{ - if (m_path == path) - return; - - m_path = path; - if (m_complete) - updateSource(); -} - -QVariantList QQuickImageSelector::states() const -{ - return m_allStates; -} - -void QQuickImageSelector::setStates(const QVariantList &states) -{ - if (m_allStates == states) - return; - - m_allStates = states; - if (updateActiveStates() && m_complete) - updateSource(); -} - -QString QQuickImageSelector::separator() const -{ - return m_separator; -} - -void QQuickImageSelector::setSeparator(const QString &separator) -{ - if (m_separator == separator) - return; - - m_separator = separator; - if (m_complete) - updateSource(); -} - -bool QQuickImageSelector::cache() const -{ - return m_cache; -} - -void QQuickImageSelector::setCache(bool cache) -{ - m_cache = cache; -} - -void QQuickImageSelector::write(const QVariant &value) -{ - setUrl(value.toUrl()); -} - -void QQuickImageSelector::setTarget(const QQmlProperty &property) -{ - m_property = property; -} - -void QQuickImageSelector::classBegin() -{ -} - -void QQuickImageSelector::componentComplete() -{ - setUrl(m_property.read().toUrl()); - m_complete = true; - updateSource(); -} - -QStringList QQuickImageSelector::fileExtensions() const -{ - static const QStringList extensions = QStringList() << QStringLiteral("png"); - return extensions; -} - -QString QQuickImageSelector::cacheKey() const -{ - if (!m_cache) - return QString(); - - return m_path + m_name + m_activeStates.join(m_separator); -} - -void QQuickImageSelector::updateSource() -{ - static QCache<QString, QString> cache(cacheSize()); - - const QString key = cacheKey(); - - QString bestFilePath; - - if (m_cache) { - QString *cachedPath = cache.object(key); - if (cachedPath) - bestFilePath = *cachedPath; - } - - // note: a cached file path may be empty - if (bestFilePath.isNull()) { - QDir dir(m_path); - int bestScore = -1; - - const QStringList extensions = fileExtensions(); - - const QList<QStringList> statePerms = permutations(m_activeStates); - for (const QStringList &perm : statePerms) { - const QString filePath = findFile(dir, m_name + m_separator + perm.join(m_separator), extensions); - if (!filePath.isEmpty()) { - int score = calculateScore(perm); - if (score > bestScore) { - bestScore = score; - bestFilePath = filePath; - } - } - } - - if (bestFilePath.isEmpty()) - bestFilePath = findFile(dir, m_name, extensions); - - if (m_cache) - cache.insert(key, new QString(bestFilePath)); - } - - qCDebug(lcQtQuickControlsImagine) << m_name << m_activeStates << "->" << bestFilePath; - - if (bestFilePath.startsWith(QLatin1Char(':'))) - setSource(QUrl(QLatin1String("qrc") + bestFilePath)); - else - setSource(QUrl::fromLocalFile(bestFilePath)); -} - -void QQuickImageSelector::setUrl(const QUrl &url) -{ - QFileInfo fileInfo(QQmlFile::urlToLocalFileOrQrc(url)); - setName(fileInfo.fileName()); - setPath(fileInfo.path()); -} - -bool QQuickImageSelector::updateActiveStates() -{ - QStringList active; - for (const QVariant &v : qAsConst(m_allStates)) { - const QVariantMap state = v.toMap(); - if (state.isEmpty()) - continue; - auto it = state.begin(); - if (it.value().toBool()) - active += it.key(); - } - - if (m_activeStates == active) - return false; - - m_activeStates = active; - return true; -} - -int QQuickImageSelector::calculateScore(const QStringList &states) const -{ - int score = 0; - for (int i = 0; i < states.count(); ++i) - score += (m_activeStates.count() - m_activeStates.indexOf(states.at(i))) << 1; - return score; -} - -QQuickNinePatchImageSelector::QQuickNinePatchImageSelector(QObject *parent) - : QQuickImageSelector(parent) -{ -} - -QStringList QQuickNinePatchImageSelector::fileExtensions() const -{ - static const QStringList extensions = QStringList() << QStringLiteral("9.png") << QStringLiteral("png"); - return extensions; -} - -QQuickAnimatedImageSelector::QQuickAnimatedImageSelector(QObject *parent) - : QQuickImageSelector(parent) -{ -} - -QStringList QQuickAnimatedImageSelector::fileExtensions() const -{ - static const QStringList extensions = QStringList() << QStringLiteral("webp") << QStringLiteral("gif"); - return extensions; -} - -QT_END_NAMESPACE diff --git a/src/quickcontrols2/imagine/impl/qquickimageselector_p.h b/src/quickcontrols2/imagine/impl/qquickimageselector_p.h deleted file mode 100644 index 351caefb..00000000 --- a/src/quickcontrols2/imagine/impl/qquickimageselector_p.h +++ /dev/null @@ -1,157 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#ifndef QQUICKIMAGESELECTOR_P_H -#define QQUICKIMAGESELECTOR_P_H - -// -// W A R N I N G -// ------------- -// -// This file is not part of the Qt API. It exists purely as an -// implementation detail. This header file may change from version to -// version without notice, or even be removed. -// -// We mean it. -// - -#include <QtCore/qurl.h> -#include <QtCore/qobject.h> -#include <QtCore/qvariant.h> -#include <QtQml/qqmlproperty.h> -#include <QtQml/qqmlparserstatus.h> -#include <QtQml/private/qqmlpropertyvalueinterceptor_p.h> -#include <QtQml/qqmlproperty.h> -#include <QtQml/qqml.h> - -QT_BEGIN_NAMESPACE - -class QQuickImageSelector : public QObject, public QQmlParserStatus, public QQmlPropertyValueInterceptor -{ - Q_OBJECT - Q_PROPERTY(QUrl source READ source NOTIFY sourceChanged FINAL) - Q_PROPERTY(QString name READ name WRITE setName FINAL) - Q_PROPERTY(QString path READ path WRITE setPath FINAL) - Q_PROPERTY(QVariantList states READ states WRITE setStates FINAL) - Q_PROPERTY(QString separator READ separator WRITE setSeparator FINAL) - Q_PROPERTY(bool cache READ cache WRITE setCache FINAL) - Q_INTERFACES(QQmlParserStatus QQmlPropertyValueInterceptor) - QML_NAMED_ELEMENT(ImageSelector) - QML_ADDED_IN_VERSION(2, 3) - -public: - explicit QQuickImageSelector(QObject *parent = nullptr); - - QUrl source() const; - void setSource(const QUrl &source); - - QString name() const; - void setName(const QString &name); - - QString path() const; - void setPath(const QString &path); - - QVariantList states() const; - void setStates(const QVariantList &states); - - QString separator() const; - void setSeparator(const QString &separator); - - bool cache() const; - void setCache(bool cache); - - void write(const QVariant &value) override; - void setTarget(const QQmlProperty &property) override; - -Q_SIGNALS: - void sourceChanged(); - -protected: - void classBegin() override; - void componentComplete() override; - - virtual QStringList fileExtensions() const; - - QString cacheKey() const; - void updateSource(); - void setUrl(const QUrl &url); - bool updateActiveStates(); - int calculateScore(const QStringList &states) const; - -private: - bool m_cache = false; - bool m_complete = false; - QUrl m_source; - QString m_path; - QString m_name; - QString m_separator = QLatin1String("-"); - QVariantList m_allStates; - QStringList m_activeStates; - QQmlProperty m_property; -}; - -class QQuickNinePatchImageSelector : public QQuickImageSelector -{ - Q_OBJECT - QML_NAMED_ELEMENT(NinePatchImageSelector) - QML_ADDED_IN_VERSION(2, 3) - -public: - explicit QQuickNinePatchImageSelector(QObject *parent = nullptr); - -protected: - QStringList fileExtensions() const override; -}; - -class QQuickAnimatedImageSelector : public QQuickImageSelector -{ - Q_OBJECT - QML_NAMED_ELEMENT(AnimatedImageSelector) - QML_ADDED_IN_VERSION(2, 3) - -public: - explicit QQuickAnimatedImageSelector(QObject *parent = nullptr); - -protected: - QStringList fileExtensions() const override; -}; - -QT_END_NAMESPACE - -QML_DECLARE_TYPE(QQuickImageSelector) -QML_DECLARE_TYPE(QQuickAnimatedImageSelector) - -#endif // QQUICKIMAGESELECTOR_P_H diff --git a/src/quickcontrols2/imagine/impl/qquickninepatchimage.cpp b/src/quickcontrols2/imagine/impl/qquickninepatchimage.cpp deleted file mode 100644 index 66404ba4..00000000 --- a/src/quickcontrols2/imagine/impl/qquickninepatchimage.cpp +++ /dev/null @@ -1,469 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include "qquickninepatchimage_p.h" - -#include <QtCore/qfileinfo.h> -#include <QtQuick/qsggeometry.h> -#include <QtQuick/qsgtexturematerial.h> -#include <QtQuick/private/qsgnode_p.h> -#include <QtQuick/private/qquickimage_p_p.h> - -QT_BEGIN_NAMESPACE - -struct QQuickNinePatchData -{ - QList<qreal> coordsForSize(qreal count) const; - - inline bool isNull() const { return data.isEmpty(); } - inline int count() const { return data.size(); } - inline qreal at(int index) const { return data.at(index); } - inline qreal size() const { return data.last(); } - - void fill(const QList<qreal> &coords, qreal count); - void clear(); - -private: - bool inverted = false; - QList<qreal> data; -}; - -QList<qreal> QQuickNinePatchData::coordsForSize(qreal size) const -{ - // n = number of stretchable sections - // We have to compensate when adding 0 and/or - // the source image width to the divs vector. - const int l = data.size(); - const int n = (inverted ? l - 1 : l) / 2; - const qreal stretch = (size - data.last()) / n; - - QList<qreal> coords; - coords.reserve(l); - coords.append(0); - - bool stretched = !inverted; - for (int i = 1; i < l; ++i) { - qreal advance = data[i] - data[i - 1]; - if (stretched) - advance += stretch; - coords.append(coords.last() + advance); - - stretched = !stretched; - } - - return coords; -} - -void QQuickNinePatchData::fill(const QList<qreal> &coords, qreal size) -{ - data.clear(); - inverted = coords.isEmpty() || coords.first() != 0; - - // Reserve an extra item in case we need to add the image width/height - if (inverted) { - data.reserve(coords.size() + 2); - data.append(0); - } else { - data.reserve(coords.size() + 1); - } - - data += coords; - data.append(size); -} - -void QQuickNinePatchData::clear() -{ - data.clear(); -} - -class QQuickNinePatchNode : public QSGGeometryNode -{ -public: - QQuickNinePatchNode(); - ~QQuickNinePatchNode(); - - void initialize(QSGTexture *texture, const QSizeF &targetSize, const QSize &sourceSize, - const QQuickNinePatchData &xDivs, const QQuickNinePatchData &yDivs, qreal dpr); - -private: - QSGGeometry m_geometry; - QSGTextureMaterial m_material; -}; - -QQuickNinePatchNode::QQuickNinePatchNode() - : m_geometry(QSGGeometry::defaultAttributes_TexturedPoint2D(), 4) -{ - m_geometry.setDrawingMode(QSGGeometry::DrawTriangles); - setGeometry(&m_geometry); - setMaterial(&m_material); -} - -QQuickNinePatchNode::~QQuickNinePatchNode() -{ - delete m_material.texture(); -} - -void QQuickNinePatchNode::initialize(QSGTexture *texture, const QSizeF &targetSize, const QSize &sourceSize, - const QQuickNinePatchData &xDivs, const QQuickNinePatchData &yDivs, qreal dpr) -{ - delete m_material.texture(); - m_material.setTexture(texture); - - const int xlen = xDivs.count(); - const int ylen = yDivs.count(); - - if (xlen > 0 && ylen > 0) { - const int quads = (xlen - 1) * (ylen - 1); - static const int verticesPerQuad = 6; - m_geometry.allocate(xlen * ylen, verticesPerQuad * quads); - - QSGGeometry::TexturedPoint2D *vertices = m_geometry.vertexDataAsTexturedPoint2D(); - QList<qreal> xCoords = xDivs.coordsForSize(targetSize.width()); - QList<qreal> yCoords = yDivs.coordsForSize(targetSize.height()); - - for (int y = 0; y < ylen; ++y) { - for (int x = 0; x < xlen; ++x, ++vertices) - vertices->set(xCoords[x] / dpr, yCoords[y] / dpr, - xDivs.at(x) / sourceSize.width(), - yDivs.at(y) / sourceSize.height()); - } - - quint16 *indices = m_geometry.indexDataAsUShort(); - int n = quads; - for (int q = 0; n--; ++q) { - if ((q + 1) % xlen == 0) // next row - ++q; - // Bottom-left half quad triangle - indices[0] = q; - indices[1] = q + xlen; - indices[2] = q + xlen + 1; - - // Top-right half quad triangle - indices[3] = q; - indices[4] = q + xlen + 1; - indices[5] = q + 1; - - indices += verticesPerQuad; - } - } - - markDirty(QSGNode::DirtyGeometry | QSGNode::DirtyMaterial); -} - -class QQuickNinePatchImagePrivate : public QQuickImagePrivate -{ - Q_DECLARE_PUBLIC(QQuickNinePatchImage) - -public: - void updatePatches(); - void updatePaddings(const QSizeF &size, const QList<qreal> &horizontal, const QList<qreal> &vertical); - void updateInsets(const QList<qreal> &horizontal, const QList<qreal> &vertical); - - bool resetNode = false; - qreal topPadding = 0; - qreal leftPadding = 0; - qreal rightPadding = 0; - qreal bottomPadding = 0; - qreal topInset = 0; - qreal leftInset = 0; - qreal rightInset = 0; - qreal bottomInset = 0; - - QImage ninePatch; - QQuickNinePatchData xDivs; - QQuickNinePatchData yDivs; -}; - -static QList<qreal> readCoords(const QRgb *data, int from, int count, int offset, QRgb color) -{ - int p1 = -1; - QList<qreal> coords; - for (int i = 0; i < count; ++i) { - int p2 = from + i * offset; - if (data[p2] == color) { - // colored pixel - if (p1 == -1) - p1 = i; - } else { - // empty pixel - if (p1 != -1) { - coords << p1 << i; - p1 = -1; - } - } - } - return coords; -} - -void QQuickNinePatchImagePrivate::updatePatches() -{ - if (ninePatch.isNull()) - return; - - int w = ninePatch.width(); - int h = ninePatch.height(); - const QRgb *data = reinterpret_cast<const QRgb *>(ninePatch.constBits()); - - const QRgb black = qRgb(0,0,0); - const QRgb red = qRgb(255,0,0); - - xDivs.fill(readCoords(data, 1, w - 1, 1, black), w - 2); // top left -> top right - yDivs.fill(readCoords(data, w, h - 1, w, black), h - 2); // top left -> bottom left - - QList<qreal> hInsets = readCoords(data, (h - 1) * w + 1, w - 1, 1, red); // bottom left -> bottom right - QList<qreal> vInsets = readCoords(data, 2 * w - 1, h - 1, w, red); // top right -> bottom right - updateInsets(hInsets, vInsets); - - const QSizeF sz(w - leftInset - rightInset, h - topInset - bottomInset); - QList<qreal> hPaddings = readCoords(data, (h - 1) * w + leftInset + 1, sz.width() - 2, 1, black); // bottom left -> bottom right - QList<qreal> vPaddings = readCoords(data, (2 + topInset) * w - 1, sz.height() - 2, w, black); // top right -> bottom right - updatePaddings(sz, hPaddings, vPaddings); -} - -void QQuickNinePatchImagePrivate::updatePaddings(const QSizeF &size, const QList<qreal> &horizontal, const QList<qreal> &vertical) -{ - Q_Q(QQuickNinePatchImage); - qreal oldTopPadding = topPadding; - qreal oldLeftPadding = leftPadding; - qreal oldRightPadding = rightPadding; - qreal oldBottomPadding = bottomPadding; - - if (horizontal.count() >= 2) { - leftPadding = horizontal.first(); - rightPadding = size.width() - horizontal.last() - 2; - } else { - leftPadding = 0; - rightPadding = 0; - } - - if (vertical.count() >= 2) { - topPadding = vertical.first(); - bottomPadding = size.height() - vertical.last() - 2; - } else { - topPadding = 0; - bottomPadding = 0; - } - - if (!qFuzzyCompare(oldTopPadding, topPadding)) - emit q->topPaddingChanged(); - if (!qFuzzyCompare(oldBottomPadding, bottomPadding)) - emit q->bottomPaddingChanged(); - if (!qFuzzyCompare(oldLeftPadding, leftPadding)) - emit q->leftPaddingChanged(); - if (!qFuzzyCompare(oldRightPadding, rightPadding)) - emit q->rightPaddingChanged(); -} - -void QQuickNinePatchImagePrivate::updateInsets(const QList<qreal> &horizontal, const QList<qreal> &vertical) -{ - Q_Q(QQuickNinePatchImage); - qreal oldTopInset = topInset; - qreal oldLeftInset = leftInset; - qreal oldRightInset = rightInset; - qreal oldBottomInset = bottomInset; - - if (horizontal.count() >= 2 && horizontal.first() == 0) - leftInset = horizontal.at(1); - else - leftInset = 0; - - if (horizontal.count() == 2 && horizontal.first() > 0) - rightInset = horizontal.last() - horizontal.first(); - else if (horizontal.count() == 4) - rightInset = horizontal.last() - horizontal.at(2); - else - rightInset = 0; - - if (vertical.count() >= 2 && vertical.first() == 0) - topInset = vertical.at(1); - else - topInset = 0; - - if (vertical.count() == 2 && vertical.first() > 0) - bottomInset = vertical.last() - vertical.first(); - else if (vertical.count() == 4) - bottomInset = vertical.last() - vertical.at(2); - else - bottomInset = 0; - - if (!qFuzzyCompare(oldTopInset, topInset)) - emit q->topInsetChanged(); - if (!qFuzzyCompare(oldBottomInset, bottomInset)) - emit q->bottomInsetChanged(); - if (!qFuzzyCompare(oldLeftInset, leftInset)) - emit q->leftInsetChanged(); - if (!qFuzzyCompare(oldRightInset, rightInset)) - emit q->rightInsetChanged(); -} - -QQuickNinePatchImage::QQuickNinePatchImage(QQuickItem *parent) - : QQuickImage(*(new QQuickNinePatchImagePrivate), parent) -{ -} - -qreal QQuickNinePatchImage::topPadding() const -{ - Q_D(const QQuickNinePatchImage); - return d->topPadding / d->devicePixelRatio; -} - -qreal QQuickNinePatchImage::leftPadding() const -{ - Q_D(const QQuickNinePatchImage); - return d->leftPadding / d->devicePixelRatio; -} - -qreal QQuickNinePatchImage::rightPadding() const -{ - Q_D(const QQuickNinePatchImage); - return d->rightPadding / d->devicePixelRatio; -} - -qreal QQuickNinePatchImage::bottomPadding() const -{ - Q_D(const QQuickNinePatchImage); - return d->bottomPadding / d->devicePixelRatio; -} - -qreal QQuickNinePatchImage::topInset() const -{ - Q_D(const QQuickNinePatchImage); - return d->topInset / d->devicePixelRatio; -} - -qreal QQuickNinePatchImage::leftInset() const -{ - Q_D(const QQuickNinePatchImage); - return d->leftInset / d->devicePixelRatio; -} - -qreal QQuickNinePatchImage::rightInset() const -{ - Q_D(const QQuickNinePatchImage); - return d->rightInset / d->devicePixelRatio; -} - -qreal QQuickNinePatchImage::bottomInset() const -{ - Q_D(const QQuickNinePatchImage); - return d->bottomInset / d->devicePixelRatio; -} - -void QQuickNinePatchImage::pixmapChange() -{ - Q_D(QQuickNinePatchImage); - if (QFileInfo(d->url.fileName()).completeSuffix().toLower() == QLatin1String("9.png")) { - // Keep resetNode if it is already set, we do not want to miss an - // ImageNode->NinePatchNode change. Without this there's a chance one gets - // an incorrect cast on oldNode every once in a while with source changes. - if (!d->resetNode) - d->resetNode = d->ninePatch.isNull(); - - d->ninePatch = d->pix.image(); - if (d->ninePatch.depth() != 32) - d->ninePatch = d->ninePatch.convertToFormat(QImage::Format_ARGB32); - - int w = d->ninePatch.width(); - int h = d->ninePatch.height(); - d->pix.setImage(QImage(d->ninePatch.constBits() + 4 * (w + 1), w - 2, h - 2, d->ninePatch.bytesPerLine(), d->ninePatch.format())); - - d->updatePatches(); - } else { - /* - Only change resetNode when it's false; i.e. when no reset is pending. - updatePaintNode() will take care of setting it to false if it's true. - - Consider the following changes in source: - - normal.png => press.9.png => normal.png => focus.png - - If the last two events happen quickly, pixmapChange() can be called - twice with no call to updatePaintNode() inbetween. On the first call, - resetNode will be true (because ninePatch is not null since it is still - in the process of going from a 9-patch image to a regular image), - and on the second call, resetNode would be false if we didn't have this check. - This results in the oldNode never being deleted, and QQuickImage - tries to static_cast a QQuickNinePatchImage to a QSGInternalImageNode. - */ - if (!d->resetNode) - d->resetNode = !d->ninePatch.isNull(); - d->ninePatch = QImage(); - } - QQuickImage::pixmapChange(); -} - -QSGNode *QQuickNinePatchImage::updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *data) -{ - Q_D(QQuickNinePatchImage); - Q_UNUSED(data); - - if (d->resetNode) { - delete oldNode; - oldNode = nullptr; - d->resetNode = false; - } - - QSizeF sz = size(); - QImage image = d->pix.image(); - if (!sz.isValid() || image.isNull()) { - delete oldNode; - return nullptr; - } - - if (d->ninePatch.isNull()) - return QQuickImage::updatePaintNode(oldNode, data); - - QQuickNinePatchNode *patchNode = static_cast<QQuickNinePatchNode *>(oldNode); - if (!patchNode) - patchNode = new QQuickNinePatchNode; - -#ifdef QSG_RUNTIME_DESCRIPTION - qsgnode_set_description(patchNode, QString::fromLatin1("QQuickNinePatchImage: '%1'").arg(d->url.toString())); -#endif - - // The image may wrap non-owned data (due to pixmapChange). Ensure we never - // pass such an image to the scenegraph, because with a separate render - // thread the data may become invalid (in a subsequent pixmapChange on the - // gui thread) by the time the renderer gets to do something with the QImage - // passed in here. - image.detach(); - - QSGTexture *texture = window()->createTextureFromImage(image); - patchNode->initialize(texture, sz * d->devicePixelRatio, image.size(), d->xDivs, d->yDivs, d->devicePixelRatio); - return patchNode; -} - -QT_END_NAMESPACE diff --git a/src/quickcontrols2/imagine/impl/qquickninepatchimage_p.h b/src/quickcontrols2/imagine/impl/qquickninepatchimage_p.h deleted file mode 100644 index 78cc3068..00000000 --- a/src/quickcontrols2/imagine/impl/qquickninepatchimage_p.h +++ /dev/null @@ -1,108 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#ifndef QQUICKNINEPATCHIMAGE_P_H -#define QQUICKNINEPATCHIMAGE_P_H - -// -// W A R N I N G -// ------------- -// -// This file is not part of the Qt API. It exists purely as an -// implementation detail. This header file may change from version to -// version without notice, or even be removed. -// -// We mean it. -// - -#include <QtQuick/private/qquickimage_p.h> - -QT_BEGIN_NAMESPACE - -class QQuickNinePatchImagePrivate; - -class QQuickNinePatchImage : public QQuickImage -{ - Q_OBJECT - Q_PROPERTY(qreal topPadding READ topPadding NOTIFY topPaddingChanged FINAL) - Q_PROPERTY(qreal leftPadding READ leftPadding NOTIFY leftPaddingChanged FINAL) - Q_PROPERTY(qreal rightPadding READ rightPadding NOTIFY rightPaddingChanged FINAL) - Q_PROPERTY(qreal bottomPadding READ bottomPadding NOTIFY bottomPaddingChanged FINAL) - Q_PROPERTY(qreal topInset READ topInset NOTIFY topInsetChanged FINAL) - Q_PROPERTY(qreal leftInset READ leftInset NOTIFY leftInsetChanged FINAL) - Q_PROPERTY(qreal rightInset READ rightInset NOTIFY rightInsetChanged FINAL) - Q_PROPERTY(qreal bottomInset READ bottomInset NOTIFY bottomInsetChanged FINAL) - QML_NAMED_ELEMENT(NinePatchImage) - QML_ADDED_IN_VERSION(2, 3) - -public: - explicit QQuickNinePatchImage(QQuickItem *parent = nullptr); - - qreal topPadding() const; - qreal leftPadding() const; - qreal rightPadding() const; - qreal bottomPadding() const; - - qreal topInset() const; - qreal leftInset() const; - qreal rightInset() const; - qreal bottomInset() const; - -Q_SIGNALS: - void topPaddingChanged(); - void leftPaddingChanged(); - void rightPaddingChanged(); - void bottomPaddingChanged(); - - void topInsetChanged(); - void leftInsetChanged(); - void rightInsetChanged(); - void bottomInsetChanged(); - -protected: - void pixmapChange() override; - QSGNode *updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *data) override; - -private: - Q_DISABLE_COPY(QQuickNinePatchImage) - Q_DECLARE_PRIVATE(QQuickNinePatchImage) -}; - -QT_END_NAMESPACE - -QML_DECLARE_TYPE(QQuickNinePatchImage) - -#endif // QQUICKNINEPATCHIMAGE_P_H diff --git a/src/quickcontrols2/imagine/impl/shaders/+glslcore/OpacityMask.frag b/src/quickcontrols2/imagine/impl/shaders/+glslcore/OpacityMask.frag deleted file mode 100644 index 529e2696..00000000 --- a/src/quickcontrols2/imagine/impl/shaders/+glslcore/OpacityMask.frag +++ /dev/null @@ -1,13 +0,0 @@ -#version 150 - -uniform float qt_Opacity; -uniform sampler2D source; -uniform sampler2D maskSource; - -in vec2 qt_TexCoord0; -out vec4 fragColor; - -void main() -{ - fragColor = texture(source, qt_TexCoord0.st) * (texture(maskSource, qt_TexCoord0.st).a) * qt_Opacity; -} diff --git a/src/quickcontrols2/imagine/impl/shaders/+qsb/OpacityMask.frag b/src/quickcontrols2/imagine/impl/shaders/+qsb/OpacityMask.frag Binary files differdeleted file mode 100644 index 331b30b8..00000000 --- a/src/quickcontrols2/imagine/impl/shaders/+qsb/OpacityMask.frag +++ /dev/null diff --git a/src/quickcontrols2/imagine/impl/shaders/OpacityMask.frag b/src/quickcontrols2/imagine/impl/shaders/OpacityMask.frag deleted file mode 100644 index 84f9bc3e..00000000 --- a/src/quickcontrols2/imagine/impl/shaders/OpacityMask.frag +++ /dev/null @@ -1,7 +0,0 @@ -varying highp vec2 qt_TexCoord0; -uniform highp float qt_Opacity; -uniform lowp sampler2D source; -uniform lowp sampler2D maskSource; -void main(void) { - gl_FragColor = texture2D(source, qt_TexCoord0.st) * (texture2D(maskSource, qt_TexCoord0.st).a) * qt_Opacity; -} diff --git a/src/quickcontrols2/imagine/impl/shaders/OpacityMask_rhi.frag b/src/quickcontrols2/imagine/impl/shaders/OpacityMask_rhi.frag deleted file mode 100644 index 9ae32499..00000000 --- a/src/quickcontrols2/imagine/impl/shaders/OpacityMask_rhi.frag +++ /dev/null @@ -1,17 +0,0 @@ -#version 440 - -layout(location = 0) in vec2 qt_TexCoord0; -layout(location = 0) out vec4 fragColor; - -layout(std140, binding = 0) uniform buf { - mat4 qt_Matrix; - float qt_Opacity; -} ubuf; - -layout(binding = 1) uniform sampler2D source; -layout(binding = 2) uniform sampler2D maskSource; - -void main() -{ - fragColor = texture(source, qt_TexCoord0.st) * (texture(maskSource, qt_TexCoord0.st).a) * ubuf.qt_Opacity; -} diff --git a/src/quickcontrols2/imagine/impl/shaders/compile.bat b/src/quickcontrols2/imagine/impl/shaders/compile.bat deleted file mode 100644 index 8f16d7ac..00000000 --- a/src/quickcontrols2/imagine/impl/shaders/compile.bat +++ /dev/null @@ -1,40 +0,0 @@ -::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -:: -:: Copyright (C) 2020 The Qt Company Ltd. -:: Contact: https://www.qt.io/licensing/ -:: -:: This file is part of the QtQuick module of the Qt Toolkit. -:: -:: $QT_BEGIN_LICENSE:LGPL$ -:: Commercial License Usage -:: Licensees holding valid commercial Qt licenses may use this file in -:: accordance with the commercial license agreement provided with the -:: Software or, alternatively, in accordance with the terms contained in -:: a written agreement between you and The Qt Company. For licensing terms -:: and conditions see https://www.qt.io/terms-conditions. For further -:: information use the contact form at https://www.qt.io/contact-us. -:: -:: GNU Lesser General Public License Usage -:: Alternatively, this file may be used under the terms of the GNU Lesser -:: General Public License version 3 as published by the Free Software -:: Foundation and appearing in the file LICENSE.LGPL3 included in the -:: packaging of this file. Please review the following information to -:: ensure the GNU Lesser General Public License version 3 requirements -:: will be met: https://www.gnu.org/licenses/lgpl-3.0.html. -:: -:: GNU General Public License Usage -:: Alternatively, this file may be used under the terms of the GNU -:: General Public License version 2.0 or (at your option) the GNU General -:: Public license version 3 or any later version approved by the KDE Free -:: Qt Foundation. The licenses are as published by the Free Software -:: Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 -:: included in the packaging of this file. Please review the following -:: information to ensure the GNU General Public License requirements will -:: be met: https://www.gnu.org/licenses/gpl-2.0.html and -:: https://www.gnu.org/licenses/gpl-3.0.html. -:: -:: $QT_END_LICENSE$ -:: -::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: - -qsb --glsl "150,120,100 es" --hlsl 50 --msl 12 -o +qsb/OpacityMask.frag OpacityMask_rhi.frag diff --git a/src/quickcontrols2/imagine/qquickimaginestyle.cpp b/src/quickcontrols2/imagine/qquickimaginestyle.cpp deleted file mode 100644 index 37e55b61..00000000 --- a/src/quickcontrols2/imagine/qquickimaginestyle.cpp +++ /dev/null @@ -1,168 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include "qquickimaginestyle_p.h" - -#include <QtCore/qsettings.h> -#include <QtQuickControls2/private/qquickstyle_p.h> - -QT_BEGIN_NAMESPACE - -Q_GLOBAL_STATIC_WITH_ARGS(QString, GlobalPath, (QLatin1String("qrc:/qt-project.org/imports/QtQuick/Controls/Imagine/images/"))) - -static QString ensureSlash(const QString &path) -{ - const QChar slash = QLatin1Char('/'); - return path.endsWith(slash) ? path : path + slash; -} - -QQuickImagineStyle::QQuickImagineStyle(QObject *parent) - : QQuickAttachedObject(parent), - m_path(*GlobalPath()) -{ - init(); -} - -QQuickImagineStyle *QQuickImagineStyle::qmlAttachedProperties(QObject *object) -{ - return new QQuickImagineStyle(object); -} - -QString QQuickImagineStyle::path() const -{ - return m_path; -} - -void QQuickImagineStyle::setPath(const QString &path) -{ - m_explicitPath = true; - if (m_path == path) - return; - - m_path = path; - propagatePath(); - - emit pathChanged(); -} - -void QQuickImagineStyle::inheritPath(const QString &path) -{ - if (m_explicitPath || m_path == path) - return; - - m_path = path; - propagatePath(); - emit pathChanged(); -} - -void QQuickImagineStyle::propagatePath() -{ - const auto styles = attachedChildren(); - for (QQuickAttachedObject *child : styles) { - QQuickImagineStyle *imagine = qobject_cast<QQuickImagineStyle *>(child); - if (imagine) - imagine->inheritPath(m_path); - } -} - -void QQuickImagineStyle::resetPath() -{ - if (!m_explicitPath) - return; - - m_explicitPath = false; - QQuickImagineStyle *imagine = qobject_cast<QQuickImagineStyle *>(attachedParent()); - inheritPath(imagine ? imagine->path() : *GlobalPath()); -} - -QUrl QQuickImagineStyle::url() const -{ - // Using ApplicationWindow as an example, its NinePatchImage url - // was previously assigned like this: - // - // soruce: Imagine.path + "applicationwindow-background" - // - // If Imagine.path is set to ":/images" by the user, then the final URL would be: - // - // QUrl("file:///home/user/qt/qtbase/qml/QtQuick/Controls/Imagine/:/images/applicationwindow-background") - // - // To ensure that the correct URL is constructed, we do it ourselves here, - // and then the control QML files use the "url" property instead. - const QString path = ensureSlash(m_path); - if (path.startsWith(QLatin1String("qrc"))) - return QUrl(path); - - if (path.startsWith(QLatin1String(":/"))) - return QUrl(QLatin1String("qrc") + path); - - return QUrl::fromLocalFile(path); -} - -void QQuickImagineStyle::attachedParentChange(QQuickAttachedObject *newParent, QQuickAttachedObject *oldParent) -{ - Q_UNUSED(oldParent); - QQuickImagineStyle *imagine = qobject_cast<QQuickImagineStyle *>(newParent); - if (imagine) - inheritPath(imagine->path()); -} - -static QByteArray resolveSetting(const QByteArray &env, const QSharedPointer<QSettings> &settings, const QString &name) -{ - QByteArray value = qgetenv(env); -#if QT_CONFIG(settings) - if (value.isNull() && !settings.isNull()) - value = settings->value(name).toByteArray(); -#endif - return value; -} - -void QQuickImagineStyle::init() -{ - static bool globalsInitialized = false; - if (!globalsInitialized) { - QSharedPointer<QSettings> settings = QQuickStylePrivate::settings(QStringLiteral("Imagine")); - - QString path = QString::fromUtf8(resolveSetting("QT_QUICK_CONTROLS_IMAGINE_PATH", settings, QStringLiteral("Path"))); - if (!path.isEmpty()) - *GlobalPath() = m_path = ensureSlash(path); - - globalsInitialized = true; - } - - QQuickAttachedObject::init(); // TODO: lazy init? -} - -QT_END_NAMESPACE diff --git a/src/quickcontrols2/imagine/qquickimaginestyle_p.h b/src/quickcontrols2/imagine/qquickimaginestyle_p.h deleted file mode 100644 index 212096b9..00000000 --- a/src/quickcontrols2/imagine/qquickimaginestyle_p.h +++ /dev/null @@ -1,97 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#ifndef QQUICKIMAGINESTYLE_P_H -#define QQUICKIMAGINESTYLE_P_H - -// -// W A R N I N G -// ------------- -// -// This file is not part of the Qt API. It exists purely as an -// implementation detail. This header file may change from version to -// version without notice, or even be removed. -// -// We mean it. -// - -#include <QtCore/qvariant.h> -#include <QtQml/qqml.h> -#include <QtQuickControls2Impl/private/qquickattachedobject_p.h> - -QT_BEGIN_NAMESPACE - -class QQuickImagineStyle : public QQuickAttachedObject -{ - Q_OBJECT - Q_PROPERTY(QString path READ path WRITE setPath RESET resetPath NOTIFY pathChanged FINAL) - Q_PROPERTY(QUrl url READ url NOTIFY pathChanged FINAL) - QML_NAMED_ELEMENT(Imagine) - QML_ATTACHED(QQuickImagineStyle) - QML_UNCREATABLE("") - QML_ADDED_IN_VERSION(2, 3) - -public: - explicit QQuickImagineStyle(QObject *parent = nullptr); - - static QQuickImagineStyle *qmlAttachedProperties(QObject *object); - - QString path() const; - void setPath(const QString &path); - void inheritPath(const QString &path); - void propagatePath(); - void resetPath(); - - QUrl url() const; - -Q_SIGNALS: - void pathChanged(); - -protected: - void attachedParentChange(QQuickAttachedObject *newParent, QQuickAttachedObject *oldParent) override; - -private: - void init(); - - bool m_explicitPath = false; - QString m_path; -}; - -QT_END_NAMESPACE - -QML_DECLARE_TYPEINFO(QQuickImagineStyle, QML_HAS_ATTACHED_PROPERTIES) - -#endif // QQUICKIMAGINESTYLE_P_H diff --git a/src/quickcontrols2/imagine/qquickimaginetheme.cpp b/src/quickcontrols2/imagine/qquickimaginetheme.cpp deleted file mode 100644 index 7bae036a..00000000 --- a/src/quickcontrols2/imagine/qquickimaginetheme.cpp +++ /dev/null @@ -1,66 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include "qquickimaginetheme_p.h" - -#include <QtQuickTemplates2/private/qquicktheme_p.h> - -QT_BEGIN_NAMESPACE - -void QQuickImagineTheme::initialize(QQuickTheme *theme) -{ - QFont systemFont; - systemFont.setFamilies(QStringList{QLatin1String("Open Sans")}); - theme->setFont(QQuickTheme::System, systemFont); - - const QColor accentColor = QColor::fromRgb(0x4fc1e9); - const QColor windowTextColor = QColor::fromRgb(0x434a54); - const QColor disabledWindowTextColor = QColor::fromRgb(0xccd1d9); - - QPalette systemPalette; - systemPalette.setColor(QPalette::ButtonText, Qt::white); - systemPalette.setColor(QPalette::BrightText, Qt::white); - systemPalette.setColor(QPalette::Highlight, accentColor); - systemPalette.setColor(QPalette::HighlightedText, Qt::white); - systemPalette.setColor(QPalette::Text, windowTextColor); - systemPalette.setColor(QPalette::ToolTipText, Qt::white); - systemPalette.setColor(QPalette::WindowText, windowTextColor); - systemPalette.setColor(QPalette::Disabled, QPalette::Text, disabledWindowTextColor); - systemPalette.setColor(QPalette::Disabled, QPalette::WindowText, disabledWindowTextColor); - theme->setPalette(QQuickTheme::System, systemPalette); -} - -QT_END_NAMESPACE diff --git a/src/quickcontrols2/imagine/qquickimaginetheme_p.h b/src/quickcontrols2/imagine/qquickimaginetheme_p.h deleted file mode 100644 index d3d43074..00000000 --- a/src/quickcontrols2/imagine/qquickimaginetheme_p.h +++ /dev/null @@ -1,65 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#ifndef QQUICKIMAGINETHEME_P_H -#define QQUICKIMAGINETHEME_P_H - -// -// W A R N I N G -// ------------- -// -// This file is not part of the Qt API. It exists purely as an -// implementation detail. This header file may change from version to -// version without notice, or even be removed. -// -// We mean it. -// - -#include <QtCore/qglobal.h> - -QT_BEGIN_NAMESPACE - -class QQuickTheme; - -class QQuickImagineTheme -{ -public: - static void initialize(QQuickTheme *theme); -}; - -QT_END_NAMESPACE - -#endif // QQUICKIMAGINETHEME_P_H diff --git a/src/quickcontrols2/imagine/qtquickcontrols2imaginestyleplugin.cpp b/src/quickcontrols2/imagine/qtquickcontrols2imaginestyleplugin.cpp deleted file mode 100644 index bc885cfd..00000000 --- a/src/quickcontrols2/imagine/qtquickcontrols2imaginestyleplugin.cpp +++ /dev/null @@ -1,81 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2017 The Qt Company Ltd. -** Contact: http://www.qt.io/licensing/ -** -** This file is part of the Qt Quick Controls 2 module of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL3$ -** Commercial License Usage -** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and The Qt Company. For licensing terms -** and conditions see http://www.qt.io/terms-conditions. For further -** information use the contact form at http://www.qt.io/contact-us. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 3 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPLv3 included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 3 requirements -** will be met: https://www.gnu.org/licenses/lgpl.html. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 2.0 or later as published by the Free -** Software Foundation and appearing in the file LICENSE.GPL included in -** the packaging of this file. Please review the following information to -** ensure the GNU General Public License version 2.0 requirements will be -** met: http://www.gnu.org/licenses/gpl-2.0.html. -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include "qquickimaginestyle_p.h" -#include "qquickimaginetheme_p.h" - -#include <QtCore/qloggingcategory.h> -#include <QtQml/qqml.h> -#include <QtQuickControls2/private/qquickstyleplugin_p.h> -#include <QtQuickTemplates2/private/qquicktheme_p.h> - -extern void qml_register_types_QtQuick_Controls_Imagine(); - -QT_BEGIN_NAMESPACE - -class QtQuickControls2ImagineStylePlugin : public QQuickStylePlugin -{ - Q_OBJECT - Q_PLUGIN_METADATA(IID QQmlExtensionInterface_iid) - -public: - QtQuickControls2ImagineStylePlugin(QObject *parent = nullptr); - - QString name() const override; - void initializeTheme(QQuickTheme *theme) override; - - QQuickImagineTheme theme; -}; - -QtQuickControls2ImagineStylePlugin::QtQuickControls2ImagineStylePlugin(QObject *parent) : QQuickStylePlugin(parent) -{ - volatile auto registration = &qml_register_types_QtQuick_Controls_Imagine; - Q_UNUSED(registration); -} - -QString QtQuickControls2ImagineStylePlugin::name() const -{ - return QStringLiteral("Imagine"); -} - -void QtQuickControls2ImagineStylePlugin::initializeTheme(QQuickTheme *theme) -{ - this->theme.initialize(theme); -} - -QT_END_NAMESPACE - -#include "qtquickcontrols2imaginestyleplugin.moc" |