2014-01-07 11:13:38 +01:00
|
|
|
add_subdirectory(accessdenied)
|
2010-10-13 07:15:44 +00:00
|
|
|
add_subdirectory(core)
|
2013-02-06 13:37:56 +01:00
|
|
|
add_subdirectory(plasmacomponents)
|
2013-02-15 02:44:21 +01:00
|
|
|
add_subdirectory(plasmaextracomponents)
|
2013-08-31 17:33:09 +02:00
|
|
|
add_subdirectory(platformcomponents)
|
|
|
|
add_subdirectory(calendar)
|
2014-11-26 15:13:33 +01:00
|
|
|
|
2015-01-10 17:47:31 +00:00
|
|
|
install(DIRECTORY plasmastyle/ DESTINATION ${KDE_INSTALL_QMLDIR}/QtQuick/Controls/Styles/Plasma)
|
Plasma controls based on QtQuickControls2
Summary:
This is a basic styling of a QtQuickControls2 series based on Plasma theme.
it has the main controls available in Qt 5.7
it installs them as a separate import (org.kde.plasma.controls 3.0) for
use restricted to plasmoids, is probably needed to be still installed as
a style as well
Test Plan:
tried with minimal QML files, a more comprehensive gallery may be needed.
pending considerations:
* some of the classes, like Drawer, the dialogs and ApplicationWindow *don't* make sense in plasmoids
* it will probably still need to be installed also as a qqc2 style, as this should be used in Plasma mobile
* probably only some of the controls should be installed as a separate import, the whole set as a style strictly for Plasma Mobile use. the same qml files would be used, so no maintainance overhead
Reviewers: #plasma, davidedmundson
Reviewed By: #plasma, davidedmundson
Subscribers: davidedmundson, broulik, plasma-devel, #frameworks
Tags: #plasma, #frameworks
Differential Revision: https://phabricator.kde.org/D4508
2017-03-14 10:21:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
#install the components as a QQC2 Style, as style for applications (mainly for Plasma Mobile)
|
|
|
|
install(DIRECTORY plasmacomponents3/ DESTINATION ${KDE_INSTALL_QMLDIR}/QtQuick/Controls.2/Plasma PATTERN qmldir EXCLUDE)
|
|
|
|
|
|
|
|
#install some of the componets as a separate import, to be used in plasmoids (some of them like ApplicationWindow are of no use for plasmoids)
|
|
|
|
install(FILES plasmacomponents3/BusyIndicator.qml
|
|
|
|
plasmacomponents3/Button.qml
|
|
|
|
plasmacomponents3/CheckBox.qml
|
|
|
|
plasmacomponents3/CheckDelegate.qml
|
|
|
|
plasmacomponents3/CheckIndicator.qml
|
|
|
|
#combobox is not in a new window, but maybe better already than the broken qqc1 combobox?
|
|
|
|
plasmacomponents3/ComboBox.qml
|
|
|
|
plasmacomponents3/Container.qml
|
|
|
|
plasmacomponents3/Control.qml
|
|
|
|
plasmacomponents3/Dial.qml
|
|
|
|
plasmacomponents3/Frame.qml
|
|
|
|
plasmacomponents3/GroupBox.qml
|
|
|
|
plasmacomponents3/ItemDelegate.qml
|
|
|
|
plasmacomponents3/Label.qml
|
|
|
|
|
|
|
|
plasmacomponents3/ProgressBar.qml
|
|
|
|
plasmacomponents3/RadioButton.qml
|
|
|
|
plasmacomponents3/RadioDelegate.qml
|
|
|
|
plasmacomponents3/RadioIndicator.qml
|
|
|
|
plasmacomponents3/RangeSlider.qml
|
|
|
|
plasmacomponents3/ScrollBar.qml
|
|
|
|
plasmacomponents3/Slider.qml
|
|
|
|
plasmacomponents3/SpinBox.qml
|
|
|
|
plasmacomponents3/TabBar.qml
|
|
|
|
plasmacomponents3/TabButton.qml
|
|
|
|
plasmacomponents3/TextArea.qml
|
|
|
|
plasmacomponents3/TextField.qml
|
|
|
|
plasmacomponents3/ToolBar.qml
|
|
|
|
plasmacomponents3/ToolButton.qml
|
2017-04-27 14:58:33 +01:00
|
|
|
plasmacomponents3/qmldir
|
Plasma controls based on QtQuickControls2
Summary:
This is a basic styling of a QtQuickControls2 series based on Plasma theme.
it has the main controls available in Qt 5.7
it installs them as a separate import (org.kde.plasma.controls 3.0) for
use restricted to plasmoids, is probably needed to be still installed as
a style as well
Test Plan:
tried with minimal QML files, a more comprehensive gallery may be needed.
pending considerations:
* some of the classes, like Drawer, the dialogs and ApplicationWindow *don't* make sense in plasmoids
* it will probably still need to be installed also as a qqc2 style, as this should be used in Plasma mobile
* probably only some of the controls should be installed as a separate import, the whole set as a style strictly for Plasma Mobile use. the same qml files would be used, so no maintainance overhead
Reviewers: #plasma, davidedmundson
Reviewed By: #plasma, davidedmundson
Subscribers: davidedmundson, broulik, plasma-devel, #frameworks
Tags: #plasma, #frameworks
Differential Revision: https://phabricator.kde.org/D4508
2017-03-14 10:21:26 +01:00
|
|
|
|
|
|
|
DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/components.3)
|