-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use default qml library paths
previous implementation stores data in share instead of lib (I guess, I had issues with using default paths?). Let's use normal paths instead
- Loading branch information
Showing
18 changed files
with
51 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,7 @@ | ||
set(SUBPROJECT awesomewidgets-qml) | ||
message(STATUS "Subproject ${SUBPROJECT}") | ||
|
||
file(GLOB SUBPROJECT_SOURCE *.qml) | ||
file(GLOB SUBPROJECT_QMLDIR_IN qmldir.in) | ||
|
||
# prepare | ||
configure_file(${SUBPROJECT_QMLDIR_IN} ${CMAKE_CURRENT_SOURCE_DIR}/../awesome-widget/package/contents/ui/qmldir) | ||
configure_file(${SUBPROJECT_QMLDIR_IN} ${CMAKE_CURRENT_SOURCE_DIR}/../desktop-panel/package/contents/ui/qmldir) | ||
file(GLOB SUBPROJECT_SOURCE *.qml qmldir) | ||
|
||
# install | ||
install(FILES ${SUBPROJECT_SOURCE} DESTINATION ${KDE_INSTALL_FULL_DATADIR}/${PROJECT_NAME}/qml) | ||
install(FILES ${SUBPROJECT_SOURCE} DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/${PROJECT_NAME}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# common QML constants | ||
singleton General 1.0 General.qml | ||
|
||
# custom QML UI classes | ||
AboutTab AboutTab.qml | ||
AWExtensions AWExtensions.qml | ||
AWInfoLabel AWInfoLabel.qml | ||
AWTagSelector AWTagSelector.qml | ||
AWTextEditor AWTextEditor.qml | ||
BugReport BugReport.qml | ||
ButtonSelector ButtonSelector.qml | ||
CheckBoxSelector CheckBoxSelector.qml | ||
ColorSelector ColorSelector.qml | ||
ComboBoxSelector ComboBoxSelector.qml | ||
ExportDialog ExportDialog.qml | ||
FontSelector FontSelector.qml | ||
HtmlDefaultFunctionsBar HtmlDefaultFunctionsBar.qml | ||
HtmlEditorButton HtmlEditorButton.qml | ||
HtmlEditorColor HtmlEditorColor.qml | ||
HtmlEditorFont HtmlEditorFont.qml | ||
ImportDialog ImportDialog.qml | ||
IntegerSelector IntegerSelector.qml | ||
LineSelector LineSelector.qml |
This file was deleted.
Oops, something went wrong.