provide new abilities imports structure
parent
29018067d1
commit
b1f5e169ee
@ -1,6 +1,5 @@
|
||||
add_subdirectory(core)
|
||||
install(DIRECTORY applets/ DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/latte/applets)
|
||||
install(DIRECTORY abilities/ DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/latte/abilities)
|
||||
install(DIRECTORY components/ DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/latte/components)
|
||||
install(DIRECTORY containers/ DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/latte/containers)
|
||||
|
||||
|
||||
|
@ -0,0 +1,3 @@
|
||||
module org.kde.latte.abilities.applets
|
||||
|
||||
Requirements 0.1 Requirements.qml
|
@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Copyright 2020 Michail Vourlakos <mvourlakos@gmail.com>
|
||||
*
|
||||
* This file is part of Latte-Dock
|
||||
*
|
||||
* Latte-Dock 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) any later version.
|
||||
*
|
||||
* Latte-Dock 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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import QtQuick 2.7
|
||||
|
||||
Item {
|
||||
property int proposed: 700
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
/*
|
||||
* Copyright 2020 Michail Vourlakos <mvourlakos@gmail.com>
|
||||
*
|
||||
* This file is part of Latte-Dock
|
||||
*
|
||||
* Latte-Dock 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) any later version.
|
||||
*
|
||||
* Latte-Dock 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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import QtQuick 2.7
|
||||
|
||||
Item {
|
||||
property real normal: 1.0
|
||||
property real current: 1.0
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
module org.kde.latte.abilities.components.animations
|
||||
|
||||
Duration 0.1 Duration.qml
|
||||
SpeedFactor 0.1 SpeedFactor.qml
|
||||
Tracker 0.1 Tracker.qml
|
@ -1,3 +1,3 @@
|
||||
module org.kde.latte.containers.abilities
|
||||
module org.kde.latte.abilities.components
|
||||
|
||||
AppletRequirements 0.1 AppletRequirements.qml
|
@ -1,3 +0,0 @@
|
||||
module org.kde.latte.applets.abilities
|
||||
|
||||
Requirements 0.1 Requirements.qml
|
Loading…
Reference in New Issue