diff --git a/applets/fifteenPuzzle/package/contents/ui/ColorPicker.qml b/applets/fifteenPuzzle/package/contents/ui/ColorPicker.qml deleted file mode 100644 --- a/applets/fifteenPuzzle/package/contents/ui/ColorPicker.qml +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (C) 2014 Martin Yrjölä - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of - * the License or (at your option) version 3 or any later version - * accepted by the membership of KDE e.V. (or its successor approved - * by the membership of KDE e.V.), which shall act as a proxy - * defined in Section 14 of version 3 of the license. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see - */ - -import QtQuick 2.2 -import QtQuick.Layouts 1.0 -import QtQuick.Controls 1.2 as QtControls -import QtQuick.Dialogs 1.0 as QtDialogs -import org.kde.plasma.core 2.0 as PlasmaCore - -Item { - id: colorPicker - - property alias chosenColor: colorDialog.color - - width: childrenRect.width - height: childrenRect.height - Layout.alignment: Qt.AlignVCenter - - Rectangle { - color: colorDialog.color - radius: width / 2 - height: 20 - width: height - opacity: enabled ? 1 : 0.5 - border { - width: mouseArea.containsMouse ? 3 : 1 - color: Qt.darker(colorDialog.color, 1.5) - } - - QtDialogs.ColorDialog { - id: colorDialog - } - } - - MouseArea { - id: mouseArea - anchors.fill: parent - hoverEnabled: true - onClicked: { - colorDialog.open() - } - } -} diff --git a/applets/fifteenPuzzle/package/contents/ui/configAppearance.qml b/applets/fifteenPuzzle/package/contents/ui/configAppearance.qml --- a/applets/fifteenPuzzle/package/contents/ui/configAppearance.qml +++ b/applets/fifteenPuzzle/package/contents/ui/configAppearance.qml @@ -24,15 +24,16 @@ import QtQuick 2.0 import QtQuick.Controls 1.2 as QtControls import QtQuick.Layouts 1.0 as QtLayouts +import org.kde.kquickcontrols 2.0 as KQC Item { id: appearancePage width: childrenRect.width height: childrenRect.height property alias cfg_boardSize: sizeSpinBox.value - property alias cfg_boardColor: pieceColorPicker.chosenColor - property alias cfg_numberColor: numberColorPicker.chosenColor + property alias cfg_boardColor: pieceColorPicker.color + property alias cfg_numberColor: numberColorPicker.color property alias cfg_showNumerals: showNumeralsCheckBox.checked property alias cfg_useImage: useImageCheckBox.checked @@ -66,16 +67,16 @@ QtLayouts.Layout.alignment: Qt.AlignRight } - ColorPicker { + KQC.ColorButton { id: pieceColorPicker } QtControls.Label { text: i18n("Number color") QtLayouts.Layout.alignment: Qt.AlignRight } - ColorPicker { + KQC.ColorButton { id: numberColorPicker }