From 49836345683bb4bf859ddd5214b2abea2521dcd1 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Thu, 21 Dec 2023 02:43:22 -0500 Subject: [PATCH 01/36] updated cmake install() destinations --- cmake/QskBuildFunctions.cmake | 2 +- qmlexport/CMakeLists.txt | 4 +++- src/CMakeLists.txt | 6 +++++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/cmake/QskBuildFunctions.cmake b/cmake/QskBuildFunctions.cmake index 38fee091..11de4bf2 100644 --- a/cmake/QskBuildFunctions.cmake +++ b/cmake/QskBuildFunctions.cmake @@ -65,7 +65,7 @@ function(qsk_add_plugin target TYPE CLASS_NAME) set_target_properties( ${target} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/plugins/${TYPE}) - install(TARGETS ${target} DESTINATION "plugins/${TYPE}" ) + install(TARGETS ${target} DESTINATION "${CMAKE_INSTALL_LIBDIR}/qskinny/plugins/${TYPE}" ) set_target_properties(${target} PROPERTIES INSTALL_RPATH "\${ORIGIN}/../../lib" ) diff --git a/qmlexport/CMakeLists.txt b/qmlexport/CMakeLists.txt index ef245952..d59ad5b4 100644 --- a/qmlexport/CMakeLists.txt +++ b/qmlexport/CMakeLists.txt @@ -22,4 +22,6 @@ endif() set_target_properties(${target} PROPERTIES FOLDER libs) -install(TARGETS ${target} ) +install(TARGETS ${target} + PUBLIC_HEADER DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/${target}" +) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3906ad94..f8e9ee0c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -514,4 +514,8 @@ set_target_properties(${target} PROPERTIES PUBLIC_HEADER "${HEADERS}") set_target_properties(${target} PROPERTIES VERSION ${CMAKE_PROJECT_VERSION} SOVERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} ) -install(TARGETS ${target} ) +# Set the library destination to ensure an organized library + plugins dir +install(TARGETS ${target} + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/${target} + PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${target} +) From ffe2394d0bd930ed1bcc60d1c40e77e1a0d3f2c9 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Thu, 21 Dec 2023 02:58:01 -0500 Subject: [PATCH 02/36] updated README.md and chapter 3 docs to remove mention of qmake --- .gitignore | 1 + .../03-writing-your-first-application.asciidoc | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 32698b35..138bebe4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ Makefile .qmake.stash .uuid +build obj moc rcc diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index b912e892..1e7015c8 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -11,9 +11,8 @@ layout: docs === Building the QSkinny repository In this chapter we will write a simple QSkinny application on Linux from scratch. -As a prerequisite, a recent Qt version (>= 5.6) should be available and the directory of -its `qmake` binary in the current `$PATH`. On debian bullseye we need to install -these packages `build-essential qt-qmake qtbase5-dev qtbase5-private-dev +As a prerequisite, a recent Qt version (>= 5.6) should be available. On debian bullseye we need to install +these packages `build-essential qtbase5-dev qtbase5-private-dev qtdeclarative5-dev qtdeclarative5-private-dev libqt5svg5-dev`. Then we can build and install QSkinny to `/opt/qskinny` with the following commands: @@ -23,8 +22,9 @@ Then we can build and install QSkinny to `/opt/qskinny` with the following comma cd /home/user/dev/ git clone https://github.com/uwerat/qskinny.git cd qskinny -PREFIX=/opt/qskinny qmake -r -make +mkdir build +cd build +cmake ../ && make sudo make install .... From fc72a95aafd8e3eba215a7e21b3381f1e55b8191 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Thu, 21 Dec 2023 18:26:14 -0500 Subject: [PATCH 03/36] updated project paths to namespace qskinny, project namespace should be project name, reused qsk_install_* variables --- CMakeLists.txt | 15 ++++++++------- cmake/QskBuildFunctions.cmake | 2 +- src/CMakeLists.txt | 6 ++---- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 21ee66fd..1b058b56 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,8 +62,9 @@ macro(qsk_setup_build) endmacro() macro(qsk_setup_install) - set(QSK_INSTALL_HEADERS include) - set(QSK_INSTALL_LIBS lib) + string(TOLOWER "${PROJECT_NAME}" PACKAGE_DIR) + set(QSK_INSTALL_HEADERS "${CMAKE_INSTALL_INCLUDEDIR}/${PACKAGE_DIR}") + set(QSK_INSTALL_LIBS "${CMAKE_INSTALL_LIBDIR}/${PACKAGE_DIR}") endmacro() ############################################################################ @@ -122,8 +123,8 @@ endif() # packaging set(PACKAGE_NAME ${PROJECT_NAME}) set(PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) -set(PACKAGE_NAMESPACE Qsk) -set(PACKAGE_LOCATION ${QSK_INSTALL_LIBS}/cmake/${PROJECT_NAME}) +set(PACKAGE_NAMESPACE ${PROJECT_NAME}) +set(PACKAGE_LOCATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}) install(TARGETS qskinny EXPORT ${PACKAGE_NAME}Targets LIBRARY DESTINATION ${QSK_INSTALL_LIBS} @@ -140,7 +141,7 @@ write_basic_package_version_file( export(EXPORT ${PACKAGE_NAME}Targets FILE ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}/${PACKAGE_NAME}Targets.cmake - NAMESPACE ${PACKAGE_NAMESPACE}::) + NAMESPACE "${PACKAGE_NAMESPACE}::") configure_file(cmake/${PACKAGE_NAME}Config.cmake ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}/${PACKAGE_NAME}Config.cmake @@ -150,7 +151,7 @@ install(EXPORT ${PACKAGE_NAME}Targets FILE ${PACKAGE_NAME}Targets.cmake NAMESPACE - ${PACKAGE_NAMESPACE}:: + "${PACKAGE_NAMESPACE}::" DESTINATION ${PACKAGE_LOCATION}) @@ -162,4 +163,4 @@ install( DESTINATION ${PACKAGE_LOCATION} COMPONENT - Devel) \ No newline at end of file + Devel) diff --git a/cmake/QskBuildFunctions.cmake b/cmake/QskBuildFunctions.cmake index 11de4bf2..748d849b 100644 --- a/cmake/QskBuildFunctions.cmake +++ b/cmake/QskBuildFunctions.cmake @@ -65,7 +65,7 @@ function(qsk_add_plugin target TYPE CLASS_NAME) set_target_properties( ${target} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/plugins/${TYPE}) - install(TARGETS ${target} DESTINATION "${CMAKE_INSTALL_LIBDIR}/qskinny/plugins/${TYPE}" ) + install(TARGETS ${target} DESTINATION "${QSK_INSTALL_LIBS}/plugins/${TYPE}" ) set_target_properties(${target} PROPERTIES INSTALL_RPATH "\${ORIGIN}/../../lib" ) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index f8e9ee0c..80ed914a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -511,11 +511,9 @@ set_target_properties(${target} list(TRANSFORM HEADERS PREPEND "${CMAKE_CURRENT_LIST_DIR}/") set_target_properties(${target} PROPERTIES PUBLIC_HEADER "${HEADERS}") +set_target_properties(${target} PROPERTIES EXPORT_NAME ${PROJECT_NAME}) set_target_properties(${target} PROPERTIES VERSION ${CMAKE_PROJECT_VERSION} SOVERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} ) # Set the library destination to ensure an organized library + plugins dir -install(TARGETS ${target} - LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/${target} - PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${target} -) +install(TARGETS ${target}) From 7c4eac807bd2803c7b3113f52d60d9780a8bad76 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Fri, 22 Dec 2023 02:55:01 -0500 Subject: [PATCH 04/36] updated chapter 03 tutorial to use CmakeLists.txt and proper build commands --- ...03-writing-your-first-application.asciidoc | 59 +++++++++++-------- 1 file changed, 33 insertions(+), 26 deletions(-) diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index 1e7015c8..884998e9 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -17,15 +17,13 @@ qtdeclarative5-dev qtdeclarative5-private-dev libqt5svg5-dev`. Then we can build and install QSkinny to `/opt/qskinny` with the following commands: -[source,xml] +[source,shell] .... -cd /home/user/dev/ -git clone https://github.com/uwerat/qskinny.git -cd qskinny -mkdir build -cd build -cmake ../ && make -sudo make install +$ git clone https://github.com/uwerat/qskinny.git +$ cd qskinny +$ mkdir build && cd build +$ cmake ../ && make +$ sudo make install .... === Compiling our first app @@ -52,40 +50,49 @@ int main( int argc, char* argv[] ) For now this will just create an empty window (the `QskWindow`) without any controls. Next, we need to create a `myapp.pro` file in our `myapp` directory. -.myapp.pro -[source,xml] +.CMakeLists.txt +[source,cmake] .... -TEMPLATE = app -TARGET = myapp +cmake_minimum_required(VERSION 3.27) -QT *= quick +project(myapp + VERSION 1.0.0 + LANGUAGES CXX) -QSK_ROOT=/opt/qskinny +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED ON) -INCLUDEPATH += $${QSK_ROOT}/include -LIBS += -L$${QSK_ROOT}/lib -lqskinny +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTORCC ON) +set(CMAKE_AUTOUIC ON) -QMAKE_RPATHDIR *= $${QSK_ROOT}/lib +find_package(Qt5 REQUIRED COMPONENTS Widgets Quick) +find_package(QSkinny REQUIRED) -SOURCES += \ - main.cpp +add_executable(myapp + src/main.cpp) + +target_link_libraries(kue PRIVATE + Qt5::Widgets + Qt5::Quick + QSkinny::QSkinny) .... Now we can compile our app: -[source,xml] +[source,shell] .... -cd myapp -qmake -make +$ cd myapp +$ mkdir build && cd build +$ cmake ../ && make .... When running myapp it needs to find the skin plugins. Setting QT_PLUGIN_PATH is one option ( see https://doc.qt.io/qt-5/deployment-plugins.html ): -[source,xml] +[source,shell] .... -QT_PLUGIN_PATH=/opt/qskinny/plugins ./myapp +$ QT_PLUGIN_PATH=/opt/qskinny/plugins ./myapp .... This should show just an empty window. @@ -95,7 +102,7 @@ This should show just an empty window. Now that we have our app running, we can add some UI controls to it by extending the `main.cpp` file we created earlier. We will add some additional include directives, and then create a horizontal layout containing two push buttons. The layout with the two buttons will be shown in the window. Below is the complete updated source file: .main.cpp -[source] +[source, cpp] .... #include #include From e1f2a54ae3b9a93828c37b2b0eebdb8fdd3cccb3 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Fri, 22 Dec 2023 03:07:46 -0500 Subject: [PATCH 05/36] removed unneccessary quotes --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1b058b56..4be18444 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -141,7 +141,7 @@ write_basic_package_version_file( export(EXPORT ${PACKAGE_NAME}Targets FILE ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}/${PACKAGE_NAME}Targets.cmake - NAMESPACE "${PACKAGE_NAMESPACE}::") + NAMESPACE ${PACKAGE_NAMESPACE}::) configure_file(cmake/${PACKAGE_NAME}Config.cmake ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}/${PACKAGE_NAME}Config.cmake @@ -151,7 +151,7 @@ install(EXPORT ${PACKAGE_NAME}Targets FILE ${PACKAGE_NAME}Targets.cmake NAMESPACE - "${PACKAGE_NAMESPACE}::" + ${PACKAGE_NAMESPACE}:: DESTINATION ${PACKAGE_LOCATION}) From f87458bcb7df0ffd27a86a45bae58aa365df0be6 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Thu, 28 Dec 2023 14:15:07 -0500 Subject: [PATCH 06/36] add information about targeting other Qt versions --- .../03-writing-your-first-application.asciidoc | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index 884998e9..496195db 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -12,18 +12,25 @@ layout: docs In this chapter we will write a simple QSkinny application on Linux from scratch. As a prerequisite, a recent Qt version (>= 5.6) should be available. On debian bullseye we need to install -these packages `build-essential qtbase5-dev qtbase5-private-dev -qtdeclarative5-dev qtdeclarative5-private-dev libqt5svg5-dev`. +these packages `build-essential qtbase6-dev qtbase6-private-dev +qtdeclarative6-dev qtdeclarative6-private-dev libqt5svg6-dev`. Then we can build and install QSkinny to `/opt/qskinny` with the following commands: [source,shell] .... -$ git clone https://github.com/uwerat/qskinny.git +$ git clone https://github.com/uwerat/qskinny.git # clone $ cd qskinny $ mkdir build && cd build -$ cmake ../ && make -$ sudo make install +$ cmake ../ && make # build +$ sudo make install # install +.... + +To target a specific Qt version simply pass the cmake build variable `QSK_QT_VERSION` during the build step: + +[source,shell] +.... +$ cmake -DQSK_QT_VERSION=Qt5 ../ && make .... === Compiling our first app From 3ec7d4fb137431f2312fad93be4c8b2b53f0c200 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Thu, 28 Dec 2023 14:21:28 -0500 Subject: [PATCH 07/36] update README to include cmake dep --- README.md | 4 ++-- doc/tutorials/03-writing-your-first-application.asciidoc | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 070079fe..a90e2688 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,9 @@ It might support all versions Qt >= 5.15, but you can rely on: - current long term supported ( LTS ) version of Qt ( at the moment Qt 6.5.x ) - current version of Qt -On debian bullseye these packages need to be installed for Qt5: `build-essential +On debian bullseye these packages need to be installed for Qt5: `build-essential cmake qtbase5-dev qtbase5-private-dev qtdeclarative5-dev qtdeclarative5-private-dev libqt5svg5-dev`. -For Qt6 you need the corresponding ones. +For Qt6 you need the corresponding packages. > Optional: When enabling the `hunspell` feature the following package needs to be installed: `libhunspell-dev` diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index 496195db..4a08b84d 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -11,9 +11,9 @@ layout: docs === Building the QSkinny repository In this chapter we will write a simple QSkinny application on Linux from scratch. -As a prerequisite, a recent Qt version (>= 5.6) should be available. On debian bullseye we need to install -these packages `build-essential qtbase6-dev qtbase6-private-dev -qtdeclarative6-dev qtdeclarative6-private-dev libqt5svg6-dev`. +As a prerequisite, a recent Qt version (>= 5.15) should be available. On debian bullseye we need to install +these packages `build-essential cmake qtbase5-dev qtbase5-private-dev qtdeclarative5-dev qtdeclarative5-private-dev libqt5svg5-dev`. +For Qt6 you need the corresponding packages. Then we can build and install QSkinny to `/opt/qskinny` with the following commands: From 153f8a4228e3dfc9e3ae8c6f0e352bd66fde1453 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Thu, 28 Dec 2023 15:03:13 -0500 Subject: [PATCH 08/36] move export(), install() to src/CMakelists.txt from ./CMakelists.txt --- CMakeLists.txt | 51 ++++++---------------------------------------- src/CMakeLists.txt | 40 ++++++++++++++++++++++++++++++++++-- 2 files changed, 44 insertions(+), 47 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4be18444..1530e5ee 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -77,6 +77,12 @@ project(QSkinny VERSION 0.8.0) set(QSK_SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}) +set(QSK_CMAKE_DIR ${QSK_SOURCE_DIR}/cmake) +# packaging +set(PACKAGE_NAME ${PROJECT_NAME}) +set(PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) +set(PACKAGE_NAMESPACE ${PROJECT_NAME}) +set(PACKAGE_LOCATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}) qsk_setup_options() @@ -119,48 +125,3 @@ endif() if(BUILD_PLAYGROUND) add_subdirectory(playground) endif() - -# packaging -set(PACKAGE_NAME ${PROJECT_NAME}) -set(PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) -set(PACKAGE_NAMESPACE ${PROJECT_NAME}) -set(PACKAGE_LOCATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}) - -install(TARGETS qskinny EXPORT ${PACKAGE_NAME}Targets - LIBRARY DESTINATION ${QSK_INSTALL_LIBS} - ARCHIVE DESTINATION ${QSK_INSTALL_LIBS} - RUNTIME DESTINATION ${QSK_INSTALL_LIBS} - INCLUDES DESTINATION ${QSK_INSTALL_HEADERS} - PUBLIC_HEADER DESTINATION ${QSK_INSTALL_HEADERS}) - -include(CMakePackageConfigHelpers) -write_basic_package_version_file( - ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}/${PACKAGE_NAME}ConfigVersion.cmake - VERSION ${PACKAGE_VERSION} - COMPATIBILITY AnyNewerVersion) - -export(EXPORT ${PACKAGE_NAME}Targets - FILE ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}/${PACKAGE_NAME}Targets.cmake - NAMESPACE ${PACKAGE_NAMESPACE}::) - -configure_file(cmake/${PACKAGE_NAME}Config.cmake - ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}/${PACKAGE_NAME}Config.cmake - COPYONLY) - -install(EXPORT ${PACKAGE_NAME}Targets - FILE - ${PACKAGE_NAME}Targets.cmake - NAMESPACE - ${PACKAGE_NAMESPACE}:: - DESTINATION - ${PACKAGE_LOCATION}) - -install( - FILES - cmake/${PACKAGE_NAME}Config.cmake - cmake/QskTools.cmake - ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}/${PACKAGE_NAME}ConfigVersion.cmake - DESTINATION - ${PACKAGE_LOCATION} - COMPONENT - Devel) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 80ed914a..b528ce6a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -515,5 +515,41 @@ set_target_properties(${target} PROPERTIES EXPORT_NAME ${PROJECT_NAME}) set_target_properties(${target} PROPERTIES VERSION ${CMAKE_PROJECT_VERSION} SOVERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} ) -# Set the library destination to ensure an organized library + plugins dir -install(TARGETS ${target}) +include(CMakePackageConfigHelpers) +write_basic_package_version_file( + ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}ConfigVersion.cmake + VERSION ${PACKAGE_VERSION} + COMPATIBILITY AnyNewerVersion) + +install(TARGETS ${target} EXPORT ${PACKAGE_NAME}Targets + LIBRARY DESTINATION ${QSK_INSTALL_LIBS} + ARCHIVE DESTINATION ${QSK_INSTALL_LIBS} + RUNTIME DESTINATION ${QSK_INSTALL_LIBS} + INCLUDES DESTINATION ${QSK_INSTALL_HEADERS} + PUBLIC_HEADER DESTINATION ${QSK_INSTALL_HEADERS}) + +export(EXPORT ${PACKAGE_NAME}Targets + FILE ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}Targets.cmake + NAMESPACE ${PACKAGE_NAMESPACE}::) + +configure_file(${QSK_CMAKE_DIR}/${PACKAGE_NAME}Config.cmake + ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}Config.cmake + COPYONLY) + +install(EXPORT ${PACKAGE_NAME}Targets + FILE + ${PACKAGE_NAME}Targets.cmake + NAMESPACE + ${PACKAGE_NAMESPACE}:: + DESTINATION + ${PACKAGE_LOCATION}) + +install( + FILES + ${QSK_CMAKE_DIR}/${PACKAGE_NAME}Config.cmake + ${QSK_CMAKE_DIR}/QskTools.cmake + ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}ConfigVersion.cmake + DESTINATION + ${PACKAGE_LOCATION} + COMPONENT + Devel) From dcc729b4d5d745c047922b1759ace1c0c4a1056d Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Thu, 28 Dec 2023 17:04:55 -0500 Subject: [PATCH 09/36] move packaging vars for QSkinny core library to src/CMakeLists.txt --- CMakeLists.txt | 5 ----- src/CMakeLists.txt | 6 ++++++ 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1530e5ee..cd6cd57b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,11 +78,6 @@ project(QSkinny set(QSK_SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}) set(QSK_CMAKE_DIR ${QSK_SOURCE_DIR}/cmake) -# packaging -set(PACKAGE_NAME ${PROJECT_NAME}) -set(PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) -set(PACKAGE_NAMESPACE ${PROJECT_NAME}) -set(PACKAGE_LOCATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}) qsk_setup_options() diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b528ce6a..79325eb1 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -515,6 +515,12 @@ set_target_properties(${target} PROPERTIES EXPORT_NAME ${PROJECT_NAME}) set_target_properties(${target} PROPERTIES VERSION ${CMAKE_PROJECT_VERSION} SOVERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} ) +# packaging +set(PACKAGE_NAME ${PROJECT_NAME}) +set(PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) +set(PACKAGE_NAMESPACE ${PROJECT_NAME}) +set(PACKAGE_LOCATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}) + include(CMakePackageConfigHelpers) write_basic_package_version_file( ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}ConfigVersion.cmake From 48e3ecef04311b3b10d179f12910deaf97732464 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Thu, 28 Dec 2023 17:46:11 -0500 Subject: [PATCH 10/36] standardized namespace, remove extra FILE option from export --- src/CMakeLists.txt | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 79325eb1..23c2d66d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -518,7 +518,7 @@ set_target_properties(${target} PROPERTIES # packaging set(PACKAGE_NAME ${PROJECT_NAME}) set(PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) -set(PACKAGE_NAMESPACE ${PROJECT_NAME}) +set(PACKAGE_NAMESPACE ${PROJECT_NAME}::) set(PACKAGE_LOCATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}) include(CMakePackageConfigHelpers) @@ -535,8 +535,7 @@ install(TARGETS ${target} EXPORT ${PACKAGE_NAME}Targets PUBLIC_HEADER DESTINATION ${QSK_INSTALL_HEADERS}) export(EXPORT ${PACKAGE_NAME}Targets - FILE ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}Targets.cmake - NAMESPACE ${PACKAGE_NAMESPACE}::) + NAMESPACE ${PACKAGE_NAMESPACE}) configure_file(${QSK_CMAKE_DIR}/${PACKAGE_NAME}Config.cmake ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}Config.cmake @@ -546,15 +545,15 @@ install(EXPORT ${PACKAGE_NAME}Targets FILE ${PACKAGE_NAME}Targets.cmake NAMESPACE - ${PACKAGE_NAMESPACE}:: + ${PACKAGE_NAMESPACE} DESTINATION ${PACKAGE_LOCATION}) install( FILES - ${QSK_CMAKE_DIR}/${PACKAGE_NAME}Config.cmake - ${QSK_CMAKE_DIR}/QskTools.cmake + ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}Config.cmake ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}ConfigVersion.cmake + ${QSK_CMAKE_DIR}/QskTools.cmake DESTINATION ${PACKAGE_LOCATION} COMPONENT From 0670623fbd9b695c4c410515115d667b3a745740 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Fri, 29 Dec 2023 01:11:43 -0500 Subject: [PATCH 11/36] build functions and QskQmlExportTargets.cmake file --- CMakeLists.txt | 39 +++++++++++++++++++++++++++++++++-- cmake/QSkinnyConfig.cmake | 1 - cmake/QskBuildFunctions.cmake | 8 +++++++ qmlexport/CMakeLists.txt | 29 +++++++++++++++++++++----- src/CMakeLists.txt | 28 ++++--------------------- tools/CMakeLists.txt | 3 ++- 6 files changed, 75 insertions(+), 33 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd6cd57b..b971c6aa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,9 +62,18 @@ macro(qsk_setup_build) endmacro() macro(qsk_setup_install) + + # package vars + set(PACKAGE_NAME ${PROJECT_NAME}) + set(PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) + set(PACKAGE_NAMESPACE ${PROJECT_NAME}::) + set(PACKAGE_LOCATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}) + + # install paths for headers and libraries string(TOLOWER "${PROJECT_NAME}" PACKAGE_DIR) - set(QSK_INSTALL_HEADERS "${CMAKE_INSTALL_INCLUDEDIR}/${PACKAGE_DIR}") - set(QSK_INSTALL_LIBS "${CMAKE_INSTALL_LIBDIR}/${PACKAGE_DIR}") + set(QSK_INSTALL_HEADERS ${CMAKE_INSTALL_INCLUDEDIR}/${PACKAGE_DIR}) + set(QSK_INSTALL_LIBS ${CMAKE_INSTALL_LIBDIR}/${PACKAGE_DIR}) + endmacro() ############################################################################ @@ -97,6 +106,32 @@ qsk_setup_install() add_subdirectory(src) add_subdirectory(skins) +include(CMakePackageConfigHelpers) + +# write QSkinnyConfigVersion.cmake file for cmake import +write_basic_package_version_file( + ${CMAKE_BINARY_DIR}/_QSkinny/${PACKAGE_NAME}ConfigVersion.cmake + VERSION ${PACKAGE_VERSION} + COMPATIBILITY AnyNewerVersion) + +# Copy QSkinnyConfig.cmake to build dir +configure_file(${QSK_CMAKE_DIR}/${PACKAGE_NAME}Config.cmake + ${CMAKE_BINARY_DIR}/_QSkinny/${PACKAGE_NAME}Config.cmake + COPYONLY) + +# install QSkinnyConfig.cmake and QSkinnyConfigVersion.cmake +# and QskTools.cmake file to lib/cmake/QSkinny directory +install( + FILES + ${CMAKE_BINARY_DIR}/_QSkinny/${PACKAGE_NAME}Config.cmake + ${CMAKE_BINARY_DIR}/_QSkinny/${PACKAGE_NAME}ConfigVersion.cmake + ${QSK_CMAKE_DIR}/QskTools.cmake + DESTINATION + ${PACKAGE_LOCATION} + COMPONENT + Devel) + +# Build other libraries if(BUILD_QML_EXPORT) add_subdirectory(qmlexport) endif() diff --git a/cmake/QSkinnyConfig.cmake b/cmake/QSkinnyConfig.cmake index e24cd20c..fbffae9e 100644 --- a/cmake/QSkinnyConfig.cmake +++ b/cmake/QSkinnyConfig.cmake @@ -1,2 +1 @@ include("${CMAKE_CURRENT_LIST_DIR}/QSkinnyTargets.cmake") -include("${CMAKE_CURRENT_LIST_DIR}/QskTools.cmake") \ No newline at end of file diff --git a/cmake/QskBuildFunctions.cmake b/cmake/QskBuildFunctions.cmake index 748d849b..a35151bc 100644 --- a/cmake/QskBuildFunctions.cmake +++ b/cmake/QskBuildFunctions.cmake @@ -99,3 +99,11 @@ function(qsk_add_example target) target_include_directories(${target} PRIVATE ${CMAKE_CURRENT_LIST_DIR}) endfunction() + +function(qsk_update_package_config_file target) + + file(APPEND + ${CMAKE_BINARY_DIR}/_QSkinny/QSkinnyConfig.cmake + "include(\"\${CMAKE_CURRENT_LIST_DIR}/${target}.cmake\")\n") + +endfunction() diff --git a/qmlexport/CMakeLists.txt b/qmlexport/CMakeLists.txt index d59ad5b4..7f008350 100644 --- a/qmlexport/CMakeLists.txt +++ b/qmlexport/CMakeLists.txt @@ -10,7 +10,8 @@ set(target qskqmlexport) qsk_add_library(${target} SHARED ${SOURCES} ${HEADERS}) target_link_libraries(${target} PRIVATE qskinny) -target_include_directories(${target} PUBLIC ${CMAKE_CURRENT_LIST_DIR}) +target_include_directories(${target} PUBLIC + $) set_target_properties(${target} PROPERTIES PUBLIC_HEADER QskQml.h) if(BUILD_QSKDLL) @@ -20,8 +21,26 @@ if(BUILD_QSKDLL) VERSION ${CMAKE_PROJECT_VERSION} SOVERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} ) endif() -set_target_properties(${target} PROPERTIES FOLDER libs) +# packaging +set(PACKAGE_NAME QskQmlExport) +set(QSKQE_INSTALL_HEADERS "${CMAKE_INSTALL_INCLUDEDIR}/${target}") -install(TARGETS ${target} - PUBLIC_HEADER DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/${target}" -) +set_target_properties(${target} PROPERTIES FOLDER libs) +set_target_properties(${target} PROPERTIES EXPORT_NAME ${PACKAGE_NAME}) + +install(TARGETS ${target} EXPORT ${PACKAGE_NAME}Targets + INCLUDES DESTINATION ${QSKQE_INSTALL_HEADERS} + PUBLIC_HEADER DESTINATION ${QSKQE_INSTALL_HEADERS}) + +export(EXPORT ${PACKAGE_NAME}Targets + NAMESPACE ${PACKAGE_NAMESPACE}) + +install(EXPORT ${PACKAGE_NAME}Targets + FILE + ${PACKAGE_NAME}Targets.cmake + NAMESPACE + ${PACKAGE_NAMESPACE} + DESTINATION + ${PACKAGE_LOCATION}) + +qsk_update_package_config_file(${PACKAGE_NAME}Targets) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 23c2d66d..b6fa1092 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -516,17 +516,9 @@ set_target_properties(${target} PROPERTIES VERSION ${CMAKE_PROJECT_VERSION} SOVERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} ) # packaging -set(PACKAGE_NAME ${PROJECT_NAME}) -set(PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) -set(PACKAGE_NAMESPACE ${PROJECT_NAME}::) -set(PACKAGE_LOCATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}) - -include(CMakePackageConfigHelpers) -write_basic_package_version_file( - ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}ConfigVersion.cmake - VERSION ${PACKAGE_VERSION} - COMPATIBILITY AnyNewerVersion) +set(PACKAGE_NAME ${PROJECT_NAME}) +# setup destination file paths for qskinny target install(TARGETS ${target} EXPORT ${PACKAGE_NAME}Targets LIBRARY DESTINATION ${QSK_INSTALL_LIBS} ARCHIVE DESTINATION ${QSK_INSTALL_LIBS} @@ -534,13 +526,11 @@ install(TARGETS ${target} EXPORT ${PACKAGE_NAME}Targets INCLUDES DESTINATION ${QSK_INSTALL_HEADERS} PUBLIC_HEADER DESTINATION ${QSK_INSTALL_HEADERS}) +# export QSkinnyTargets namespace export(EXPORT ${PACKAGE_NAME}Targets NAMESPACE ${PACKAGE_NAMESPACE}) -configure_file(${QSK_CMAKE_DIR}/${PACKAGE_NAME}Config.cmake - ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}Config.cmake - COPYONLY) - +# install QSkinnyTargets under QSkinny namespace install(EXPORT ${PACKAGE_NAME}Targets FILE ${PACKAGE_NAME}Targets.cmake @@ -548,13 +538,3 @@ install(EXPORT ${PACKAGE_NAME}Targets ${PACKAGE_NAMESPACE} DESTINATION ${PACKAGE_LOCATION}) - -install( - FILES - ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}Config.cmake - ${CMAKE_CURRENT_BINARY_DIR}/cmake/${PACKAGE_NAME}ConfigVersion.cmake - ${QSK_CMAKE_DIR}/QskTools.cmake - DESTINATION - ${PACKAGE_LOCATION} - COMPONENT - Devel) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 74da26cc..74d10d19 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -1,3 +1,4 @@ if(TARGET Qt::Svg) add_subdirectory(svg2qvg) -endif() \ No newline at end of file + qsk_update_package_config_file(QskTools) +endif() From e922f53de4f3212b8a5303071d74eac8b7d36c66 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Fri, 29 Dec 2023 01:54:30 -0500 Subject: [PATCH 12/36] change name to QmlExport and update doc --- .../03-writing-your-first-application.asciidoc | 2 +- doc/tutorials/08-qskinny-and-qml.asciidoc | 11 ++++++++++- qmlexport/CMakeLists.txt | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index 4a08b84d..b0d86d5d 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -79,7 +79,7 @@ find_package(QSkinny REQUIRED) add_executable(myapp src/main.cpp) -target_link_libraries(kue PRIVATE +target_link_libraries(myapp PRIVATE Qt5::Widgets Qt5::Quick QSkinny::QSkinny) diff --git a/doc/tutorials/08-qskinny-and-qml.asciidoc b/doc/tutorials/08-qskinny-and-qml.asciidoc index ef521bc4..f1570e23 100644 --- a/doc/tutorials/08-qskinny-and-qml.asciidoc +++ b/doc/tutorials/08-qskinny-and-qml.asciidoc @@ -18,7 +18,16 @@ When using a QSkinny control, all the methods exposed as either properties, slots or invokables can be used in QML. For example, the QSkinny control `QskLinearBox` defines the following properties: -[source] +.CMakeLists.txt +[source,cmake] +.... +target_link_libraries(myapp PRIVATE + ... + QSkinny::QmlExport) +... +.... + +[source,cpp] .... class QSK_EXPORT QskLinearBox : public QskIndexedLayoutBox { diff --git a/qmlexport/CMakeLists.txt b/qmlexport/CMakeLists.txt index 7f008350..e3ca96c0 100644 --- a/qmlexport/CMakeLists.txt +++ b/qmlexport/CMakeLists.txt @@ -22,7 +22,7 @@ if(BUILD_QSKDLL) endif() # packaging -set(PACKAGE_NAME QskQmlExport) +set(PACKAGE_NAME QmlExport) set(QSKQE_INSTALL_HEADERS "${CMAKE_INSTALL_INCLUDEDIR}/${target}") set_target_properties(${target} PROPERTIES FOLDER libs) From f4315ce4acb3da64e6786a39830b52566aa94201 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Fri, 29 Dec 2023 02:51:31 -0500 Subject: [PATCH 13/36] update iotdashboard_smoketest dep to correctly point --- examples/iotdashboard_smoketest/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/iotdashboard_smoketest/CMakeLists.txt b/examples/iotdashboard_smoketest/CMakeLists.txt index ea34d940..f9924b04 100644 --- a/examples/iotdashboard_smoketest/CMakeLists.txt +++ b/examples/iotdashboard_smoketest/CMakeLists.txt @@ -22,7 +22,7 @@ endfunction() function(qsk_add_example target) cmake_parse_arguments(PARSE_ARGV 1 arg "MANUAL_FINALIZATION" "" "") add_executable(${target} WIN32 MACOSX_BUNDLE ${arg_UNPARSED_ARGUMENTS} ) - target_link_libraries(${target} PRIVATE Qsk::qskinny ) + target_link_libraries(${target} PRIVATE QSkinny::QSkinny ) target_include_directories(${target} PRIVATE ${CMAKE_CURRENT_LIST_DIR}) endfunction() @@ -44,4 +44,4 @@ add_subdirectory(../iotdashboard ${CMAKE_CURRENT_BINARY_DIR}/../iotdashboard) # TODO we don't delivery the support library get_target_property(iotdashboard_COMPILE_DEFINITIONS iotdashboard COMPILE_DEFINITIONS) list(FILTER iotdashboard_COMPILE_DEFINITIONS EXCLUDE REGEX [[^USE_SHORTCUTS=1$]]) -set_property(TARGET iotdashboard PROPERTY COMPILE_DEFINITIONS ${iotdashboard_COMPILE_DEFINITIONS}) \ No newline at end of file +set_property(TARGET iotdashboard PROPERTY COMPILE_DEFINITIONS ${iotdashboard_COMPILE_DEFINITIONS}) From 099281972e6a5251dc7935160a126646658b8d07 Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Tue, 9 Jan 2024 11:59:55 +0100 Subject: [PATCH 14/36] qsk_add_shaders cmake function added --- cmake/QskBuildFunctions.cmake | 16 ++++++++++ src/CMakeLists.txt | 56 ++++++++++------------------------- 2 files changed, 32 insertions(+), 40 deletions(-) diff --git a/cmake/QskBuildFunctions.cmake b/cmake/QskBuildFunctions.cmake index 38fee091..50858598 100644 --- a/cmake/QskBuildFunctions.cmake +++ b/cmake/QskBuildFunctions.cmake @@ -99,3 +99,19 @@ function(qsk_add_example target) target_include_directories(${target} PRIVATE ${CMAKE_CURRENT_LIST_DIR}) endfunction() + +function(qsk_add_shaders target) + + cmake_parse_arguments( arg "" "" "FILES" ${ARGN} ) + + # assuming that OUTPUTS is not set in ARGV + foreach( file IN LISTS arg_FILES ) + get_filename_component(qsbname "${file}" NAME) + string(REPLACE "-vulkan" "" qsbname "${qsbname}" ) + list(APPEND outfiles "${qsbname}.qsb") + endforeach() + + qt6_add_shaders( ${target} "qskshaders" BATCHABLE PRECOMPILE QUIET + PREFIX "/qskinny/shaders" ${ARGV} OUTPUTS ${outfiles} ) + +endfunction() diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 99386af7..15eaa4ef 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -175,6 +175,21 @@ list(APPEND SOURCES if (QT_VERSION_MAJOR VERSION_LESS 6) qt_add_resources(SOURCES nodes/shaders.qrc) +else() + list(APPEND SHADERS + nodes/shaders/arcshadow-vulkan.vert + nodes/shaders/arcshadow-vulkan.frag + nodes/shaders/boxshadow-vulkan.vert + nodes/shaders/boxshadow-vulkan.frag + nodes/shaders/crisplines-vulkan.vert + nodes/shaders/crisplines-vulkan.frag + nodes/shaders/gradientconic-vulkan.vert + nodes/shaders/gradientconic-vulkan.frag + nodes/shaders/gradientlinear-vulkan.vert + nodes/shaders/gradientlinear-vulkan.frag + nodes/shaders/gradientradial-vulkan.vert + nodes/shaders/gradientradial-vulkan.frag + ) endif() list(APPEND HEADERS @@ -476,46 +491,7 @@ if(BUILD_QSKDLL) endif() if (QT_VERSION_MAJOR VERSION_GREATER_EQUAL 6) - - qt6_add_shaders(${target} "qskshaders" - - BATCHABLE - PRECOMPILE - - #OPTIMIZED - QUIET - - PREFIX - "/qskinny/shaders" - - FILES - nodes/shaders/arcshadow-vulkan.vert - nodes/shaders/arcshadow-vulkan.frag - nodes/shaders/boxshadow-vulkan.vert - nodes/shaders/boxshadow-vulkan.frag - nodes/shaders/crisplines-vulkan.vert - nodes/shaders/crisplines-vulkan.frag - nodes/shaders/gradientconic-vulkan.vert - nodes/shaders/gradientconic-vulkan.frag - nodes/shaders/gradientlinear-vulkan.vert - nodes/shaders/gradientlinear-vulkan.frag - nodes/shaders/gradientradial-vulkan.vert - nodes/shaders/gradientradial-vulkan.frag - - OUTPUTS - arcshadow.vert.qsb - arcshadow.frag.qsb - boxshadow.vert.qsb - boxshadow.frag.qsb - crisplines.vert.qsb - crisplines.frag.qsb - gradientconic.vert.qsb - gradientconic.frag.qsb - gradientlinear.vert.qsb - gradientlinear.frag.qsb - gradientradial.vert.qsb - gradientradial.frag.qsb - ) + qsk_add_shaders( ${target} FILES ${SHADERS} ) endif() target_include_directories(${target} PUBLIC From 92e08edda79770b8daa6f956fef2be61ad100bdd Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Wed, 10 Jan 2024 05:38:12 -0500 Subject: [PATCH 15/36] move QskTools.cmake to optional install directive, remove qsk_update_package_config_file for optional cmake keyword --- CMakeLists.txt | 1 - cmake/QSkinnyConfig.cmake | 2 ++ cmake/QskBuildFunctions.cmake | 8 -------- qmlexport/CMakeLists.txt | 2 -- tools/CMakeLists.txt | 8 +++++++- 5 files changed, 9 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b971c6aa..35f33b74 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -125,7 +125,6 @@ install( FILES ${CMAKE_BINARY_DIR}/_QSkinny/${PACKAGE_NAME}Config.cmake ${CMAKE_BINARY_DIR}/_QSkinny/${PACKAGE_NAME}ConfigVersion.cmake - ${QSK_CMAKE_DIR}/QskTools.cmake DESTINATION ${PACKAGE_LOCATION} COMPONENT diff --git a/cmake/QSkinnyConfig.cmake b/cmake/QSkinnyConfig.cmake index fbffae9e..14ab054c 100644 --- a/cmake/QSkinnyConfig.cmake +++ b/cmake/QSkinnyConfig.cmake @@ -1 +1,3 @@ include("${CMAKE_CURRENT_LIST_DIR}/QSkinnyTargets.cmake") +include("${CMAKE_CURRENT_LIST_DIR}/QskTools.cmake" OPTIONAL) +include("${CMAKE_CURRENT_LIST_DIR}/QmlExportTargets.cmake" OPTIONAL) diff --git a/cmake/QskBuildFunctions.cmake b/cmake/QskBuildFunctions.cmake index 8df27d65..32a0fa52 100644 --- a/cmake/QskBuildFunctions.cmake +++ b/cmake/QskBuildFunctions.cmake @@ -115,11 +115,3 @@ function(qsk_add_shaders target) PREFIX "/qskinny/shaders" ${ARGV} OUTPUTS ${outfiles} ) endfunction() - -function(qsk_update_package_config_file target) - - file(APPEND - ${CMAKE_BINARY_DIR}/_QSkinny/QSkinnyConfig.cmake - "include(\"\${CMAKE_CURRENT_LIST_DIR}/${target}.cmake\")\n") - -endfunction() diff --git a/qmlexport/CMakeLists.txt b/qmlexport/CMakeLists.txt index e3ca96c0..30a29ea8 100644 --- a/qmlexport/CMakeLists.txt +++ b/qmlexport/CMakeLists.txt @@ -42,5 +42,3 @@ install(EXPORT ${PACKAGE_NAME}Targets ${PACKAGE_NAMESPACE} DESTINATION ${PACKAGE_LOCATION}) - -qsk_update_package_config_file(${PACKAGE_NAME}Targets) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 74d10d19..53162269 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -1,4 +1,10 @@ if(TARGET Qt::Svg) add_subdirectory(svg2qvg) - qsk_update_package_config_file(QskTools) + install( + FILES + ${QSK_CMAKE_DIR}/QskTools.cmake + DESTINATION + ${PACKAGE_LOCATION} + COMPONENT + Devel) endif() From ddc11b30138ea69254356b30f501b156ccc74429 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Wed, 10 Jan 2024 05:36:13 -0500 Subject: [PATCH 16/36] update docs to include reference to required Qt6 packages --- doc/tutorials/03-writing-your-first-application.asciidoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index b0d86d5d..8b8d0966 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -13,7 +13,8 @@ layout: docs In this chapter we will write a simple QSkinny application on Linux from scratch. As a prerequisite, a recent Qt version (>= 5.15) should be available. On debian bullseye we need to install these packages `build-essential cmake qtbase5-dev qtbase5-private-dev qtdeclarative5-dev qtdeclarative5-private-dev libqt5svg5-dev`. -For Qt6 you need the corresponding packages. +On Debian these packages need to be installed for Qt6: `build-essential cmake +qtbase6-dev qtbase6-private-dev qtdeclarative6-dev qtdeclarative6-private-dev libqt6svg-dev qt6-shadertools`. Then we can build and install QSkinny to `/opt/qskinny` with the following commands: From 315fa27d1e5c53a669e12186dfff77f9dc2bd50f Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Wed, 10 Jan 2024 13:23:14 +0100 Subject: [PATCH 17/36] integration reenabled --- .github/workflows/cmake.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 168968c0..01734143 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -432,22 +432,22 @@ jobs: killall iotdashboard killall Xvfb - #- name: Configure ( CMake Integration Test ) - # shell: bash - # run: | - # mkdir qskinny_build_test - # cmake \ - # -S qskinny_source/examples/iotdashboard_smoketest \ - # -B qskinny_build_test \ - # -G "${{ matrix.config.generators }}" \ - # -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \ - # -DCMAKE_PREFIX_PATH:PATH="${{ matrix.config.cmake.qtprefixpath }}" \ - # -D${{ matrix.config.cmake.qtdirkey }}:PATH="${{ matrix.config.cmake.qtdirvalue }}" \ - # -DQSkinny_DIR:PATH=$GITHUB_WORKSPACE/qskinny_install/lib/cmake/QSkinny -# - #- name: Build ( CMake Integration Test ) - # shell: bash - # run: cmake --build qskinny_build_test --config ${{ matrix.config.build_type }} + - name: Configure ( CMake Integration Test ) + shell: bash + run: | + mkdir qskinny_build_test + cmake \ + -S qskinny_source/examples/iotdashboard_smoketest \ + -B qskinny_build_test \ + -G "${{ matrix.config.generators }}" \ + -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \ + -DCMAKE_PREFIX_PATH:PATH="${{ matrix.config.cmake.qtprefixpath }}" \ + -D${{ matrix.config.cmake.qtdirkey }}:PATH="${{ matrix.config.cmake.qtdirvalue }}" \ + -DQSkinny_DIR:PATH=$GITHUB_WORKSPACE/qskinny_install/lib/cmake/QSkinny + + - name: Build ( CMake Integration Test ) + shell: bash + run: cmake --build qskinny_build_test --config ${{ matrix.config.build_type }} # - name: Pack # shell: bash From 1f290ed6905a333d312070d41e42ce1345bbe5c6 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Wed, 10 Jan 2024 06:16:13 -0500 Subject: [PATCH 18/36] update qmlexport install paths to be contained within lib|includes/qskinny dir --- qmlexport/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qmlexport/CMakeLists.txt b/qmlexport/CMakeLists.txt index 30a29ea8..f80804fb 100644 --- a/qmlexport/CMakeLists.txt +++ b/qmlexport/CMakeLists.txt @@ -23,14 +23,14 @@ endif() # packaging set(PACKAGE_NAME QmlExport) -set(QSKQE_INSTALL_HEADERS "${CMAKE_INSTALL_INCLUDEDIR}/${target}") set_target_properties(${target} PROPERTIES FOLDER libs) set_target_properties(${target} PROPERTIES EXPORT_NAME ${PACKAGE_NAME}) install(TARGETS ${target} EXPORT ${PACKAGE_NAME}Targets - INCLUDES DESTINATION ${QSKQE_INSTALL_HEADERS} - PUBLIC_HEADER DESTINATION ${QSKQE_INSTALL_HEADERS}) + LIBRARY DESTINATION ${QSK_INSTALL_LIBS} + INCLUDES DESTINATION ${QSK_INSTALL_HEADERS} + PUBLIC_HEADER DESTINATION ${QSK_INSTALL_HEADERS}) export(EXPORT ${PACKAGE_NAME}Targets NAMESPACE ${PACKAGE_NAMESPACE}) From 0b60db6614c78973f3c33b3134b2797dc019937d Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Wed, 10 Jan 2024 16:46:09 +0100 Subject: [PATCH 19/36] blocking qmlimportscanner --- cmake/QskBuildFunctions.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmake/QskBuildFunctions.cmake b/cmake/QskBuildFunctions.cmake index 32a0fa52..dddf0004 100644 --- a/cmake/QskBuildFunctions.cmake +++ b/cmake/QskBuildFunctions.cmake @@ -7,6 +7,10 @@ function(qsk_add_executable target) if(QT_VERSION_MAJOR VERSION_GREATER_EQUAL 6) qt6_add_executable(${ARGV}) + + # we manually export our APIs to QML - might change in the future + set_target_properties(${target} PROPERTIES + QT_QML_MODULE_NO_IMPORT_SCAN 1) else() add_executable(${ARGV}) endif() From 690a3c57a1c5568b9d22f4d6cae127925a1144ea Mon Sep 17 00:00:00 2001 From: Rick Vogel Date: Wed, 10 Jan 2024 00:33:35 +0100 Subject: [PATCH 20/36] renamed exported targets and files --- .gitignore | 2 ++ CMakeLists.txt | 12 ++++++------ cmake/QSkinnyConfig.cmake | 4 ++-- cmake/{QskTools.cmake => QSkinnyTools.cmake} | 0 qmlexport/CMakeLists.txt | 17 ++++++++++++++--- tools/CMakeLists.txt | 2 +- 6 files changed, 25 insertions(+), 12 deletions(-) rename cmake/{QskTools.cmake => QSkinnyTools.cmake} (100%) diff --git a/.gitignore b/.gitignore index 138bebe4..5369b42e 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,5 @@ qskinny.pro.user html tags .vscode +.cache +compile_commands.json \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 35f33b74..c3d03164 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -93,7 +93,7 @@ qsk_setup_options() include(GNUInstallDirs) # loading helper macros -list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") +list(APPEND CMAKE_MODULE_PATH ${QSK_CMAKE_DIR}) include("QskConfigMacros") include("QskFindMacros") @@ -110,21 +110,21 @@ include(CMakePackageConfigHelpers) # write QSkinnyConfigVersion.cmake file for cmake import write_basic_package_version_file( - ${CMAKE_BINARY_DIR}/_QSkinny/${PACKAGE_NAME}ConfigVersion.cmake + ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}ConfigVersion.cmake VERSION ${PACKAGE_VERSION} COMPATIBILITY AnyNewerVersion) # Copy QSkinnyConfig.cmake to build dir configure_file(${QSK_CMAKE_DIR}/${PACKAGE_NAME}Config.cmake - ${CMAKE_BINARY_DIR}/_QSkinny/${PACKAGE_NAME}Config.cmake + ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}Config.cmake COPYONLY) # install QSkinnyConfig.cmake and QSkinnyConfigVersion.cmake -# and QskTools.cmake file to lib/cmake/QSkinny directory +# file to lib/cmake/QSkinny directory install( FILES - ${CMAKE_BINARY_DIR}/_QSkinny/${PACKAGE_NAME}Config.cmake - ${CMAKE_BINARY_DIR}/_QSkinny/${PACKAGE_NAME}ConfigVersion.cmake + ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}Config.cmake + ${CMAKE_CURRENT_BINARY_DIR}/${PACKAGE_NAME}ConfigVersion.cmake DESTINATION ${PACKAGE_LOCATION} COMPONENT diff --git a/cmake/QSkinnyConfig.cmake b/cmake/QSkinnyConfig.cmake index 14ab054c..8520eeb3 100644 --- a/cmake/QSkinnyConfig.cmake +++ b/cmake/QSkinnyConfig.cmake @@ -1,3 +1,3 @@ include("${CMAKE_CURRENT_LIST_DIR}/QSkinnyTargets.cmake") -include("${CMAKE_CURRENT_LIST_DIR}/QskTools.cmake" OPTIONAL) -include("${CMAKE_CURRENT_LIST_DIR}/QmlExportTargets.cmake" OPTIONAL) +include("${CMAKE_CURRENT_LIST_DIR}/QSkinnyTools.cmake" OPTIONAL) +include("${CMAKE_CURRENT_LIST_DIR}/QSkinnyQmlExportTargets.cmake" OPTIONAL) diff --git a/cmake/QskTools.cmake b/cmake/QSkinnyTools.cmake similarity index 100% rename from cmake/QskTools.cmake rename to cmake/QSkinnyTools.cmake diff --git a/qmlexport/CMakeLists.txt b/qmlexport/CMakeLists.txt index f80804fb..613bdb26 100644 --- a/qmlexport/CMakeLists.txt +++ b/qmlexport/CMakeLists.txt @@ -3,8 +3,18 @@ # SPDX-License-Identifier: BSD-3-Clause ############################################################################ -set(HEADERS QskQmlGlobal.h QskShortcutQml.h QskLayoutQml.h QskMainQml.h QskQml.h) -set(SOURCES QskShortcutQml.cpp QskLayoutQml.cpp QskMainQml.cpp QskQml.cpp) +set(HEADERS + QskQmlGlobal.h + QskShortcutQml.h + QskLayoutQml.h + QskMainQml.h + QskQml.h) + +set(SOURCES + QskShortcutQml.cpp + QskLayoutQml.cpp + QskMainQml.cpp + QskQml.cpp) set(target qskqmlexport) qsk_add_library(${target} SHARED ${SOURCES} ${HEADERS}) @@ -22,7 +32,8 @@ if(BUILD_QSKDLL) endif() # packaging -set(PACKAGE_NAME QmlExport) +set(PACKAGE_NAME QSkinnyQmlExport) +set(QSKQE_INSTALL_HEADERS "${CMAKE_INSTALL_INCLUDEDIR}/${target}") set_target_properties(${target} PROPERTIES FOLDER libs) set_target_properties(${target} PROPERTIES EXPORT_NAME ${PACKAGE_NAME}) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 53162269..3052d313 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -2,7 +2,7 @@ if(TARGET Qt::Svg) add_subdirectory(svg2qvg) install( FILES - ${QSK_CMAKE_DIR}/QskTools.cmake + ${QSK_CMAKE_DIR}/QSkinnyTools.cmake DESTINATION ${PACKAGE_LOCATION} COMPONENT From 09ee9dad3a80f6a50b9ce04f26122109c42023a9 Mon Sep 17 00:00:00 2001 From: Rick Vogel Date: Thu, 11 Jan 2024 17:46:28 +0100 Subject: [PATCH 21/36] changed qskinny cmake package --- CMakeLists.txt | 14 +++++++------- qmlexport/CMakeLists.txt | 8 ++++++-- src/CMakeLists.txt | 4 ++++ 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c3d03164..7d1eeaab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,14 +7,14 @@ cmake_minimum_required(VERSION 3.16.3) macro(qsk_setup_options) - option(BUILD_PEDANTIC "Enable pedantic compile flags ( only GNU/CLANG )" OFF) - option(BUILD_QSKDLL "Build libs ( not plugins ) as shared library" ON) - option(BUILD_QML_EXPORT "Exporting QSkinny to QML" ON) + option(BUILD_PEDANTIC "Enable pedantic compile flags ( only GNU/CLANG )" OFF) + option(BUILD_QSKDLL "Build libs ( not plugins ) as shared library" ON) + option(BUILD_QML_EXPORT "Exporting QSkinny to QML" ON) - option(BUILD_TOOLS "Build qskinny tools" ON) + option(BUILD_TOOLS "Build qskinny tools" ON) option(BUILD_INPUTCONTEXT "Build virtual keyboard support" ON) - option(BUILD_EXAMPLES "Build qskinny examples" ON) - option(BUILD_PLAYGROUND "Build qskinny playground" ON) + option(BUILD_EXAMPLES "Build qskinny examples" ON) + option(BUILD_PLAYGROUND "Build qskinny playground" ON) # we actually want to use cmake_dependent_option - minimum cmake version ?? @@ -66,7 +66,7 @@ macro(qsk_setup_install) # package vars set(PACKAGE_NAME ${PROJECT_NAME}) set(PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) - set(PACKAGE_NAMESPACE ${PROJECT_NAME}::) + set(PACKAGE_NAMESPACE Qsk::) set(PACKAGE_LOCATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}) # install paths for headers and libraries diff --git a/qmlexport/CMakeLists.txt b/qmlexport/CMakeLists.txt index 613bdb26..244692ff 100644 --- a/qmlexport/CMakeLists.txt +++ b/qmlexport/CMakeLists.txt @@ -32,11 +32,11 @@ if(BUILD_QSKDLL) endif() # packaging -set(PACKAGE_NAME QSkinnyQmlExport) +set(PACKAGE_NAME QmlExport) set(QSKQE_INSTALL_HEADERS "${CMAKE_INSTALL_INCLUDEDIR}/${target}") set_target_properties(${target} PROPERTIES FOLDER libs) -set_target_properties(${target} PROPERTIES EXPORT_NAME ${PACKAGE_NAME}) +set_target_properties(${target} PROPERTIES EXPORT_NAME QmlExport) install(TARGETS ${target} EXPORT ${PACKAGE_NAME}Targets LIBRARY DESTINATION ${QSK_INSTALL_LIBS} @@ -53,3 +53,7 @@ install(EXPORT ${PACKAGE_NAME}Targets ${PACKAGE_NAMESPACE} DESTINATION ${PACKAGE_LOCATION}) + +install(FILES $ + DESTINATION + ${QSK_INSTALL_LIBS} OPTIONAL) \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b40aa5f8..66d31af8 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -561,3 +561,7 @@ install(EXPORT ${PACKAGE_NAME}Targets ${PACKAGE_NAMESPACE} DESTINATION ${PACKAGE_LOCATION}) + +install(FILES $ + DESTINATION + ${QSK_INSTALL_LIBS} OPTIONAL) \ No newline at end of file From da066d1eddd1f0f414880e90a0627e9cb17c9a25 Mon Sep 17 00:00:00 2001 From: Rick Vogel Date: Thu, 11 Jan 2024 18:05:45 +0100 Subject: [PATCH 22/36] fix build break for non msvc compiler --- qmlexport/CMakeLists.txt | 8 +++++--- src/CMakeLists.txt | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/qmlexport/CMakeLists.txt b/qmlexport/CMakeLists.txt index 244692ff..4f098f2e 100644 --- a/qmlexport/CMakeLists.txt +++ b/qmlexport/CMakeLists.txt @@ -54,6 +54,8 @@ install(EXPORT ${PACKAGE_NAME}Targets DESTINATION ${PACKAGE_LOCATION}) -install(FILES $ - DESTINATION - ${QSK_INSTALL_LIBS} OPTIONAL) \ No newline at end of file +if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + install(FILES $ + DESTINATION + ${QSK_INSTALL_LIBS} OPTIONAL) +endif() \ No newline at end of file diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 66d31af8..be10b13f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -562,6 +562,8 @@ install(EXPORT ${PACKAGE_NAME}Targets DESTINATION ${PACKAGE_LOCATION}) -install(FILES $ - DESTINATION - ${QSK_INSTALL_LIBS} OPTIONAL) \ No newline at end of file +if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + install(FILES $ + DESTINATION + ${QSK_INSTALL_LIBS} OPTIONAL) +endif() \ No newline at end of file From 31cdb4be6fd05d529573e4bb105928ee1b5cf114 Mon Sep 17 00:00:00 2001 From: Rick Vogel Date: Thu, 11 Jan 2024 18:06:51 +0100 Subject: [PATCH 23/36] fix qml export install location --- qmlexport/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qmlexport/CMakeLists.txt b/qmlexport/CMakeLists.txt index 4f098f2e..a196415a 100644 --- a/qmlexport/CMakeLists.txt +++ b/qmlexport/CMakeLists.txt @@ -40,6 +40,8 @@ set_target_properties(${target} PROPERTIES EXPORT_NAME QmlExport) install(TARGETS ${target} EXPORT ${PACKAGE_NAME}Targets LIBRARY DESTINATION ${QSK_INSTALL_LIBS} + ARCHIVE DESTINATION ${QSK_INSTALL_LIBS} + RUNTIME DESTINATION ${QSK_INSTALL_LIBS} INCLUDES DESTINATION ${QSK_INSTALL_HEADERS} PUBLIC_HEADER DESTINATION ${QSK_INSTALL_HEADERS}) From f6601ca936f124c1c2d248b58d229b12c89847e1 Mon Sep 17 00:00:00 2001 From: Rick Vogel Date: Thu, 11 Jan 2024 18:17:34 +0100 Subject: [PATCH 24/36] fix integration test --- examples/iotdashboard_smoketest/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/iotdashboard_smoketest/CMakeLists.txt b/examples/iotdashboard_smoketest/CMakeLists.txt index f9924b04..8f8a0c5f 100644 --- a/examples/iotdashboard_smoketest/CMakeLists.txt +++ b/examples/iotdashboard_smoketest/CMakeLists.txt @@ -22,7 +22,7 @@ endfunction() function(qsk_add_example target) cmake_parse_arguments(PARSE_ARGV 1 arg "MANUAL_FINALIZATION" "" "") add_executable(${target} WIN32 MACOSX_BUNDLE ${arg_UNPARSED_ARGUMENTS} ) - target_link_libraries(${target} PRIVATE QSkinny::QSkinny ) + target_link_libraries(${target} PRIVATE Qsk::QSkinny ) target_include_directories(${target} PRIVATE ${CMAKE_CURRENT_LIST_DIR}) endfunction() From 5c12b18b878e0090c498c7678462451f5d04cbbb Mon Sep 17 00:00:00 2001 From: Rick Vogel Date: Thu, 11 Jan 2024 18:48:58 +0100 Subject: [PATCH 25/36] fix qml export target filename --- qmlexport/CMakeLists.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/qmlexport/CMakeLists.txt b/qmlexport/CMakeLists.txt index a196415a..44413ee6 100644 --- a/qmlexport/CMakeLists.txt +++ b/qmlexport/CMakeLists.txt @@ -33,24 +33,25 @@ endif() # packaging set(PACKAGE_NAME QmlExport) +set(PACKAGE_TARGET_FILENAME QSkinny${PACKAGE_NAME}Targets.cmake) set(QSKQE_INSTALL_HEADERS "${CMAKE_INSTALL_INCLUDEDIR}/${target}") set_target_properties(${target} PROPERTIES FOLDER libs) set_target_properties(${target} PROPERTIES EXPORT_NAME QmlExport) -install(TARGETS ${target} EXPORT ${PACKAGE_NAME}Targets +install(TARGETS ${target} EXPORT ${PACKAGE_TARGET_FILENAME} LIBRARY DESTINATION ${QSK_INSTALL_LIBS} ARCHIVE DESTINATION ${QSK_INSTALL_LIBS} RUNTIME DESTINATION ${QSK_INSTALL_LIBS} INCLUDES DESTINATION ${QSK_INSTALL_HEADERS} PUBLIC_HEADER DESTINATION ${QSK_INSTALL_HEADERS}) -export(EXPORT ${PACKAGE_NAME}Targets +export(EXPORT ${PACKAGE_TARGET_FILENAME} NAMESPACE ${PACKAGE_NAMESPACE}) -install(EXPORT ${PACKAGE_NAME}Targets +install(EXPORT ${PACKAGE_TARGET_FILENAME} FILE - ${PACKAGE_NAME}Targets.cmake + ${PACKAGE_TARGET_FILENAME} NAMESPACE ${PACKAGE_NAMESPACE} DESTINATION From 7e2e36163703a0ef8a5511a21a6f76c1b459188e Mon Sep 17 00:00:00 2001 From: Rick Vogel Date: Fri, 12 Jan 2024 10:11:18 +0100 Subject: [PATCH 26/36] update documentation qsk cmake namespace --- doc/tutorials/03-writing-your-first-application.asciidoc | 2 +- doc/tutorials/08-qskinny-and-qml.asciidoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index 8b8d0966..209e98cf 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -83,7 +83,7 @@ add_executable(myapp target_link_libraries(myapp PRIVATE Qt5::Widgets Qt5::Quick - QSkinny::QSkinny) + Qsk::QSkinny) .... Now we can compile our app: diff --git a/doc/tutorials/08-qskinny-and-qml.asciidoc b/doc/tutorials/08-qskinny-and-qml.asciidoc index f1570e23..9af57645 100644 --- a/doc/tutorials/08-qskinny-and-qml.asciidoc +++ b/doc/tutorials/08-qskinny-and-qml.asciidoc @@ -23,7 +23,7 @@ slots or invokables can be used in QML. For example, the QSkinny control .... target_link_libraries(myapp PRIVATE ... - QSkinny::QmlExport) + Qsk::QmlExport) ... .... From ffb59345971393ccc54a0a8b5581745e4173577c Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Sat, 13 Jan 2024 10:07:53 +0100 Subject: [PATCH 27/36] first-application steps modified --- .../03-writing-your-first-application.asciidoc | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index 209e98cf..24e86a27 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -10,7 +10,7 @@ layout: docs === Building the QSkinny repository -In this chapter we will write a simple QSkinny application on Linux from scratch. +In this chapter we will write a simple QSkinny application on Linux from scratch in C++. As a prerequisite, a recent Qt version (>= 5.15) should be available. On debian bullseye we need to install these packages `build-essential cmake qtbase5-dev qtbase5-private-dev qtdeclarative5-dev qtdeclarative5-private-dev libqt5svg5-dev`. On Debian these packages need to be installed for Qt6: `build-essential cmake @@ -74,14 +74,13 @@ set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) set(CMAKE_AUTOUIC ON) -find_package(Qt5 REQUIRED COMPONENTS Widgets Quick) +find_package(Qt5 REQUIRED COMPONENTS Quick) find_package(QSkinny REQUIRED) add_executable(myapp src/main.cpp) target_link_libraries(myapp PRIVATE - Qt5::Widgets Qt5::Quick Qsk::QSkinny) .... @@ -122,9 +121,9 @@ int main( int argc, char* argv[] ) { QGuiApplication app( argc, argv ); - auto* horizontalBox = new QskLinearBox( Qt::Horizontal ); - auto* button1 = new QskPushButton( "button 1", horizontalBox ); - auto* button2 = new QskPushButton( "button 2", horizontalBox ); + auto horizontalBox = new QskLinearBox( Qt::Horizontal ); + (void) new QskPushButton( "Button 1", horizontalBox ); + (void) new QskPushButton( "Button 2", horizontalBox ); QskWindow window; window.addItem( horizontalBox ); From f04c3d3a6384241166eba86f57a93d7b6d3c5fca Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Sat, 13 Jan 2024 11:01:38 +0100 Subject: [PATCH 28/36] description updated, build hints replaced by reference to the tutorial --- README.md | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 2b21d3c0..487a1d97 100644 --- a/README.md +++ b/README.md @@ -22,28 +22,18 @@ The code already provides a solid fundament for an automotive GUI with currently ~300K lines of pure C++ code. As expected it results in a good startup performance and a low memory footprint. -Nontheless QSkinny is lacking in areas like documentation or appealing -default skins. The QML API has not been completed after reaching a -proof of concept state. Furthermore the current selection of the implemented -controls is limited to the needs of the driving projects. +Nontheless QSkinny is lacking in areas like documentation. +The QML API has not been completed after reaching a proof of concept state. QSkinny is supposed to run on all platforms being supported by Qt/Quick. -But so far only Linux is actively tested. -It might support all versions Qt >= 5.15, but you can rely on: +It might support other versions of Qt, but you can rely on: - Qt 5.15 - current long term supported ( LTS ) version of Qt ( at the moment Qt 6.5.x ) - current version of Qt -On Debian these packages need to be installed for Qt6: `build-essential cmake -qtbase6-dev qtbase6-private-dev qtdeclarative6-dev qtdeclarative6-private-dev libqt6svg-dev qt6-shadertools` -For Qt5 you need: `build-essential cmake -qtbase5-dev qtbase5-private-dev qtdeclarative5-dev qtdeclarative5-private-dev libqt5svg-dev`. - - -> Optional: When enabling the `hunspell` feature the following package needs to be installed: `libhunspell-dev` - -> Optional: When enabling the `pinyin` feature the following package needs to be installed: `libimepinyin-dev` +How to build/install and use QSkinny is described in this +[tutorial](doc/doc/tutorials/03-writing-your-first-application.asciidoc) If you want to know more about QSkinny - or even like to give it a specific direction - please contact support@qskinny.org. From c0672d1f8c34f3dbae618ff3215448303f4e6eae Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Sat, 13 Jan 2024 11:04:51 +0100 Subject: [PATCH 29/36] link fixed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 487a1d97..97ac24a4 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ It might support other versions of Qt, but you can rely on: - current version of Qt How to build/install and use QSkinny is described in this -[tutorial](doc/doc/tutorials/03-writing-your-first-application.asciidoc) +[tutorial](doc/tutorials/03-writing-your-first-application.asciidoc) If you want to know more about QSkinny - or even like to give it a specific direction - please contact support@qskinny.org. From 097bfbe26a5c4fc8b58e0fb007e21efb6b8b4036 Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Sat, 13 Jan 2024 11:11:50 +0100 Subject: [PATCH 30/36] qt6 as the default use case --- .../03-writing-your-first-application.asciidoc | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index 24e86a27..c4202ebe 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -11,10 +11,14 @@ layout: docs === Building the QSkinny repository In this chapter we will write a simple QSkinny application on Linux from scratch in C++. -As a prerequisite, a recent Qt version (>= 5.15) should be available. On debian bullseye we need to install -these packages `build-essential cmake qtbase5-dev qtbase5-private-dev qtdeclarative5-dev qtdeclarative5-private-dev libqt5svg5-dev`. -On Debian these packages need to be installed for Qt6: `build-essential cmake -qtbase6-dev qtbase6-private-dev qtdeclarative6-dev qtdeclarative6-private-dev libqt6svg-dev qt6-shadertools`. +As a prerequisite, a supported Qt version should be available. + +On debian bullseye we need to install these packages +`build-essential cmake qtbase6-dev qtbase6-private-dev qtdeclarative6-dev qtdeclarative6-private-dev libqt6svg-dev qt6-shadertools`. + +( For Qt 5.15 you need the corresponding packages beside of the shadertools ) + +Optional packages for the virtual keyboard are `libhunspell-dev libimepinyin-dev` Then we can build and install QSkinny to `/opt/qskinny` with the following commands: @@ -74,14 +78,14 @@ set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) set(CMAKE_AUTOUIC ON) -find_package(Qt5 REQUIRED COMPONENTS Quick) +find_package(Qt6 REQUIRED COMPONENTS Quick) find_package(QSkinny REQUIRED) add_executable(myapp src/main.cpp) target_link_libraries(myapp PRIVATE - Qt5::Quick + Qt6::Quick Qsk::QSkinny) .... @@ -95,7 +99,7 @@ $ cmake ../ && make .... When running myapp it needs to find the skin plugins. Setting QT_PLUGIN_PATH is one -option ( see https://doc.qt.io/qt-5/deployment-plugins.html ): +option ( see https://doc.qt.io/qt/deployment-plugins.html ): [source,shell] .... From ae6ba604b6ffa0db49579c2ba8786ee7285cf5f6 Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Sat, 13 Jan 2024 11:41:22 +0100 Subject: [PATCH 31/36] using cmake instead of make in the docs --- README.md | 4 ++-- doc/tutorials/03-writing-your-first-application.asciidoc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 97ac24a4..22db8c1f 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,8 @@ It might support other versions of Qt, but you can rely on: - current long term supported ( LTS ) version of Qt ( at the moment Qt 6.5.x ) - current version of Qt -How to build/install and use QSkinny is described in this -[tutorial](doc/tutorials/03-writing-your-first-application.asciidoc) +How to build, install and use QSkinny is described in this +[tutorial](doc/tutorials/03-writing-your-first-application.asciidoc). If you want to know more about QSkinny - or even like to give it a specific direction - please contact support@qskinny.org. diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index c4202ebe..65cdf7c4 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -27,8 +27,8 @@ Then we can build and install QSkinny to `/opt/qskinny` with the following comma $ git clone https://github.com/uwerat/qskinny.git # clone $ cd qskinny $ mkdir build && cd build -$ cmake ../ && make # build -$ sudo make install # install +$ cmake .. && cmake --build . +$ sudo cmake --install . --prefix "/opt/qskinny" .... To target a specific Qt version simply pass the cmake build variable `QSK_QT_VERSION` during the build step: From a39c28825812e41049723d3f6fc6d81784378c44 Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Tue, 16 Jan 2024 11:42:40 +0100 Subject: [PATCH 32/36] tutorial updated --- ...03-writing-your-first-application.asciidoc | 40 +++++++++++++------ 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index 65cdf7c4..1627ac63 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -10,14 +10,12 @@ layout: docs === Building the QSkinny repository -In this chapter we will write a simple QSkinny application on Linux from scratch in C++. -As a prerequisite, a supported Qt version should be available. +In this chapter we will write a simple QSkinny application on Linux from scratch in C++ with Qt6. +As a prerequisite, a supported Qt6 version should be available. On debian bullseye we need to install these packages `build-essential cmake qtbase6-dev qtbase6-private-dev qtdeclarative6-dev qtdeclarative6-private-dev libqt6svg-dev qt6-shadertools`. -( For Qt 5.15 you need the corresponding packages beside of the shadertools ) - Optional packages for the virtual keyboard are `libhunspell-dev libimepinyin-dev` Then we can build and install QSkinny to `/opt/qskinny` with the following commands: @@ -27,15 +25,23 @@ Then we can build and install QSkinny to `/opt/qskinny` with the following comma $ git clone https://github.com/uwerat/qskinny.git # clone $ cd qskinny $ mkdir build && cd build -$ cmake .. && cmake --build . +$ cmake .. +$ cmake --build . $ sudo cmake --install . --prefix "/opt/qskinny" .... -To target a specific Qt version simply pass the cmake build variable `QSK_QT_VERSION` during the build step: + +Considering that you want to use a specific Qt version that is installed below "/path/to/qt" +you have 2 options: [source,shell] +$ cmake .. -DCMAKE_PREFIX_PATH=/path/to/qt .... -$ cmake -DQSK_QT_VERSION=Qt5 ../ && make + +or + +[source,shell] +$ /path/to/qt/bin/qt-cmake .. .... === Compiling our first app @@ -60,7 +66,7 @@ int main( int argc, char* argv[] ) .... For now this will just create an empty window (the `QskWindow`) without any controls. -Next, we need to create a `myapp.pro` file in our `myapp` directory. +Next, we need to create a `CMakeLists.txt` file in our `myapp` directory. .CMakeLists.txt [source,cmake] @@ -110,7 +116,9 @@ This should show just an empty window. === Adding UI controls -Now that we have our app running, we can add some UI controls to it by extending the `main.cpp` file we created earlier. We will add some additional include directives, and then create a horizontal layout containing two push buttons. The layout with the two buttons will be shown in the window. Below is the complete updated source file: +Now that we have our app running, we can add some UI controls to it by extending the `main.cpp` file we created earlier. +We will add some additional include directives, and then create a horizontal layout containing two push buttons. +The layout with the two buttons will be shown in the window. Below is the complete updated source file: .main.cpp [source, cpp] @@ -125,9 +133,17 @@ int main( int argc, char* argv[] ) { QGuiApplication app( argc, argv ); - auto horizontalBox = new QskLinearBox( Qt::Horizontal ); - (void) new QskPushButton( "Button 1", horizontalBox ); - (void) new QskPushButton( "Button 2", horizontalBox ); + auto box = new QskLinearBox( Qt::Horizontal ); + + /* + some design systems work with transparencies ( f.e Fluent2 ) + and we need to have a control providing a solid base color + as bottom layer. + */ + box->setPanel( true ); + + (void) new QskPushButton( "Button 1", box ); + (void) new QskPushButton( "Button 2", box ); QskWindow window; window.addItem( horizontalBox ); From 683088539fbd25255eaede4e142d74cb9cd3c0c9 Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Tue, 16 Jan 2024 14:43:10 +0100 Subject: [PATCH 33/36] typos fixed --- doc/tutorials/03-writing-your-first-application.asciidoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/tutorials/03-writing-your-first-application.asciidoc b/doc/tutorials/03-writing-your-first-application.asciidoc index 1627ac63..cd16d942 100644 --- a/doc/tutorials/03-writing-your-first-application.asciidoc +++ b/doc/tutorials/03-writing-your-first-application.asciidoc @@ -35,12 +35,14 @@ Considering that you want to use a specific Qt version that is installed below " you have 2 options: [source,shell] +.... $ cmake .. -DCMAKE_PREFIX_PATH=/path/to/qt .... or [source,shell] +.... $ /path/to/qt/bin/qt-cmake .. .... From 530720beb366a383106d03acfa5c4a0ae1bbb72b Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Wed, 17 Jan 2024 11:47:21 +0100 Subject: [PATCH 34/36] QSK_QT_VERSION removed as CMAKE_PREFIX_PATH offers a more general solution for selecting a specific Qt version --- cmake/QskFindMacros.cmake | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/cmake/QskFindMacros.cmake b/cmake/QskFindMacros.cmake index 0c9d8583..b27d24d2 100644 --- a/cmake/QskFindMacros.cmake +++ b/cmake/QskFindMacros.cmake @@ -5,15 +5,9 @@ macro(qsk_setup_Qt) - # Use QSK_QT_VERSION specified with baseline 5.15 - # otherwise fallback to latest known supported Qt version gte 5.15 - # set vars for correct alpha descending sort order and direction (ex. Qt6, Qt5) - if ( NOT QSK_QT_VERSION ) # QSK_QT_VERSION=Qt5 - set(QSK_QT_VERSION Qt6 Qt5) - set(CMAKE_FIND_PACKAGE_SORT_ORDER NAME) - set(CMAKE_FIND_PACKAGE_SORT_DIRECTION DEC) - endif() - find_package(QT "5.15" NAMES ${QSK_QT_VERSION} REQUIRED COMPONENTS Quick) + # relying on cmake heuristics to select a specific Qt version is no good idea. + # using -DCMAKE_PREFIX_PATH="..." is highly recommended + find_package(QT "5.15" NAMES Qt6 Qt5 REQUIRED COMPONENTS Quick) if(QT_VERSION_MAJOR VERSION_GREATER_EQUAL 6) # we need the qsb tool for Qt6 From 511db2650e2304a07ddfc0075366053c8782f15e Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Wed, 17 Jan 2024 14:31:45 +0100 Subject: [PATCH 35/36] copyright notice generalised --- CMakeLists.txt | 2 +- cmake/QSkinnyTools.cmake | 2 +- cmake/QskBuildFunctions.cmake | 2 +- cmake/QskConfigMacros.cmake | 2 +- cmake/QskFindMacros.cmake | 2 +- examples/CMakeLists.txt | 2 +- examples/boxes/Box.cpp | 2 +- examples/boxes/Box.h | 2 +- examples/boxes/CMakeLists.txt | 2 +- examples/boxes/main.cpp | 2 +- examples/buttons/CMakeLists.txt | 2 +- examples/buttons/main.cpp | 2 +- examples/desktop/CMakeLists.txt | 2 +- examples/desktop/main.cpp | 2 +- examples/frames/CMakeLists.txt | 2 +- examples/frames/Frame.cpp | 2 +- examples/frames/Frame.h | 2 +- examples/frames/main.cpp | 2 +- examples/gallery/CMakeLists.txt | 2 +- examples/gallery/Page.cpp | 2 +- examples/gallery/Page.h | 2 +- examples/gallery/button/ButtonPage.cpp | 2 +- examples/gallery/button/ButtonPage.h | 2 +- examples/gallery/dialog/DialogPage.cpp | 2 +- examples/gallery/dialog/DialogPage.h | 2 +- examples/gallery/inputs/InputPage.cpp | 2 +- examples/gallery/inputs/InputPage.h | 2 +- examples/gallery/label/LabelPage.cpp | 2 +- examples/gallery/label/LabelPage.h | 2 +- examples/gallery/listbox/ListBoxPage.cpp | 2 +- examples/gallery/listbox/ListBoxPage.h | 2 +- examples/gallery/main.cpp | 2 +- examples/gallery/progressbar/ProgressBarPage.cpp | 2 +- examples/gallery/progressbar/ProgressBarPage.h | 2 +- examples/gallery/selector/SelectorPage.cpp | 2 +- examples/gallery/selector/SelectorPage.h | 2 +- examples/glabels/CMakeLists.txt | 2 +- examples/glabels/main.cpp | 2 +- examples/iotdashboard/MainItem.h | 5 +++++ examples/layouts/ButtonBox.cpp | 2 +- examples/layouts/ButtonBox.h | 2 +- examples/layouts/CMakeLists.txt | 2 +- examples/layouts/DynamicConstraintsPage.cpp | 2 +- examples/layouts/DynamicConstraintsPage.h | 2 +- examples/layouts/FlowLayoutPage.cpp | 2 +- examples/layouts/FlowLayoutPage.h | 2 +- examples/layouts/GridLayoutPage.cpp | 2 +- examples/layouts/GridLayoutPage.h | 2 +- examples/layouts/LinearLayoutPage.cpp | 2 +- examples/layouts/LinearLayoutPage.h | 2 +- examples/layouts/StackLayoutPage.cpp | 2 +- examples/layouts/StackLayoutPage.h | 2 +- examples/layouts/SwipeViewPage.cpp | 2 +- examples/layouts/SwipeViewPage.h | 2 +- examples/layouts/TestRectangle.cpp | 2 +- examples/layouts/TestRectangle.h | 2 +- examples/layouts/main.cpp | 2 +- examples/mycontrols/CMakeLists.txt | 2 +- examples/mycontrols/MySkin.cpp | 2 +- examples/mycontrols/MySkin.h | 2 +- examples/mycontrols/MyToggleButton.cpp | 2 +- examples/mycontrols/MyToggleButton.h | 2 +- examples/mycontrols/MyToggleButtonSkinlet.cpp | 2 +- examples/mycontrols/MyToggleButtonSkinlet.h | 2 +- examples/mycontrols/main.cpp | 2 +- examples/qvgviewer/CMakeLists.txt | 2 +- examples/qvgviewer/MainWindow.cpp | 2 +- examples/qvgviewer/MainWindow.h | 2 +- examples/qvgviewer/main.cpp | 2 +- examples/tabview/CMakeLists.txt | 2 +- examples/tabview/CustomSlider.cpp | 2 +- examples/tabview/CustomSlider.h | 2 +- examples/tabview/CustomSliderSkinlet.cpp | 2 +- examples/tabview/CustomSliderSkinlet.h | 2 +- examples/tabview/OtherSlider.cpp | 2 +- examples/tabview/OtherSlider.h | 2 +- examples/tabview/main.cpp | 2 +- examples/thumbnails/CMakeLists.txt | 2 +- examples/thumbnails/main.cpp | 2 +- inputcontext/CMakeLists.txt | 2 +- inputcontext/QskInputContextGlobal.h | 2 +- inputcontext/QskInputContextPlugin.cpp | 2 +- playground/anchors/AnchorBox.cpp | 2 +- playground/anchors/AnchorBox.h | 2 +- playground/anchors/CMakeLists.txt | 2 +- playground/anchors/main.cpp | 2 +- playground/charts/CMakeLists.txt | 2 +- playground/charts/ChartSample.cpp | 2 +- playground/charts/ChartSample.h | 2 +- playground/charts/ChartView.cpp | 2 +- playground/charts/ChartView.h | 4 ++-- playground/charts/CircularChart.cpp | 4 ++-- playground/charts/CircularChart.h | 4 ++-- playground/charts/CircularChartSkinlet.cpp | 2 +- playground/charts/CircularChartSkinlet.h | 2 +- playground/charts/StackedChart.cpp | 2 +- playground/charts/StackedChart.h | 4 ++-- playground/charts/main.cpp | 2 +- playground/dialogbuttons/CMakeLists.txt | 2 +- playground/dialogbuttons/Window.cpp | 2 +- playground/dialogbuttons/Window.h | 2 +- playground/dialogbuttons/main.cpp | 2 +- playground/dials/CMakeLists.txt | 2 +- playground/dials/Dashboard.cpp | 2 +- playground/dials/Dashboard.h | 2 +- playground/dials/Dial.cpp | 2 +- playground/dials/Dial.h | 2 +- playground/dials/DialSkinlet.cpp | 2 +- playground/dials/DialSkinlet.h | 2 +- playground/dials/MainWindow.h | 2 +- playground/dials/SkinFactory.cpp | 2 +- playground/dials/SkinFactory.h | 2 +- playground/dials/main.cpp | 2 +- playground/gradients/CMakeLists.txt | 2 +- playground/gradients/GradientQuickShape.cpp | 2 +- playground/gradients/GradientQuickShape.h | 2 +- playground/gradients/GradientView.cpp | 2 +- playground/gradients/GradientView.h | 2 +- playground/gradients/main.cpp | 2 +- playground/grids/CMakeLists.txt | 2 +- playground/grids/GridAccessor.cpp | 2 +- playground/grids/GridAccessor.h | 2 +- playground/grids/GridGraphics.cpp | 2 +- playground/grids/GridGraphics.h | 2 +- playground/grids/GridQuick.cpp | 2 +- playground/grids/GridQuick.h | 2 +- playground/grids/GridSkinny.cpp | 2 +- playground/grids/GridSkinny.h | 2 +- playground/grids/GridWidgets.cpp | 2 +- playground/grids/GridWidgets.h | 2 +- playground/grids/TestBox.cpp | 2 +- playground/grids/TestBox.h | 2 +- playground/grids/main.cpp | 2 +- playground/images/CMakeLists.txt | 2 +- playground/images/Image.cpp | 2 +- playground/images/Image.h | 2 +- playground/images/main.cpp | 2 +- playground/inputpanel/CMakeLists.txt | 2 +- playground/inputpanel/main.cpp | 2 +- playground/invoker/CMakeLists.txt | 2 +- playground/invoker/Callback.cpp | 2 +- playground/invoker/Callback.h | 2 +- playground/invoker/Invoker.cpp | 2 +- playground/invoker/Invoker.h | 2 +- playground/invoker/main.cpp | 2 +- playground/plots/CMakeLists.txt | 2 +- playground/plots/Plot.cpp | 4 ++-- playground/plots/Plot.h | 4 ++-- playground/plots/PlotCursor.cpp | 4 ++-- playground/plots/PlotCursor.h | 4 ++-- playground/plots/PlotCursorSkinlet.cpp | 2 +- playground/plots/PlotCursorSkinlet.h | 2 +- playground/plots/PlotSkin.cpp | 4 ++-- playground/plots/PlotSkin.h | 4 ++-- playground/plots/QskPlotCorridor.cpp | 4 ++-- playground/plots/QskPlotCorridor.h | 2 +- playground/plots/QskPlotCorridorData.cpp | 4 ++-- playground/plots/QskPlotCorridorData.h | 4 ++-- playground/plots/QskPlotCorridorSkinlet.cpp | 2 +- playground/plots/QskPlotCorridorSkinlet.h | 2 +- playground/plots/QskPlotCurve.cpp | 4 ++-- playground/plots/QskPlotCurve.h | 4 ++-- playground/plots/QskPlotCurveData.cpp | 4 ++-- playground/plots/QskPlotCurveData.h | 4 ++-- playground/plots/QskPlotCurveSkinlet.cpp | 2 +- playground/plots/QskPlotCurveSkinlet.h | 2 +- playground/plots/QskPlotGrid.cpp | 4 ++-- playground/plots/QskPlotGrid.h | 2 +- playground/plots/QskPlotGridSkinlet.cpp | 2 +- playground/plots/QskPlotGridSkinlet.h | 2 +- playground/plots/QskPlotItem.cpp | 4 ++-- playground/plots/QskPlotItem.h | 4 ++-- playground/plots/QskPlotNamespace.h | 2 +- playground/plots/QskPlotView.cpp | 4 ++-- playground/plots/QskPlotView.h | 4 ++-- playground/plots/QskPlotViewSkinlet.cpp | 2 +- playground/plots/QskPlotViewSkinlet.h | 2 +- playground/plots/main.cpp | 4 ++-- playground/shadows/ArcPage.cpp | 2 +- playground/shadows/ArcPage.h | 2 +- playground/shadows/BoxPage.cpp | 2 +- playground/shadows/BoxPage.h | 2 +- playground/shadows/CMakeLists.txt | 2 +- playground/shadows/ShadowedArc.cpp | 2 +- playground/shadows/ShadowedArc.h | 2 +- playground/shadows/ShadowedBox.cpp | 2 +- playground/shadows/ShadowedBox.h | 2 +- playground/shadows/Slider.cpp | 2 +- playground/shadows/Slider.h | 2 +- playground/shadows/main.cpp | 2 +- playground/shapes/CMakeLists.txt | 2 +- playground/shapes/GeometricShape.cpp | 2 +- playground/shapes/GeometricShape.h | 2 +- playground/shapes/ShapeItem.cpp | 2 +- playground/shapes/ShapeItem.h | 2 +- playground/shapes/Stroke.cpp | 2 +- playground/shapes/Stroke.h | 2 +- playground/shapes/Window.cpp | 2 +- playground/shapes/Window.h | 2 +- playground/shapes/main.cpp | 2 +- playground/webview/CMakeLists.txt | 2 +- playground/webview/main.cpp | 2 +- qmlexport/CMakeLists.txt | 4 ++-- qmlexport/QskLayoutQml.cpp | 2 +- qmlexport/QskLayoutQml.h | 2 +- qmlexport/QskMainQml.cpp | 2 +- qmlexport/QskMainQml.h | 2 +- qmlexport/QskQml.cpp | 2 +- qmlexport/QskQml.h | 2 +- qmlexport/QskQml.hpp | 2 +- qmlexport/QskQmlGlobal.h | 2 +- qmlexport/QskShortcutQml.cpp | 2 +- qmlexport/QskShortcutQml.h | 2 +- skins/fluent2/QskFluent2Global.h | 2 +- skins/fluent2/QskFluent2Skin.cpp | 2 +- skins/fluent2/QskFluent2Skin.h | 2 +- skins/fluent2/QskFluent2SkinFactory.cpp | 2 +- skins/fluent2/QskFluent2SkinFactory.h | 2 +- skins/fluent2/QskFluent2Theme.cpp | 2 +- skins/fluent2/QskFluent2Theme.h | 2 +- skins/material3/CMakeLists.txt | 2 +- skins/material3/QskMaterial3Global.h | 2 +- skins/material3/QskMaterial3Skin.cpp | 2 +- skins/material3/QskMaterial3Skin.h | 2 +- skins/material3/QskMaterial3SkinFactory.cpp | 2 +- skins/material3/QskMaterial3SkinFactory.h | 2 +- skins/squiek/CMakeLists.txt | 2 +- skins/squiek/QskSquiekGlobal.h | 2 +- skins/squiek/QskSquiekSkin.cpp | 2 +- skins/squiek/QskSquiekSkin.h | 2 +- skins/squiek/QskSquiekSkinFactory.cpp | 2 +- skins/squiek/QskSquiekSkinFactory.h | 2 +- src/CMakeLists.txt | 4 ++-- src/common/QskArcMetrics.cpp | 2 +- src/common/QskArcMetrics.h | 2 +- src/common/QskAspect.cpp | 2 +- src/common/QskAspect.h | 2 +- src/common/QskBoxBorderColors.cpp | 2 +- src/common/QskBoxBorderColors.h | 2 +- src/common/QskBoxBorderMetrics.cpp | 2 +- src/common/QskBoxBorderMetrics.h | 2 +- src/common/QskBoxHints.cpp | 2 +- src/common/QskBoxHints.h | 2 +- src/common/QskBoxShapeMetrics.cpp | 2 +- src/common/QskBoxShapeMetrics.h | 2 +- src/common/QskFunctions.cpp | 5 +++++ src/common/QskFunctions.h | 2 +- src/common/QskGlobal.h | 2 +- src/common/QskGradient.cpp | 2 +- src/common/QskGradient.h | 2 +- src/common/QskGradientDirection.cpp | 2 +- src/common/QskGradientDirection.h | 2 +- src/common/QskGradientStop.cpp | 2 +- src/common/QskGradientStop.h | 2 +- src/common/QskGraduation.cpp | 2 +- src/common/QskGraduation.h | 2 +- src/common/QskGraduationMetrics.cpp | 5 +++++ src/common/QskGraduationMetrics.h | 2 +- src/common/QskHctColor.h | 2 +- src/common/QskIntervalF.cpp | 2 +- src/common/QskIntervalF.h | 2 +- src/common/QskLabelData.cpp | 2 +- src/common/QskLabelData.h | 2 +- src/common/QskMargins.cpp | 5 +++++ src/common/QskMargins.h | 2 +- src/common/QskMetaFunction.cpp | 2 +- src/common/QskMetaFunction.h | 2 +- src/common/QskMetaFunction.hpp | 2 +- src/common/QskMetaInvokable.cpp | 2 +- src/common/QskMetaInvokable.h | 2 +- src/common/QskNamespace.h | 2 +- src/common/QskObjectCounter.cpp | 2 +- src/common/QskObjectCounter.h | 2 +- src/common/QskPlacementPolicy.cpp | 2 +- src/common/QskPlacementPolicy.h | 2 +- src/common/QskPlatform.cpp | 5 +++++ src/common/QskPlatform.h | 2 +- src/common/QskRgbValue.cpp | 2 +- src/common/QskRgbValue.h | 2 +- src/common/QskShadowMetrics.cpp | 2 +- src/common/QskShadowMetrics.h | 2 +- src/common/QskSizePolicy.cpp | 2 +- src/common/QskSizePolicy.h | 2 +- src/common/QskStateCombination.h | 2 +- src/common/QskStippleMetrics.cpp | 2 +- src/common/QskStippleMetrics.h | 2 +- src/common/QskTextColors.cpp | 2 +- src/common/QskTextColors.h | 2 +- src/common/QskTextOptions.cpp | 2 +- src/common/QskTextOptions.h | 2 +- src/common/QskTickmarks.cpp | 2 +- src/common/QskTickmarks.h | 2 +- src/controls/QskAbstractButton.cpp | 2 +- src/controls/QskAbstractButton.h | 2 +- src/controls/QskAnimationHint.cpp | 2 +- src/controls/QskAnimationHint.h | 2 +- src/controls/QskAnimator.cpp | 2 +- src/controls/QskAnimator.h | 2 +- src/controls/QskBoundedControl.cpp | 2 +- src/controls/QskBoundedControl.h | 2 +- src/controls/QskBoundedInput.cpp | 2 +- src/controls/QskBoundedInput.h | 2 +- src/controls/QskBoundedRangeInput.cpp | 2 +- src/controls/QskBoundedRangeInput.h | 2 +- src/controls/QskBoundedValueInput.cpp | 2 +- src/controls/QskBoundedValueInput.h | 2 +- src/controls/QskBox.cpp | 2 +- src/controls/QskBox.h | 2 +- src/controls/QskBoxSkinlet.cpp | 2 +- src/controls/QskBoxSkinlet.h | 2 +- src/controls/QskCheckBox.cpp | 2 +- src/controls/QskCheckBox.h | 2 +- src/controls/QskCheckBoxSkinlet.cpp | 2 +- src/controls/QskCheckBoxSkinlet.h | 2 +- src/controls/QskComboBox.cpp | 2 +- src/controls/QskComboBox.h | 2 +- src/controls/QskComboBoxSkinlet.cpp | 2 +- src/controls/QskComboBoxSkinlet.h | 2 +- src/controls/QskControl.cpp | 2 +- src/controls/QskControl.h | 2 +- src/controls/QskControlPrivate.cpp | 2 +- src/controls/QskControlPrivate.h | 2 +- src/controls/QskDirtyItemFilter.cpp | 2 +- src/controls/QskDirtyItemFilter.h | 2 +- src/controls/QskDrawer.cpp | 2 +- src/controls/QskDrawer.h | 2 +- src/controls/QskDrawerSkinlet.cpp | 2 +- src/controls/QskDrawerSkinlet.h | 2 +- src/controls/QskEvent.cpp | 2 +- src/controls/QskEvent.h | 2 +- src/controls/QskFlickAnimator.cpp | 2 +- src/controls/QskFlickAnimator.h | 2 +- src/controls/QskFocusIndicator.cpp | 2 +- src/controls/QskFocusIndicator.h | 2 +- src/controls/QskFocusIndicatorSkinlet.cpp | 2 +- src/controls/QskFocusIndicatorSkinlet.h | 2 +- src/controls/QskGesture.cpp | 2 +- src/controls/QskGesture.h | 2 +- src/controls/QskGestureRecognizer.cpp | 2 +- src/controls/QskGestureRecognizer.h | 2 +- src/controls/QskGraphicLabel.cpp | 2 +- src/controls/QskGraphicLabel.h | 2 +- src/controls/QskGraphicLabelSkinlet.cpp | 2 +- src/controls/QskGraphicLabelSkinlet.h | 2 +- src/controls/QskHintAnimator.cpp | 2 +- src/controls/QskHintAnimator.h | 2 +- src/controls/QskInputGrabber.cpp | 2 +- src/controls/QskInputGrabber.h | 2 +- src/controls/QskListView.cpp | 2 +- src/controls/QskListView.h | 2 +- src/controls/QskListViewSkinlet.cpp | 2 +- src/controls/QskListViewSkinlet.h | 2 +- src/controls/QskMainView.cpp | 2 +- src/controls/QskMainView.h | 2 +- src/controls/QskMenu.cpp | 2 +- src/controls/QskMenu.h | 2 +- src/controls/QskMenuSkinlet.cpp | 2 +- src/controls/QskMenuSkinlet.h | 2 +- src/controls/QskObjectTree.cpp | 2 +- src/controls/QskObjectTree.h | 2 +- src/controls/QskPageIndicator.cpp | 2 +- src/controls/QskPageIndicator.h | 2 +- src/controls/QskPageIndicatorSkinlet.cpp | 2 +- src/controls/QskPageIndicatorSkinlet.h | 2 +- src/controls/QskPanGestureRecognizer.cpp | 2 +- src/controls/QskPanGestureRecognizer.h | 2 +- src/controls/QskPopup.cpp | 2 +- src/controls/QskPopup.h | 2 +- src/controls/QskPopupSkinlet.cpp | 2 +- src/controls/QskPopupSkinlet.h | 2 +- src/controls/QskProgressBar.cpp | 2 +- src/controls/QskProgressBar.h | 2 +- src/controls/QskProgressBarSkinlet.cpp | 2 +- src/controls/QskProgressBarSkinlet.h | 2 +- src/controls/QskProgressIndicator.cpp | 2 +- src/controls/QskProgressIndicator.h | 2 +- src/controls/QskProgressIndicatorSkinlet.cpp | 2 +- src/controls/QskProgressIndicatorSkinlet.h | 2 +- src/controls/QskProgressRing.cpp | 2 +- src/controls/QskProgressRing.h | 2 +- src/controls/QskProgressRingSkinlet.cpp | 2 +- src/controls/QskProgressRingSkinlet.h | 2 +- src/controls/QskPushButton.cpp | 2 +- src/controls/QskPushButton.h | 2 +- src/controls/QskPushButtonSkinlet.cpp | 2 +- src/controls/QskPushButtonSkinlet.h | 2 +- src/controls/QskQuick.cpp | 2 +- src/controls/QskQuick.h | 2 +- src/controls/QskQuickItem.cpp | 2 +- src/controls/QskQuickItem.h | 2 +- src/controls/QskQuickItemPrivate.cpp | 2 +- src/controls/QskQuickItemPrivate.h | 2 +- src/controls/QskRadioBox.cpp | 2 +- src/controls/QskRadioBox.h | 2 +- src/controls/QskRadioBoxSkinlet.cpp | 2 +- src/controls/QskRadioBoxSkinlet.h | 2 +- src/controls/QskScrollArea.cpp | 2 +- src/controls/QskScrollArea.h | 2 +- src/controls/QskScrollBox.cpp | 2 +- src/controls/QskScrollBox.h | 2 +- src/controls/QskScrollView.cpp | 2 +- src/controls/QskScrollView.h | 2 +- src/controls/QskScrollViewSkinlet.cpp | 2 +- src/controls/QskScrollViewSkinlet.h | 2 +- src/controls/QskSegmentedBar.cpp | 2 +- src/controls/QskSegmentedBar.h | 2 +- src/controls/QskSegmentedBarSkinlet.cpp | 2 +- src/controls/QskSegmentedBarSkinlet.h | 2 +- src/controls/QskSeparator.cpp | 2 +- src/controls/QskSeparator.h | 2 +- src/controls/QskSeparatorSkinlet.cpp | 2 +- src/controls/QskSeparatorSkinlet.h | 2 +- src/controls/QskSetup.cpp | 2 +- src/controls/QskSetup.h | 2 +- src/controls/QskShortcutMap.cpp | 2 +- src/controls/QskShortcutMap.h | 2 +- src/controls/QskSimpleListBox.cpp | 2 +- src/controls/QskSimpleListBox.h | 2 +- src/controls/QskSkin.cpp | 2 +- src/controls/QskSkin.h | 2 +- src/controls/QskSkinFactory.cpp | 2 +- src/controls/QskSkinFactory.h | 2 +- src/controls/QskSkinHintTable.cpp | 2 +- src/controls/QskSkinHintTable.h | 2 +- src/controls/QskSkinHintTableEditor.cpp | 2 +- src/controls/QskSkinHintTableEditor.h | 2 +- src/controls/QskSkinManager.cpp | 2 +- src/controls/QskSkinManager.h | 2 +- src/controls/QskSkinStateChanger.h | 2 +- src/controls/QskSkinTransition.cpp | 2 +- src/controls/QskSkinTransition.h | 5 +++++ src/controls/QskSkinlet.cpp | 2 +- src/controls/QskSkinlet.h | 2 +- src/controls/QskSkinnable.cpp | 2 +- src/controls/QskSkinnable.h | 2 +- src/controls/QskSlider.cpp | 2 +- src/controls/QskSlider.h | 2 +- src/controls/QskSliderSkinlet.cpp | 2 +- src/controls/QskSliderSkinlet.h | 2 +- src/controls/QskSpinBox.cpp | 2 +- src/controls/QskSpinBox.h | 2 +- src/controls/QskSpinBoxSkinlet.cpp | 2 +- src/controls/QskSpinBoxSkinlet.h | 2 +- src/controls/QskStatusIndicator.cpp | 2 +- src/controls/QskStatusIndicator.h | 2 +- src/controls/QskStatusIndicatorSkinlet.cpp | 2 +- src/controls/QskStatusIndicatorSkinlet.h | 2 +- src/controls/QskSubWindow.cpp | 2 +- src/controls/QskSubWindow.h | 2 +- src/controls/QskSubWindowArea.cpp | 2 +- src/controls/QskSubWindowArea.h | 2 +- src/controls/QskSubWindowAreaSkinlet.cpp | 2 +- src/controls/QskSubWindowAreaSkinlet.h | 2 +- src/controls/QskSubWindowSkinlet.cpp | 2 +- src/controls/QskSubWindowSkinlet.h | 2 +- src/controls/QskSwipeView.cpp | 2 +- src/controls/QskSwipeView.h | 2 +- src/controls/QskSwitchButton.cpp | 5 +++++ src/controls/QskSwitchButton.h | 5 +++++ src/controls/QskSwitchButtonSkinlet.cpp | 2 +- src/controls/QskSwitchButtonSkinlet.h | 2 +- src/controls/QskTabBar.cpp | 2 +- src/controls/QskTabBar.h | 2 +- src/controls/QskTabButton.cpp | 2 +- src/controls/QskTabButton.h | 2 +- src/controls/QskTabButtonSkinlet.cpp | 2 +- src/controls/QskTabButtonSkinlet.h | 2 +- src/controls/QskTabView.cpp | 2 +- src/controls/QskTabView.h | 2 +- src/controls/QskTabViewSkinlet.cpp | 2 +- src/controls/QskTabViewSkinlet.h | 2 +- src/controls/QskTextInput.cpp | 2 +- src/controls/QskTextInput.h | 2 +- src/controls/QskTextInputSkinlet.cpp | 2 +- src/controls/QskTextInputSkinlet.h | 2 +- src/controls/QskTextLabel.cpp | 2 +- src/controls/QskTextLabel.h | 2 +- src/controls/QskTextLabelSkinlet.cpp | 2 +- src/controls/QskTextLabelSkinlet.h | 2 +- src/controls/QskVariantAnimator.cpp | 2 +- src/controls/QskVariantAnimator.h | 2 +- src/controls/QskWindow.cpp | 2 +- src/controls/QskWindow.h | 2 +- src/dialogs/QskDialog.cpp | 2 +- src/dialogs/QskDialog.h | 2 +- src/dialogs/QskDialogButton.cpp | 2 +- src/dialogs/QskDialogButton.h | 2 +- src/dialogs/QskDialogButtonBox.cpp | 2 +- src/dialogs/QskDialogButtonBox.h | 2 +- src/dialogs/QskDialogSubWindow.cpp | 2 +- src/dialogs/QskDialogSubWindow.h | 2 +- src/dialogs/QskDialogWindow.cpp | 2 +- src/dialogs/QskDialogWindow.h | 2 +- src/dialogs/QskMessageSubWindow.cpp | 2 +- src/dialogs/QskMessageSubWindow.h | 2 +- src/dialogs/QskMessageWindow.cpp | 2 +- src/dialogs/QskMessageWindow.h | 2 +- src/dialogs/QskSelectionSubWindow.cpp | 2 +- src/dialogs/QskSelectionSubWindow.h | 2 +- src/dialogs/QskSelectionWindow.cpp | 2 +- src/dialogs/QskSelectionWindow.h | 2 +- src/graphic/QskColorFilter.cpp | 2 +- src/graphic/QskColorFilter.h | 2 +- src/graphic/QskGraphic.cpp | 2 +- src/graphic/QskGraphic.h | 2 +- src/graphic/QskGraphicIO.cpp | 2 +- src/graphic/QskGraphicIO.h | 2 +- src/graphic/QskGraphicImageProvider.cpp | 2 +- src/graphic/QskGraphicImageProvider.h | 2 +- src/graphic/QskGraphicPaintEngine.cpp | 2 +- src/graphic/QskGraphicPaintEngine.h | 2 +- src/graphic/QskGraphicProvider.cpp | 2 +- src/graphic/QskGraphicProvider.h | 2 +- src/graphic/QskGraphicProviderMap.cpp | 2 +- src/graphic/QskGraphicProviderMap.h | 2 +- src/graphic/QskGraphicTextureFactory.cpp | 2 +- src/graphic/QskGraphicTextureFactory.h | 2 +- src/graphic/QskIcon.cpp | 2 +- src/graphic/QskIcon.h | 2 +- src/graphic/QskPainterCommand.cpp | 2 +- src/graphic/QskPainterCommand.h | 2 +- src/graphic/QskStandardSymbol.cpp | 2 +- src/graphic/QskStandardSymbol.h | 2 +- src/inputpanel/QskHunspellTextPredictor.cpp | 2 +- src/inputpanel/QskHunspellTextPredictor.h | 2 +- src/inputpanel/QskInputContext.cpp | 2 +- src/inputpanel/QskInputContext.h | 2 +- src/inputpanel/QskInputPanel.cpp | 2 +- src/inputpanel/QskInputPanel.h | 2 +- src/inputpanel/QskInputPanelBox.cpp | 2 +- src/inputpanel/QskInputPanelBox.h | 2 +- src/inputpanel/QskInputPredictionBar.cpp | 2 +- src/inputpanel/QskInputPredictionBar.h | 2 +- src/inputpanel/QskPinyinTextPredictor.cpp | 2 +- src/inputpanel/QskPinyinTextPredictor.h | 2 +- src/inputpanel/QskTextPredictor.cpp | 2 +- src/inputpanel/QskTextPredictor.h | 2 +- src/inputpanel/QskVirtualKeyboard.cpp | 2 +- src/inputpanel/QskVirtualKeyboard.h | 2 +- src/inputpanel/QskVirtualKeyboardLayouts.cpp | 2 +- src/layouts/QskGridBox.cpp | 2 +- src/layouts/QskGridBox.h | 2 +- src/layouts/QskGridLayoutEngine.cpp | 2 +- src/layouts/QskGridLayoutEngine.h | 2 +- src/layouts/QskIndexedLayoutBox.cpp | 2 +- src/layouts/QskIndexedLayoutBox.h | 2 +- src/layouts/QskLayoutChain.cpp | 2 +- src/layouts/QskLayoutChain.h | 2 +- src/layouts/QskLayoutElement.cpp | 2 +- src/layouts/QskLayoutElement.h | 2 +- src/layouts/QskLayoutEngine2D.cpp | 2 +- src/layouts/QskLayoutEngine2D.h | 2 +- src/layouts/QskLayoutMetrics.cpp | 2 +- src/layouts/QskLayoutMetrics.h | 2 +- src/layouts/QskLinearBox.cpp | 2 +- src/layouts/QskLinearBox.h | 2 +- src/layouts/QskLinearLayoutEngine.cpp | 2 +- src/layouts/QskLinearLayoutEngine.h | 2 +- src/layouts/QskStackBox.cpp | 2 +- src/layouts/QskStackBox.h | 2 +- src/layouts/QskStackBoxAnimator.cpp | 2 +- src/layouts/QskStackBoxAnimator.h | 2 +- src/layouts/QskSubcontrolLayoutEngine.cpp | 2 +- src/layouts/QskSubcontrolLayoutEngine.h | 2 +- src/nodes/QskArcNode.cpp | 2 +- src/nodes/QskArcNode.h | 2 +- src/nodes/QskArcShadowNode.cpp | 2 +- src/nodes/QskArcShadowNode.h | 2 +- src/nodes/QskBasicLinesNode.cpp | 2 +- src/nodes/QskBasicLinesNode.h | 2 +- src/nodes/QskBoxBasicStroker.cpp | 2 +- src/nodes/QskBoxBasicStroker.h | 2 +- src/nodes/QskBoxClipNode.cpp | 2 +- src/nodes/QskBoxClipNode.h | 2 +- src/nodes/QskBoxColorMap.h | 2 +- src/nodes/QskBoxFillNode.cpp | 2 +- src/nodes/QskBoxFillNode.h | 2 +- src/nodes/QskBoxGradientStroker.cpp | 2 +- src/nodes/QskBoxGradientStroker.h | 2 +- src/nodes/QskBoxMetrics.cpp | 2 +- src/nodes/QskBoxMetrics.h | 2 +- src/nodes/QskBoxNode.cpp | 2 +- src/nodes/QskBoxNode.h | 2 +- src/nodes/QskBoxRectangleNode.cpp | 2 +- src/nodes/QskBoxRectangleNode.h | 2 +- src/nodes/QskBoxRenderer.cpp | 2 +- src/nodes/QskBoxRenderer.h | 2 +- src/nodes/QskBoxShadowNode.cpp | 2 +- src/nodes/QskBoxShadowNode.h | 2 +- src/nodes/QskColorRamp.cpp | 2 +- src/nodes/QskColorRamp.h | 2 +- src/nodes/QskFillNode.cpp | 2 +- src/nodes/QskFillNode.h | 2 +- src/nodes/QskFillNodePrivate.h | 2 +- src/nodes/QskGradientMaterial.cpp | 2 +- src/nodes/QskGradientMaterial.h | 2 +- src/nodes/QskGraduationNode.cpp | 2 +- src/nodes/QskGraduationNode.h | 2 +- src/nodes/QskGraduationRenderer.cpp | 2 +- src/nodes/QskGraduationRenderer.h | 2 +- src/nodes/QskGraphicNode.cpp | 2 +- src/nodes/QskGraphicNode.h | 2 +- src/nodes/QskLinesNode.cpp | 2 +- src/nodes/QskLinesNode.h | 2 +- src/nodes/QskPaintedNode.cpp | 2 +- src/nodes/QskPaintedNode.h | 2 +- src/nodes/QskPlainTextRenderer.cpp | 2 +- src/nodes/QskPlainTextRenderer.h | 2 +- src/nodes/QskRectangleNode.cpp | 2 +- src/nodes/QskRectangleNode.h | 2 +- src/nodes/QskRichTextRenderer.cpp | 2 +- src/nodes/QskRichTextRenderer.h | 2 +- src/nodes/QskSGNode.cpp | 2 +- src/nodes/QskSGNode.h | 2 +- src/nodes/QskSceneTexture.cpp | 2 +- src/nodes/QskSceneTexture.h | 2 +- src/nodes/QskShapeNode.cpp | 2 +- src/nodes/QskShapeNode.h | 2 +- src/nodes/QskStippledLineRenderer.cpp | 2 +- src/nodes/QskStippledLineRenderer.h | 2 +- src/nodes/QskStrokeNode.cpp | 2 +- src/nodes/QskStrokeNode.h | 2 +- src/nodes/QskTextNode.cpp | 2 +- src/nodes/QskTextNode.h | 2 +- src/nodes/QskTextRenderer.cpp | 2 +- src/nodes/QskTextRenderer.h | 2 +- src/nodes/QskTextureRenderer.cpp | 2 +- src/nodes/QskTextureRenderer.h | 2 +- src/nodes/QskTreeNode.cpp | 2 +- src/nodes/QskTreeNode.h | 2 +- src/nodes/QskVertex.cpp | 2 +- src/nodes/QskVertex.h | 2 +- support/CMakeLists.txt | 2 +- support/SkinnyGlobal.h | 2 +- support/SkinnyNamespace.cpp | 2 +- support/SkinnyNamespace.h | 2 +- support/SkinnyShapeFactory.cpp | 2 +- support/SkinnyShapeFactory.h | 2 +- support/SkinnyShapeProvider.cpp | 2 +- support/SkinnyShapeProvider.h | 2 +- support/SkinnyShortcut.cpp | 5 +++++ support/SkinnyShortcut.h | 2 +- tools/svg2qvg/CMakeLists.txt | 2 +- tools/svg2qvg/main.cpp | 2 +- 644 files changed, 705 insertions(+), 660 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d1eeaab..539979e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/cmake/QSkinnyTools.cmake b/cmake/QSkinnyTools.cmake index ab6bc25b..119ca7c3 100644 --- a/cmake/QSkinnyTools.cmake +++ b/cmake/QSkinnyTools.cmake @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/cmake/QskBuildFunctions.cmake b/cmake/QskBuildFunctions.cmake index dddf0004..ca679293 100644 --- a/cmake/QskBuildFunctions.cmake +++ b/cmake/QskBuildFunctions.cmake @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/cmake/QskConfigMacros.cmake b/cmake/QskConfigMacros.cmake index 8cc8992b..6b9261cc 100644 --- a/cmake/QskConfigMacros.cmake +++ b/cmake/QskConfigMacros.cmake @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/cmake/QskFindMacros.cmake b/cmake/QskFindMacros.cmake index b27d24d2..f2791254 100644 --- a/cmake/QskFindMacros.cmake +++ b/cmake/QskFindMacros.cmake @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index a9951719..e9419b42 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/boxes/Box.cpp b/examples/boxes/Box.cpp index e4a336ba..991a8651 100644 --- a/examples/boxes/Box.cpp +++ b/examples/boxes/Box.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/boxes/Box.h b/examples/boxes/Box.h index ffc85ad0..ede059c5 100644 --- a/examples/boxes/Box.h +++ b/examples/boxes/Box.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/boxes/CMakeLists.txt b/examples/boxes/CMakeLists.txt index 9ad84b97..3618cb1d 100644 --- a/examples/boxes/CMakeLists.txt +++ b/examples/boxes/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/boxes/main.cpp b/examples/boxes/main.cpp index a7ca9108..cfb52c1e 100644 --- a/examples/boxes/main.cpp +++ b/examples/boxes/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/buttons/CMakeLists.txt b/examples/buttons/CMakeLists.txt index 5e6d8ffa..520b2fb3 100644 --- a/examples/buttons/CMakeLists.txt +++ b/examples/buttons/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/buttons/main.cpp b/examples/buttons/main.cpp index 517976d9..ecf1f8ce 100644 --- a/examples/buttons/main.cpp +++ b/examples/buttons/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/desktop/CMakeLists.txt b/examples/desktop/CMakeLists.txt index 92141750..5a99225b 100644 --- a/examples/desktop/CMakeLists.txt +++ b/examples/desktop/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/desktop/main.cpp b/examples/desktop/main.cpp index 5d1351bb..f5d37909 100644 --- a/examples/desktop/main.cpp +++ b/examples/desktop/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/frames/CMakeLists.txt b/examples/frames/CMakeLists.txt index 467cc3b5..18b1081a 100644 --- a/examples/frames/CMakeLists.txt +++ b/examples/frames/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/frames/Frame.cpp b/examples/frames/Frame.cpp index 45f2b170..ecbfcb1f 100644 --- a/examples/frames/Frame.cpp +++ b/examples/frames/Frame.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/frames/Frame.h b/examples/frames/Frame.h index 44a631e8..b7cba2c9 100644 --- a/examples/frames/Frame.h +++ b/examples/frames/Frame.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/frames/main.cpp b/examples/frames/main.cpp index 2dd76ba4..72af953a 100644 --- a/examples/frames/main.cpp +++ b/examples/frames/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/CMakeLists.txt b/examples/gallery/CMakeLists.txt index e229a560..4941b1ff 100644 --- a/examples/gallery/CMakeLists.txt +++ b/examples/gallery/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/gallery/Page.cpp b/examples/gallery/Page.cpp index 757e60b6..1b32a3db 100644 --- a/examples/gallery/Page.cpp +++ b/examples/gallery/Page.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/Page.h b/examples/gallery/Page.h index 6a825e9e..774a0628 100644 --- a/examples/gallery/Page.h +++ b/examples/gallery/Page.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/button/ButtonPage.cpp b/examples/gallery/button/ButtonPage.cpp index 047802af..7ba35788 100644 --- a/examples/gallery/button/ButtonPage.cpp +++ b/examples/gallery/button/ButtonPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/button/ButtonPage.h b/examples/gallery/button/ButtonPage.h index ed805bb6..ee94ecce 100644 --- a/examples/gallery/button/ButtonPage.h +++ b/examples/gallery/button/ButtonPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/dialog/DialogPage.cpp b/examples/gallery/dialog/DialogPage.cpp index 0e9e7946..d2dccd1e 100644 --- a/examples/gallery/dialog/DialogPage.cpp +++ b/examples/gallery/dialog/DialogPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/dialog/DialogPage.h b/examples/gallery/dialog/DialogPage.h index ca52dcdf..46a42cb8 100644 --- a/examples/gallery/dialog/DialogPage.h +++ b/examples/gallery/dialog/DialogPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/inputs/InputPage.cpp b/examples/gallery/inputs/InputPage.cpp index 3e19e1ee..efc52e11 100644 --- a/examples/gallery/inputs/InputPage.cpp +++ b/examples/gallery/inputs/InputPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/inputs/InputPage.h b/examples/gallery/inputs/InputPage.h index 6e0357ec..1899a679 100644 --- a/examples/gallery/inputs/InputPage.h +++ b/examples/gallery/inputs/InputPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/label/LabelPage.cpp b/examples/gallery/label/LabelPage.cpp index 4754b3ce..f009b098 100644 --- a/examples/gallery/label/LabelPage.cpp +++ b/examples/gallery/label/LabelPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/label/LabelPage.h b/examples/gallery/label/LabelPage.h index 89f31d6c..b25cc549 100644 --- a/examples/gallery/label/LabelPage.h +++ b/examples/gallery/label/LabelPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/listbox/ListBoxPage.cpp b/examples/gallery/listbox/ListBoxPage.cpp index 4393e32e..455d2afc 100644 --- a/examples/gallery/listbox/ListBoxPage.cpp +++ b/examples/gallery/listbox/ListBoxPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/listbox/ListBoxPage.h b/examples/gallery/listbox/ListBoxPage.h index 0fc44927..5bc55248 100644 --- a/examples/gallery/listbox/ListBoxPage.h +++ b/examples/gallery/listbox/ListBoxPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/main.cpp b/examples/gallery/main.cpp index 6861c778..17a91c07 100644 --- a/examples/gallery/main.cpp +++ b/examples/gallery/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/progressbar/ProgressBarPage.cpp b/examples/gallery/progressbar/ProgressBarPage.cpp index 8655343b..668f4996 100644 --- a/examples/gallery/progressbar/ProgressBarPage.cpp +++ b/examples/gallery/progressbar/ProgressBarPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/progressbar/ProgressBarPage.h b/examples/gallery/progressbar/ProgressBarPage.h index 7f18c15a..82c883c5 100644 --- a/examples/gallery/progressbar/ProgressBarPage.h +++ b/examples/gallery/progressbar/ProgressBarPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/selector/SelectorPage.cpp b/examples/gallery/selector/SelectorPage.cpp index 6a1c4d88..32797ba6 100644 --- a/examples/gallery/selector/SelectorPage.cpp +++ b/examples/gallery/selector/SelectorPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/gallery/selector/SelectorPage.h b/examples/gallery/selector/SelectorPage.h index 740921f0..c51678be 100644 --- a/examples/gallery/selector/SelectorPage.h +++ b/examples/gallery/selector/SelectorPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/glabels/CMakeLists.txt b/examples/glabels/CMakeLists.txt index e9e9ca76..a69cbeb2 100644 --- a/examples/glabels/CMakeLists.txt +++ b/examples/glabels/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/glabels/main.cpp b/examples/glabels/main.cpp index 0885bc30..c8c1c09b 100644 --- a/examples/glabels/main.cpp +++ b/examples/glabels/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/iotdashboard/MainItem.h b/examples/iotdashboard/MainItem.h index feb6ef5d..388c2541 100644 --- a/examples/iotdashboard/MainItem.h +++ b/examples/iotdashboard/MainItem.h @@ -1,3 +1,8 @@ +/****************************************************************************** + * Copyright (C) 2021 Edelhirsch Software GmbH + * SPDX-License-Identifier: BSD-3-Clause + *****************************************************************************/ + #pragma once #include diff --git a/examples/layouts/ButtonBox.cpp b/examples/layouts/ButtonBox.cpp index c63cf67b..c3eb5329 100644 --- a/examples/layouts/ButtonBox.cpp +++ b/examples/layouts/ButtonBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/ButtonBox.h b/examples/layouts/ButtonBox.h index 45622593..6464356f 100644 --- a/examples/layouts/ButtonBox.h +++ b/examples/layouts/ButtonBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/CMakeLists.txt b/examples/layouts/CMakeLists.txt index a4b57bc3..9b80459c 100644 --- a/examples/layouts/CMakeLists.txt +++ b/examples/layouts/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/layouts/DynamicConstraintsPage.cpp b/examples/layouts/DynamicConstraintsPage.cpp index 06fce56d..a05c88af 100644 --- a/examples/layouts/DynamicConstraintsPage.cpp +++ b/examples/layouts/DynamicConstraintsPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/DynamicConstraintsPage.h b/examples/layouts/DynamicConstraintsPage.h index 773fa8d2..6e583747 100644 --- a/examples/layouts/DynamicConstraintsPage.h +++ b/examples/layouts/DynamicConstraintsPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/FlowLayoutPage.cpp b/examples/layouts/FlowLayoutPage.cpp index 8fba6a29..07baff86 100644 --- a/examples/layouts/FlowLayoutPage.cpp +++ b/examples/layouts/FlowLayoutPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/FlowLayoutPage.h b/examples/layouts/FlowLayoutPage.h index a75f99cf..9500f8d5 100644 --- a/examples/layouts/FlowLayoutPage.h +++ b/examples/layouts/FlowLayoutPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/GridLayoutPage.cpp b/examples/layouts/GridLayoutPage.cpp index 22b28867..e3f791c1 100644 --- a/examples/layouts/GridLayoutPage.cpp +++ b/examples/layouts/GridLayoutPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/GridLayoutPage.h b/examples/layouts/GridLayoutPage.h index f1748c48..9690d752 100644 --- a/examples/layouts/GridLayoutPage.h +++ b/examples/layouts/GridLayoutPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/LinearLayoutPage.cpp b/examples/layouts/LinearLayoutPage.cpp index 71ffe6a5..3b348aa4 100644 --- a/examples/layouts/LinearLayoutPage.cpp +++ b/examples/layouts/LinearLayoutPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/LinearLayoutPage.h b/examples/layouts/LinearLayoutPage.h index b0c32786..0facf930 100644 --- a/examples/layouts/LinearLayoutPage.h +++ b/examples/layouts/LinearLayoutPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/StackLayoutPage.cpp b/examples/layouts/StackLayoutPage.cpp index 39241fb4..7d593c95 100644 --- a/examples/layouts/StackLayoutPage.cpp +++ b/examples/layouts/StackLayoutPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/StackLayoutPage.h b/examples/layouts/StackLayoutPage.h index 3e90a82b..cf75d298 100644 --- a/examples/layouts/StackLayoutPage.h +++ b/examples/layouts/StackLayoutPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/SwipeViewPage.cpp b/examples/layouts/SwipeViewPage.cpp index 9ce05c65..328bd2e0 100644 --- a/examples/layouts/SwipeViewPage.cpp +++ b/examples/layouts/SwipeViewPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/SwipeViewPage.h b/examples/layouts/SwipeViewPage.h index 02ce94dd..c608824e 100644 --- a/examples/layouts/SwipeViewPage.h +++ b/examples/layouts/SwipeViewPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/TestRectangle.cpp b/examples/layouts/TestRectangle.cpp index a0b85c83..e1232206 100644 --- a/examples/layouts/TestRectangle.cpp +++ b/examples/layouts/TestRectangle.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/TestRectangle.h b/examples/layouts/TestRectangle.h index 0cbd64a3..c451bdb4 100644 --- a/examples/layouts/TestRectangle.h +++ b/examples/layouts/TestRectangle.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/layouts/main.cpp b/examples/layouts/main.cpp index 5af6b1e2..971429fa 100644 --- a/examples/layouts/main.cpp +++ b/examples/layouts/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/mycontrols/CMakeLists.txt b/examples/mycontrols/CMakeLists.txt index 0d566205..193f34d4 100644 --- a/examples/mycontrols/CMakeLists.txt +++ b/examples/mycontrols/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/mycontrols/MySkin.cpp b/examples/mycontrols/MySkin.cpp index 9fcaef8e..fadc8d79 100644 --- a/examples/mycontrols/MySkin.cpp +++ b/examples/mycontrols/MySkin.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/mycontrols/MySkin.h b/examples/mycontrols/MySkin.h index e28b08af..1c01e1ff 100644 --- a/examples/mycontrols/MySkin.h +++ b/examples/mycontrols/MySkin.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/mycontrols/MyToggleButton.cpp b/examples/mycontrols/MyToggleButton.cpp index 33cd7b9e..4619e1c3 100644 --- a/examples/mycontrols/MyToggleButton.cpp +++ b/examples/mycontrols/MyToggleButton.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/mycontrols/MyToggleButton.h b/examples/mycontrols/MyToggleButton.h index 634e3a7c..ccee81ef 100644 --- a/examples/mycontrols/MyToggleButton.h +++ b/examples/mycontrols/MyToggleButton.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/mycontrols/MyToggleButtonSkinlet.cpp b/examples/mycontrols/MyToggleButtonSkinlet.cpp index ec846467..115f5ac9 100644 --- a/examples/mycontrols/MyToggleButtonSkinlet.cpp +++ b/examples/mycontrols/MyToggleButtonSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/mycontrols/MyToggleButtonSkinlet.h b/examples/mycontrols/MyToggleButtonSkinlet.h index ce35dc6d..ad57e5d4 100644 --- a/examples/mycontrols/MyToggleButtonSkinlet.h +++ b/examples/mycontrols/MyToggleButtonSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/mycontrols/main.cpp b/examples/mycontrols/main.cpp index e8795648..c57914f7 100644 --- a/examples/mycontrols/main.cpp +++ b/examples/mycontrols/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/qvgviewer/CMakeLists.txt b/examples/qvgviewer/CMakeLists.txt index 2c11863f..2ff2c0d8 100644 --- a/examples/qvgviewer/CMakeLists.txt +++ b/examples/qvgviewer/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/qvgviewer/MainWindow.cpp b/examples/qvgviewer/MainWindow.cpp index 1a53bef4..bd32d95f 100644 --- a/examples/qvgviewer/MainWindow.cpp +++ b/examples/qvgviewer/MainWindow.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/qvgviewer/MainWindow.h b/examples/qvgviewer/MainWindow.h index 458d4601..aca9d988 100644 --- a/examples/qvgviewer/MainWindow.h +++ b/examples/qvgviewer/MainWindow.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/qvgviewer/main.cpp b/examples/qvgviewer/main.cpp index b5b6af36..9dc3ede2 100644 --- a/examples/qvgviewer/main.cpp +++ b/examples/qvgviewer/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/tabview/CMakeLists.txt b/examples/tabview/CMakeLists.txt index 0de6ffef..70e4c967 100644 --- a/examples/tabview/CMakeLists.txt +++ b/examples/tabview/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/tabview/CustomSlider.cpp b/examples/tabview/CustomSlider.cpp index de9c56cb..aedfec13 100644 --- a/examples/tabview/CustomSlider.cpp +++ b/examples/tabview/CustomSlider.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/tabview/CustomSlider.h b/examples/tabview/CustomSlider.h index a3935b49..628a171e 100644 --- a/examples/tabview/CustomSlider.h +++ b/examples/tabview/CustomSlider.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/tabview/CustomSliderSkinlet.cpp b/examples/tabview/CustomSliderSkinlet.cpp index 3dc52ae8..af511854 100644 --- a/examples/tabview/CustomSliderSkinlet.cpp +++ b/examples/tabview/CustomSliderSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/tabview/CustomSliderSkinlet.h b/examples/tabview/CustomSliderSkinlet.h index 369c5456..deb23a6f 100644 --- a/examples/tabview/CustomSliderSkinlet.h +++ b/examples/tabview/CustomSliderSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/tabview/OtherSlider.cpp b/examples/tabview/OtherSlider.cpp index 97c93b8c..b8c7f157 100644 --- a/examples/tabview/OtherSlider.cpp +++ b/examples/tabview/OtherSlider.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/tabview/OtherSlider.h b/examples/tabview/OtherSlider.h index ebdb4ed3..0cb01910 100644 --- a/examples/tabview/OtherSlider.h +++ b/examples/tabview/OtherSlider.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/tabview/main.cpp b/examples/tabview/main.cpp index 020fe49f..1311650d 100644 --- a/examples/tabview/main.cpp +++ b/examples/tabview/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/examples/thumbnails/CMakeLists.txt b/examples/thumbnails/CMakeLists.txt index 8476ae68..4d9b7ef8 100644 --- a/examples/thumbnails/CMakeLists.txt +++ b/examples/thumbnails/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/examples/thumbnails/main.cpp b/examples/thumbnails/main.cpp index 4c577de0..98e0f78a 100644 --- a/examples/thumbnails/main.cpp +++ b/examples/thumbnails/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/inputcontext/CMakeLists.txt b/inputcontext/CMakeLists.txt index 43a9db6d..0c1a7490 100644 --- a/inputcontext/CMakeLists.txt +++ b/inputcontext/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/inputcontext/QskInputContextGlobal.h b/inputcontext/QskInputContextGlobal.h index 2e1437e6..acc2d3eb 100644 --- a/inputcontext/QskInputContextGlobal.h +++ b/inputcontext/QskInputContextGlobal.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/inputcontext/QskInputContextPlugin.cpp b/inputcontext/QskInputContextPlugin.cpp index 8d7d9e0e..18412cf3 100644 --- a/inputcontext/QskInputContextPlugin.cpp +++ b/inputcontext/QskInputContextPlugin.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/anchors/AnchorBox.cpp b/playground/anchors/AnchorBox.cpp index 86101900..27127230 100644 --- a/playground/anchors/AnchorBox.cpp +++ b/playground/anchors/AnchorBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/anchors/AnchorBox.h b/playground/anchors/AnchorBox.h index f44093ce..3a501daa 100644 --- a/playground/anchors/AnchorBox.h +++ b/playground/anchors/AnchorBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/anchors/CMakeLists.txt b/playground/anchors/CMakeLists.txt index 56dbb69f..02fdc7dd 100644 --- a/playground/anchors/CMakeLists.txt +++ b/playground/anchors/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/playground/anchors/main.cpp b/playground/anchors/main.cpp index 695b61d2..0675cd99 100644 --- a/playground/anchors/main.cpp +++ b/playground/anchors/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/charts/CMakeLists.txt b/playground/charts/CMakeLists.txt index bcbd2f24..7284c940 100644 --- a/playground/charts/CMakeLists.txt +++ b/playground/charts/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # This file may be used under the terms of the 3-clause BSD License ############################################################################ diff --git a/playground/charts/ChartSample.cpp b/playground/charts/ChartSample.cpp index f2e6a4f6..5db412a5 100644 --- a/playground/charts/ChartSample.cpp +++ b/playground/charts/ChartSample.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/charts/ChartSample.h b/playground/charts/ChartSample.h index 710128bd..08618283 100644 --- a/playground/charts/ChartSample.h +++ b/playground/charts/ChartSample.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/charts/ChartView.cpp b/playground/charts/ChartView.cpp index cbdc66cc..527f2a05 100644 --- a/playground/charts/ChartView.cpp +++ b/playground/charts/ChartView.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * This file may be used under the terms of the 3-clause BSD License *****************************************************************************/ diff --git a/playground/charts/ChartView.h b/playground/charts/ChartView.h index 808c6bd6..f947f5b5 100644 --- a/playground/charts/ChartView.h +++ b/playground/charts/ChartView.h @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once diff --git a/playground/charts/CircularChart.cpp b/playground/charts/CircularChart.cpp index 46b92ef1..c7f3b485 100644 --- a/playground/charts/CircularChart.cpp +++ b/playground/charts/CircularChart.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "CircularChart.h" diff --git a/playground/charts/CircularChart.h b/playground/charts/CircularChart.h index d51106be..b6f914aa 100644 --- a/playground/charts/CircularChart.h +++ b/playground/charts/CircularChart.h @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once diff --git a/playground/charts/CircularChartSkinlet.cpp b/playground/charts/CircularChartSkinlet.cpp index 79dc7217..736479a9 100644 --- a/playground/charts/CircularChartSkinlet.cpp +++ b/playground/charts/CircularChartSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/charts/CircularChartSkinlet.h b/playground/charts/CircularChartSkinlet.h index 5bc403d6..f9b43611 100644 --- a/playground/charts/CircularChartSkinlet.h +++ b/playground/charts/CircularChartSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/charts/StackedChart.cpp b/playground/charts/StackedChart.cpp index 9d984985..8fe9b7ae 100644 --- a/playground/charts/StackedChart.cpp +++ b/playground/charts/StackedChart.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * This file may be used under the terms of the 3-clause BSD License *****************************************************************************/ diff --git a/playground/charts/StackedChart.h b/playground/charts/StackedChart.h index 9efef84e..6ddc9270 100644 --- a/playground/charts/StackedChart.h +++ b/playground/charts/StackedChart.h @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once diff --git a/playground/charts/main.cpp b/playground/charts/main.cpp index 90ab4688..d9c14a88 100644 --- a/playground/charts/main.cpp +++ b/playground/charts/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * This file may be used under the terms of the 3-clause BSD License *****************************************************************************/ diff --git a/playground/dialogbuttons/CMakeLists.txt b/playground/dialogbuttons/CMakeLists.txt index 0f0bc6c3..68fa1e01 100644 --- a/playground/dialogbuttons/CMakeLists.txt +++ b/playground/dialogbuttons/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/playground/dialogbuttons/Window.cpp b/playground/dialogbuttons/Window.cpp index 0db8b6cb..99a53c2b 100644 --- a/playground/dialogbuttons/Window.cpp +++ b/playground/dialogbuttons/Window.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dialogbuttons/Window.h b/playground/dialogbuttons/Window.h index 6636595a..7c559595 100644 --- a/playground/dialogbuttons/Window.h +++ b/playground/dialogbuttons/Window.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dialogbuttons/main.cpp b/playground/dialogbuttons/main.cpp index b1d677d4..6d4c275c 100644 --- a/playground/dialogbuttons/main.cpp +++ b/playground/dialogbuttons/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dials/CMakeLists.txt b/playground/dials/CMakeLists.txt index b62b68ca..a7da047e 100644 --- a/playground/dials/CMakeLists.txt +++ b/playground/dials/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/playground/dials/Dashboard.cpp b/playground/dials/Dashboard.cpp index d2cfa22a..bf107885 100644 --- a/playground/dials/Dashboard.cpp +++ b/playground/dials/Dashboard.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dials/Dashboard.h b/playground/dials/Dashboard.h index 36db2c2f..19df011f 100644 --- a/playground/dials/Dashboard.h +++ b/playground/dials/Dashboard.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dials/Dial.cpp b/playground/dials/Dial.cpp index a88f510a..7c842183 100644 --- a/playground/dials/Dial.cpp +++ b/playground/dials/Dial.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dials/Dial.h b/playground/dials/Dial.h index bcc2152f..6bd58de7 100644 --- a/playground/dials/Dial.h +++ b/playground/dials/Dial.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dials/DialSkinlet.cpp b/playground/dials/DialSkinlet.cpp index 243145fe..a00175e2 100644 --- a/playground/dials/DialSkinlet.cpp +++ b/playground/dials/DialSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dials/DialSkinlet.h b/playground/dials/DialSkinlet.h index 6c261b0e..a24365af 100644 --- a/playground/dials/DialSkinlet.h +++ b/playground/dials/DialSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dials/MainWindow.h b/playground/dials/MainWindow.h index f45b6733..7cf65ab2 100644 --- a/playground/dials/MainWindow.h +++ b/playground/dials/MainWindow.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dials/SkinFactory.cpp b/playground/dials/SkinFactory.cpp index d0eac4a4..c03ef792 100644 --- a/playground/dials/SkinFactory.cpp +++ b/playground/dials/SkinFactory.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dials/SkinFactory.h b/playground/dials/SkinFactory.h index 6bb0f2fa..8d6209df 100644 --- a/playground/dials/SkinFactory.h +++ b/playground/dials/SkinFactory.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/dials/main.cpp b/playground/dials/main.cpp index 40624dd4..be866f01 100644 --- a/playground/dials/main.cpp +++ b/playground/dials/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/gradients/CMakeLists.txt b/playground/gradients/CMakeLists.txt index 26e4030b..cdbe015b 100644 --- a/playground/gradients/CMakeLists.txt +++ b/playground/gradients/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/playground/gradients/GradientQuickShape.cpp b/playground/gradients/GradientQuickShape.cpp index 6def8fe2..4261920a 100644 --- a/playground/gradients/GradientQuickShape.cpp +++ b/playground/gradients/GradientQuickShape.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/gradients/GradientQuickShape.h b/playground/gradients/GradientQuickShape.h index 013b7702..8053af39 100644 --- a/playground/gradients/GradientQuickShape.h +++ b/playground/gradients/GradientQuickShape.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/gradients/GradientView.cpp b/playground/gradients/GradientView.cpp index 3d969069..b067955e 100644 --- a/playground/gradients/GradientView.cpp +++ b/playground/gradients/GradientView.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/gradients/GradientView.h b/playground/gradients/GradientView.h index ed32af8e..89be3177 100644 --- a/playground/gradients/GradientView.h +++ b/playground/gradients/GradientView.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/gradients/main.cpp b/playground/gradients/main.cpp index a6ffaaaf..38f91695 100644 --- a/playground/gradients/main.cpp +++ b/playground/gradients/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/CMakeLists.txt b/playground/grids/CMakeLists.txt index 43132f1e..02021e7a 100644 --- a/playground/grids/CMakeLists.txt +++ b/playground/grids/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/playground/grids/GridAccessor.cpp b/playground/grids/GridAccessor.cpp index 273677eb..31c530f1 100644 --- a/playground/grids/GridAccessor.cpp +++ b/playground/grids/GridAccessor.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/GridAccessor.h b/playground/grids/GridAccessor.h index eaf827f2..f11fac74 100644 --- a/playground/grids/GridAccessor.h +++ b/playground/grids/GridAccessor.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/GridGraphics.cpp b/playground/grids/GridGraphics.cpp index 88d60a9c..1d73cbd2 100644 --- a/playground/grids/GridGraphics.cpp +++ b/playground/grids/GridGraphics.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/GridGraphics.h b/playground/grids/GridGraphics.h index 62be9c3b..30d00c83 100644 --- a/playground/grids/GridGraphics.h +++ b/playground/grids/GridGraphics.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/GridQuick.cpp b/playground/grids/GridQuick.cpp index 186156b8..f185860c 100644 --- a/playground/grids/GridQuick.cpp +++ b/playground/grids/GridQuick.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/GridQuick.h b/playground/grids/GridQuick.h index d7e8a02c..667fedee 100644 --- a/playground/grids/GridQuick.h +++ b/playground/grids/GridQuick.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/GridSkinny.cpp b/playground/grids/GridSkinny.cpp index 89e1d46a..d93068f0 100644 --- a/playground/grids/GridSkinny.cpp +++ b/playground/grids/GridSkinny.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/GridSkinny.h b/playground/grids/GridSkinny.h index 856d42d5..ed3e09d0 100644 --- a/playground/grids/GridSkinny.h +++ b/playground/grids/GridSkinny.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/GridWidgets.cpp b/playground/grids/GridWidgets.cpp index d989ca9e..bf1b9b7f 100644 --- a/playground/grids/GridWidgets.cpp +++ b/playground/grids/GridWidgets.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/GridWidgets.h b/playground/grids/GridWidgets.h index 9cd38f9a..4da2c3bd 100644 --- a/playground/grids/GridWidgets.h +++ b/playground/grids/GridWidgets.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/TestBox.cpp b/playground/grids/TestBox.cpp index a0086459..67aecd58 100644 --- a/playground/grids/TestBox.cpp +++ b/playground/grids/TestBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/TestBox.h b/playground/grids/TestBox.h index d22e37c1..8bd29c17 100644 --- a/playground/grids/TestBox.h +++ b/playground/grids/TestBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/grids/main.cpp b/playground/grids/main.cpp index 7ab3e575..faacad20 100644 --- a/playground/grids/main.cpp +++ b/playground/grids/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/images/CMakeLists.txt b/playground/images/CMakeLists.txt index 5db9372a..06fa0f77 100644 --- a/playground/images/CMakeLists.txt +++ b/playground/images/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/playground/images/Image.cpp b/playground/images/Image.cpp index 85c2d333..af083d9e 100644 --- a/playground/images/Image.cpp +++ b/playground/images/Image.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/images/Image.h b/playground/images/Image.h index 92c57e25..51be747a 100644 --- a/playground/images/Image.h +++ b/playground/images/Image.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/images/main.cpp b/playground/images/main.cpp index 6502590f..5db79527 100644 --- a/playground/images/main.cpp +++ b/playground/images/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/inputpanel/CMakeLists.txt b/playground/inputpanel/CMakeLists.txt index cd631634..dde327f3 100644 --- a/playground/inputpanel/CMakeLists.txt +++ b/playground/inputpanel/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/playground/inputpanel/main.cpp b/playground/inputpanel/main.cpp index 9948a048..eabc5362 100644 --- a/playground/inputpanel/main.cpp +++ b/playground/inputpanel/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/invoker/CMakeLists.txt b/playground/invoker/CMakeLists.txt index c9ec4a9f..5fe2155e 100644 --- a/playground/invoker/CMakeLists.txt +++ b/playground/invoker/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/playground/invoker/Callback.cpp b/playground/invoker/Callback.cpp index a485788a..1149aaf5 100644 --- a/playground/invoker/Callback.cpp +++ b/playground/invoker/Callback.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/invoker/Callback.h b/playground/invoker/Callback.h index 4da0c273..c2f185d2 100644 --- a/playground/invoker/Callback.h +++ b/playground/invoker/Callback.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/invoker/Invoker.cpp b/playground/invoker/Invoker.cpp index c959a230..0346dc3b 100644 --- a/playground/invoker/Invoker.cpp +++ b/playground/invoker/Invoker.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/invoker/Invoker.h b/playground/invoker/Invoker.h index 0f4ab012..3d826486 100644 --- a/playground/invoker/Invoker.h +++ b/playground/invoker/Invoker.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/invoker/main.cpp b/playground/invoker/main.cpp index 06292bb0..e296d19d 100644 --- a/playground/invoker/main.cpp +++ b/playground/invoker/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/CMakeLists.txt b/playground/plots/CMakeLists.txt index 9cc36159..66349be3 100644 --- a/playground/plots/CMakeLists.txt +++ b/playground/plots/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # This file may be used under the terms of the 3-clause BSD License ############################################################################ diff --git a/playground/plots/Plot.cpp b/playground/plots/Plot.cpp index c5723e24..5ba1b9cb 100644 --- a/playground/plots/Plot.cpp +++ b/playground/plots/Plot.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "Plot.h" diff --git a/playground/plots/Plot.h b/playground/plots/Plot.h index eac16e0b..5af34fca 100644 --- a/playground/plots/Plot.h +++ b/playground/plots/Plot.h @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once diff --git a/playground/plots/PlotCursor.cpp b/playground/plots/PlotCursor.cpp index dddb0b54..88591408 100644 --- a/playground/plots/PlotCursor.cpp +++ b/playground/plots/PlotCursor.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "PlotCursor.h" diff --git a/playground/plots/PlotCursor.h b/playground/plots/PlotCursor.h index 1c784693..cb310507 100644 --- a/playground/plots/PlotCursor.h +++ b/playground/plots/PlotCursor.h @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once diff --git a/playground/plots/PlotCursorSkinlet.cpp b/playground/plots/PlotCursorSkinlet.cpp index e0660937..48095c24 100644 --- a/playground/plots/PlotCursorSkinlet.cpp +++ b/playground/plots/PlotCursorSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/PlotCursorSkinlet.h b/playground/plots/PlotCursorSkinlet.h index b3e03b77..17ac04cb 100644 --- a/playground/plots/PlotCursorSkinlet.h +++ b/playground/plots/PlotCursorSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/PlotSkin.cpp b/playground/plots/PlotSkin.cpp index 968d0565..4ff8b1d2 100644 --- a/playground/plots/PlotSkin.cpp +++ b/playground/plots/PlotSkin.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "PlotSkin.h" diff --git a/playground/plots/PlotSkin.h b/playground/plots/PlotSkin.h index 946344c3..0a6dbf03 100644 --- a/playground/plots/PlotSkin.h +++ b/playground/plots/PlotSkin.h @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once diff --git a/playground/plots/QskPlotCorridor.cpp b/playground/plots/QskPlotCorridor.cpp index a7144e52..21f6d90b 100644 --- a/playground/plots/QskPlotCorridor.cpp +++ b/playground/plots/QskPlotCorridor.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "QskPlotCorridor.h" diff --git a/playground/plots/QskPlotCorridor.h b/playground/plots/QskPlotCorridor.h index b375482d..1492ba87 100644 --- a/playground/plots/QskPlotCorridor.h +++ b/playground/plots/QskPlotCorridor.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * This file may be used under the terms of the 3-clause BSD License *****************************************************************************/ diff --git a/playground/plots/QskPlotCorridorData.cpp b/playground/plots/QskPlotCorridorData.cpp index 55b40c57..d6f72b3e 100644 --- a/playground/plots/QskPlotCorridorData.cpp +++ b/playground/plots/QskPlotCorridorData.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "QskPlotCorridorData.h" diff --git a/playground/plots/QskPlotCorridorData.h b/playground/plots/QskPlotCorridorData.h index 3fac0b7a..54c9c2f5 100644 --- a/playground/plots/QskPlotCorridorData.h +++ b/playground/plots/QskPlotCorridorData.h @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once diff --git a/playground/plots/QskPlotCorridorSkinlet.cpp b/playground/plots/QskPlotCorridorSkinlet.cpp index e7ab51bf..cebd749a 100644 --- a/playground/plots/QskPlotCorridorSkinlet.cpp +++ b/playground/plots/QskPlotCorridorSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/QskPlotCorridorSkinlet.h b/playground/plots/QskPlotCorridorSkinlet.h index e79e8b32..59a4a2d6 100644 --- a/playground/plots/QskPlotCorridorSkinlet.h +++ b/playground/plots/QskPlotCorridorSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/QskPlotCurve.cpp b/playground/plots/QskPlotCurve.cpp index d39c2b42..02f3fb02 100644 --- a/playground/plots/QskPlotCurve.cpp +++ b/playground/plots/QskPlotCurve.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "QskPlotCurve.h" diff --git a/playground/plots/QskPlotCurve.h b/playground/plots/QskPlotCurve.h index cf5c77e3..f42d56cd 100644 --- a/playground/plots/QskPlotCurve.h +++ b/playground/plots/QskPlotCurve.h @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once diff --git a/playground/plots/QskPlotCurveData.cpp b/playground/plots/QskPlotCurveData.cpp index 66b76ac9..029e0242 100644 --- a/playground/plots/QskPlotCurveData.cpp +++ b/playground/plots/QskPlotCurveData.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "QskPlotCurveData.h" diff --git a/playground/plots/QskPlotCurveData.h b/playground/plots/QskPlotCurveData.h index fe802566..47f76626 100644 --- a/playground/plots/QskPlotCurveData.h +++ b/playground/plots/QskPlotCurveData.h @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once diff --git a/playground/plots/QskPlotCurveSkinlet.cpp b/playground/plots/QskPlotCurveSkinlet.cpp index 0731c94f..64f92b7e 100644 --- a/playground/plots/QskPlotCurveSkinlet.cpp +++ b/playground/plots/QskPlotCurveSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/QskPlotCurveSkinlet.h b/playground/plots/QskPlotCurveSkinlet.h index 070487ba..65c48f7d 100644 --- a/playground/plots/QskPlotCurveSkinlet.h +++ b/playground/plots/QskPlotCurveSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/QskPlotGrid.cpp b/playground/plots/QskPlotGrid.cpp index 06d27cd2..3db5f80d 100644 --- a/playground/plots/QskPlotGrid.cpp +++ b/playground/plots/QskPlotGrid.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "QskPlotGrid.h" diff --git a/playground/plots/QskPlotGrid.h b/playground/plots/QskPlotGrid.h index 4b4ce25b..8c4d8834 100644 --- a/playground/plots/QskPlotGrid.h +++ b/playground/plots/QskPlotGrid.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * This file may be used under the terms of the 3-clause BSD License *****************************************************************************/ diff --git a/playground/plots/QskPlotGridSkinlet.cpp b/playground/plots/QskPlotGridSkinlet.cpp index ebd490c2..c328d2e2 100644 --- a/playground/plots/QskPlotGridSkinlet.cpp +++ b/playground/plots/QskPlotGridSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/QskPlotGridSkinlet.h b/playground/plots/QskPlotGridSkinlet.h index 2ab51f80..a0c114c9 100644 --- a/playground/plots/QskPlotGridSkinlet.h +++ b/playground/plots/QskPlotGridSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/QskPlotItem.cpp b/playground/plots/QskPlotItem.cpp index de829694..929972e8 100644 --- a/playground/plots/QskPlotItem.cpp +++ b/playground/plots/QskPlotItem.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "QskPlotItem.h" diff --git a/playground/plots/QskPlotItem.h b/playground/plots/QskPlotItem.h index 6ae96c86..3f343d8a 100644 --- a/playground/plots/QskPlotItem.h +++ b/playground/plots/QskPlotItem.h @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once diff --git a/playground/plots/QskPlotNamespace.h b/playground/plots/QskPlotNamespace.h index 30644ba7..34202ab1 100644 --- a/playground/plots/QskPlotNamespace.h +++ b/playground/plots/QskPlotNamespace.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/QskPlotView.cpp b/playground/plots/QskPlotView.cpp index 887c6418..18fc60e0 100644 --- a/playground/plots/QskPlotView.cpp +++ b/playground/plots/QskPlotView.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "QskPlotView.h" diff --git a/playground/plots/QskPlotView.h b/playground/plots/QskPlotView.h index 37a7ae9d..53243a9e 100644 --- a/playground/plots/QskPlotView.h +++ b/playground/plots/QskPlotView.h @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once diff --git a/playground/plots/QskPlotViewSkinlet.cpp b/playground/plots/QskPlotViewSkinlet.cpp index db3878d2..f3f1aaf4 100644 --- a/playground/plots/QskPlotViewSkinlet.cpp +++ b/playground/plots/QskPlotViewSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/QskPlotViewSkinlet.h b/playground/plots/QskPlotViewSkinlet.h index f861b6e1..37d54f68 100644 --- a/playground/plots/QskPlotViewSkinlet.h +++ b/playground/plots/QskPlotViewSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/plots/main.cpp b/playground/plots/main.cpp index f2612e44..7d8ced9d 100644 --- a/playground/plots/main.cpp +++ b/playground/plots/main.cpp @@ -1,6 +1,6 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann - * This file may be used under the terms of the 3-clause BSD License + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "Plot.h" diff --git a/playground/shadows/ArcPage.cpp b/playground/shadows/ArcPage.cpp index 7ee25532..3ed5c5e4 100644 --- a/playground/shadows/ArcPage.cpp +++ b/playground/shadows/ArcPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shadows/ArcPage.h b/playground/shadows/ArcPage.h index eeb62066..e5ee9010 100644 --- a/playground/shadows/ArcPage.h +++ b/playground/shadows/ArcPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shadows/BoxPage.cpp b/playground/shadows/BoxPage.cpp index 860c2c0f..9c82c3cb 100644 --- a/playground/shadows/BoxPage.cpp +++ b/playground/shadows/BoxPage.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shadows/BoxPage.h b/playground/shadows/BoxPage.h index d5dc15aa..77fe50f1 100644 --- a/playground/shadows/BoxPage.h +++ b/playground/shadows/BoxPage.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shadows/CMakeLists.txt b/playground/shadows/CMakeLists.txt index f65ac316..30b2ad1e 100644 --- a/playground/shadows/CMakeLists.txt +++ b/playground/shadows/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/playground/shadows/ShadowedArc.cpp b/playground/shadows/ShadowedArc.cpp index 0ba49ad5..bb209f3f 100644 --- a/playground/shadows/ShadowedArc.cpp +++ b/playground/shadows/ShadowedArc.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shadows/ShadowedArc.h b/playground/shadows/ShadowedArc.h index a4179ade..c8f486d3 100644 --- a/playground/shadows/ShadowedArc.h +++ b/playground/shadows/ShadowedArc.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shadows/ShadowedBox.cpp b/playground/shadows/ShadowedBox.cpp index cad0fd22..dac3502d 100644 --- a/playground/shadows/ShadowedBox.cpp +++ b/playground/shadows/ShadowedBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shadows/ShadowedBox.h b/playground/shadows/ShadowedBox.h index 5cc898d6..d0aaa88b 100644 --- a/playground/shadows/ShadowedBox.h +++ b/playground/shadows/ShadowedBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shadows/Slider.cpp b/playground/shadows/Slider.cpp index 0a08201a..b6f4b8fc 100644 --- a/playground/shadows/Slider.cpp +++ b/playground/shadows/Slider.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shadows/Slider.h b/playground/shadows/Slider.h index c62fa160..7698c323 100644 --- a/playground/shadows/Slider.h +++ b/playground/shadows/Slider.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shadows/main.cpp b/playground/shadows/main.cpp index c4e2ceda..d3f110fc 100644 --- a/playground/shadows/main.cpp +++ b/playground/shadows/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shapes/CMakeLists.txt b/playground/shapes/CMakeLists.txt index 89122dc9..b02b0265 100644 --- a/playground/shapes/CMakeLists.txt +++ b/playground/shapes/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/playground/shapes/GeometricShape.cpp b/playground/shapes/GeometricShape.cpp index 92935093..99932352 100644 --- a/playground/shapes/GeometricShape.cpp +++ b/playground/shapes/GeometricShape.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shapes/GeometricShape.h b/playground/shapes/GeometricShape.h index 3e521a49..ee8296c5 100644 --- a/playground/shapes/GeometricShape.h +++ b/playground/shapes/GeometricShape.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shapes/ShapeItem.cpp b/playground/shapes/ShapeItem.cpp index 9f1f9421..73771ec9 100644 --- a/playground/shapes/ShapeItem.cpp +++ b/playground/shapes/ShapeItem.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shapes/ShapeItem.h b/playground/shapes/ShapeItem.h index b8d15300..edab674c 100644 --- a/playground/shapes/ShapeItem.h +++ b/playground/shapes/ShapeItem.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shapes/Stroke.cpp b/playground/shapes/Stroke.cpp index d72090d7..96c7c9e5 100644 --- a/playground/shapes/Stroke.cpp +++ b/playground/shapes/Stroke.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shapes/Stroke.h b/playground/shapes/Stroke.h index 85cd0464..e8b63ded 100644 --- a/playground/shapes/Stroke.h +++ b/playground/shapes/Stroke.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shapes/Window.cpp b/playground/shapes/Window.cpp index 72a30f39..13eb59fd 100644 --- a/playground/shapes/Window.cpp +++ b/playground/shapes/Window.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shapes/Window.h b/playground/shapes/Window.h index 10858ba5..112f59c2 100644 --- a/playground/shapes/Window.h +++ b/playground/shapes/Window.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/shapes/main.cpp b/playground/shapes/main.cpp index e253cf51..3348afa9 100644 --- a/playground/shapes/main.cpp +++ b/playground/shapes/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/playground/webview/CMakeLists.txt b/playground/webview/CMakeLists.txt index 54529c22..eea87839 100644 --- a/playground/webview/CMakeLists.txt +++ b/playground/webview/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/playground/webview/main.cpp b/playground/webview/main.cpp index 17aa9b59..f4a4294b 100644 --- a/playground/webview/main.cpp +++ b/playground/webview/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/qmlexport/CMakeLists.txt b/qmlexport/CMakeLists.txt index 44413ee6..e1b78483 100644 --- a/qmlexport/CMakeLists.txt +++ b/qmlexport/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ @@ -61,4 +61,4 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") install(FILES $ DESTINATION ${QSK_INSTALL_LIBS} OPTIONAL) -endif() \ No newline at end of file +endif() diff --git a/qmlexport/QskLayoutQml.cpp b/qmlexport/QskLayoutQml.cpp index 72a1b018..d089504e 100644 --- a/qmlexport/QskLayoutQml.cpp +++ b/qmlexport/QskLayoutQml.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/qmlexport/QskLayoutQml.h b/qmlexport/QskLayoutQml.h index c8c92be2..89ed3ee0 100644 --- a/qmlexport/QskLayoutQml.h +++ b/qmlexport/QskLayoutQml.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/qmlexport/QskMainQml.cpp b/qmlexport/QskMainQml.cpp index 54d0d640..05cb69e8 100644 --- a/qmlexport/QskMainQml.cpp +++ b/qmlexport/QskMainQml.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/qmlexport/QskMainQml.h b/qmlexport/QskMainQml.h index e3b0e779..438a4e6e 100644 --- a/qmlexport/QskMainQml.h +++ b/qmlexport/QskMainQml.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/qmlexport/QskQml.cpp b/qmlexport/QskQml.cpp index ea903451..b8c2c20a 100644 --- a/qmlexport/QskQml.cpp +++ b/qmlexport/QskQml.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/qmlexport/QskQml.h b/qmlexport/QskQml.h index 6a65b8c2..90c7f216 100644 --- a/qmlexport/QskQml.h +++ b/qmlexport/QskQml.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/qmlexport/QskQml.hpp b/qmlexport/QskQml.hpp index ef252500..dff4db9a 100644 --- a/qmlexport/QskQml.hpp +++ b/qmlexport/QskQml.hpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/qmlexport/QskQmlGlobal.h b/qmlexport/QskQmlGlobal.h index 13141da7..7c937466 100644 --- a/qmlexport/QskQmlGlobal.h +++ b/qmlexport/QskQmlGlobal.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/qmlexport/QskShortcutQml.cpp b/qmlexport/QskShortcutQml.cpp index 6b0a450a..51600216 100644 --- a/qmlexport/QskShortcutQml.cpp +++ b/qmlexport/QskShortcutQml.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/qmlexport/QskShortcutQml.h b/qmlexport/QskShortcutQml.h index 9783879a..5ecc4067 100644 --- a/qmlexport/QskShortcutQml.h +++ b/qmlexport/QskShortcutQml.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/fluent2/QskFluent2Global.h b/skins/fluent2/QskFluent2Global.h index 0a58068e..f99a52f2 100644 --- a/skins/fluent2/QskFluent2Global.h +++ b/skins/fluent2/QskFluent2Global.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2023 Edelhirsch Software GmbH + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/fluent2/QskFluent2Skin.cpp b/skins/fluent2/QskFluent2Skin.cpp index 0e42ef5f..240c23d7 100644 --- a/skins/fluent2/QskFluent2Skin.cpp +++ b/skins/fluent2/QskFluent2Skin.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2023 Edelhirsch Software GmbH + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/fluent2/QskFluent2Skin.h b/skins/fluent2/QskFluent2Skin.h index 2678dba4..c0be6488 100644 --- a/skins/fluent2/QskFluent2Skin.h +++ b/skins/fluent2/QskFluent2Skin.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2023 Edelhirsch Software GmbH + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/fluent2/QskFluent2SkinFactory.cpp b/skins/fluent2/QskFluent2SkinFactory.cpp index 8b393b73..b9beb18d 100644 --- a/skins/fluent2/QskFluent2SkinFactory.cpp +++ b/skins/fluent2/QskFluent2SkinFactory.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2023 Edelhirsch Software GmbH + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/fluent2/QskFluent2SkinFactory.h b/skins/fluent2/QskFluent2SkinFactory.h index 3b081862..2f5bf8fa 100644 --- a/skins/fluent2/QskFluent2SkinFactory.h +++ b/skins/fluent2/QskFluent2SkinFactory.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2023 Edelhirsch Software GmbH + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/fluent2/QskFluent2Theme.cpp b/skins/fluent2/QskFluent2Theme.cpp index f7c20d30..490bf2e0 100644 --- a/skins/fluent2/QskFluent2Theme.cpp +++ b/skins/fluent2/QskFluent2Theme.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2023 Edelhirsch Software GmbH + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/fluent2/QskFluent2Theme.h b/skins/fluent2/QskFluent2Theme.h index a4d18feb..74d2925f 100644 --- a/skins/fluent2/QskFluent2Theme.h +++ b/skins/fluent2/QskFluent2Theme.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2023 Edelhirsch Software GmbH + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/material3/CMakeLists.txt b/skins/material3/CMakeLists.txt index a76dfaba..cce742e0 100644 --- a/skins/material3/CMakeLists.txt +++ b/skins/material3/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/skins/material3/QskMaterial3Global.h b/skins/material3/QskMaterial3Global.h index 5280e12c..ab63d841 100644 --- a/skins/material3/QskMaterial3Global.h +++ b/skins/material3/QskMaterial3Global.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/material3/QskMaterial3Skin.cpp b/skins/material3/QskMaterial3Skin.cpp index 8443dbf5..e548d72c 100644 --- a/skins/material3/QskMaterial3Skin.cpp +++ b/skins/material3/QskMaterial3Skin.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2022 Edelhirsch Software GmbH + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/material3/QskMaterial3Skin.h b/skins/material3/QskMaterial3Skin.h index 2dbdcbc9..99ecc035 100644 --- a/skins/material3/QskMaterial3Skin.h +++ b/skins/material3/QskMaterial3Skin.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2022 Edelhirsch Software GmbH + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/material3/QskMaterial3SkinFactory.cpp b/skins/material3/QskMaterial3SkinFactory.cpp index 541db64d..16c2f6dd 100644 --- a/skins/material3/QskMaterial3SkinFactory.cpp +++ b/skins/material3/QskMaterial3SkinFactory.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/material3/QskMaterial3SkinFactory.h b/skins/material3/QskMaterial3SkinFactory.h index 292b8b1a..927bd032 100644 --- a/skins/material3/QskMaterial3SkinFactory.h +++ b/skins/material3/QskMaterial3SkinFactory.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/squiek/CMakeLists.txt b/skins/squiek/CMakeLists.txt index e8674ede..e7c873f6 100644 --- a/skins/squiek/CMakeLists.txt +++ b/skins/squiek/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/skins/squiek/QskSquiekGlobal.h b/skins/squiek/QskSquiekGlobal.h index 659f344a..8ff5e4f7 100644 --- a/skins/squiek/QskSquiekGlobal.h +++ b/skins/squiek/QskSquiekGlobal.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/squiek/QskSquiekSkin.cpp b/skins/squiek/QskSquiekSkin.cpp index abcdac21..c2e888c5 100644 --- a/skins/squiek/QskSquiekSkin.cpp +++ b/skins/squiek/QskSquiekSkin.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/squiek/QskSquiekSkin.h b/skins/squiek/QskSquiekSkin.h index fad53065..0036a35f 100644 --- a/skins/squiek/QskSquiekSkin.h +++ b/skins/squiek/QskSquiekSkin.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/squiek/QskSquiekSkinFactory.cpp b/skins/squiek/QskSquiekSkinFactory.cpp index 937c771c..d2c4711d 100644 --- a/skins/squiek/QskSquiekSkinFactory.cpp +++ b/skins/squiek/QskSquiekSkinFactory.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/skins/squiek/QskSquiekSkinFactory.h b/skins/squiek/QskSquiekSkinFactory.h index 06b845c1..42b71c86 100644 --- a/skins/squiek/QskSquiekSkinFactory.h +++ b/skins/squiek/QskSquiekSkinFactory.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index be10b13f..351997f7 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ @@ -566,4 +566,4 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") install(FILES $ DESTINATION ${QSK_INSTALL_LIBS} OPTIONAL) -endif() \ No newline at end of file +endif() diff --git a/src/common/QskArcMetrics.cpp b/src/common/QskArcMetrics.cpp index 938a0ab9..956508ce 100644 --- a/src/common/QskArcMetrics.cpp +++ b/src/common/QskArcMetrics.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskArcMetrics.h b/src/common/QskArcMetrics.h index 6197f3a9..fe80ed46 100644 --- a/src/common/QskArcMetrics.h +++ b/src/common/QskArcMetrics.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskAspect.cpp b/src/common/QskAspect.cpp index a5d901c1..67c0a69a 100644 --- a/src/common/QskAspect.cpp +++ b/src/common/QskAspect.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskAspect.h b/src/common/QskAspect.h index 7b67eb36..badad39a 100644 --- a/src/common/QskAspect.h +++ b/src/common/QskAspect.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskBoxBorderColors.cpp b/src/common/QskBoxBorderColors.cpp index 75a39ec3..9bde095b 100644 --- a/src/common/QskBoxBorderColors.cpp +++ b/src/common/QskBoxBorderColors.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskBoxBorderColors.h b/src/common/QskBoxBorderColors.h index 64fe383b..9cbad86a 100644 --- a/src/common/QskBoxBorderColors.h +++ b/src/common/QskBoxBorderColors.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskBoxBorderMetrics.cpp b/src/common/QskBoxBorderMetrics.cpp index 6bb4d1e0..1272f87e 100644 --- a/src/common/QskBoxBorderMetrics.cpp +++ b/src/common/QskBoxBorderMetrics.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskBoxBorderMetrics.h b/src/common/QskBoxBorderMetrics.h index 807bf546..333c58c0 100644 --- a/src/common/QskBoxBorderMetrics.h +++ b/src/common/QskBoxBorderMetrics.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskBoxHints.cpp b/src/common/QskBoxHints.cpp index 08fd8a76..851078c7 100644 --- a/src/common/QskBoxHints.cpp +++ b/src/common/QskBoxHints.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskBoxHints.h b/src/common/QskBoxHints.h index 969c89cb..7da0ed65 100644 --- a/src/common/QskBoxHints.h +++ b/src/common/QskBoxHints.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskBoxShapeMetrics.cpp b/src/common/QskBoxShapeMetrics.cpp index 06a39ba1..3441d0fa 100644 --- a/src/common/QskBoxShapeMetrics.cpp +++ b/src/common/QskBoxShapeMetrics.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskBoxShapeMetrics.h b/src/common/QskBoxShapeMetrics.h index dec4d914..2252be63 100644 --- a/src/common/QskBoxShapeMetrics.h +++ b/src/common/QskBoxShapeMetrics.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskFunctions.cpp b/src/common/QskFunctions.cpp index 5b40280f..892c9a84 100644 --- a/src/common/QskFunctions.cpp +++ b/src/common/QskFunctions.cpp @@ -1,3 +1,8 @@ +/****************************************************************************** + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause + *****************************************************************************/ + #include "QskFunctions.h" #include diff --git a/src/common/QskFunctions.h b/src/common/QskFunctions.h index 1ac3e3d9..38f85add 100644 --- a/src/common/QskFunctions.h +++ b/src/common/QskFunctions.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskGlobal.h b/src/common/QskGlobal.h index 44b20eed..408d6e2b 100644 --- a/src/common/QskGlobal.h +++ b/src/common/QskGlobal.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskGradient.cpp b/src/common/QskGradient.cpp index 31e18a0a..3a66b5e8 100644 --- a/src/common/QskGradient.cpp +++ b/src/common/QskGradient.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskGradient.h b/src/common/QskGradient.h index 441aaa4f..7e5fd665 100644 --- a/src/common/QskGradient.h +++ b/src/common/QskGradient.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskGradientDirection.cpp b/src/common/QskGradientDirection.cpp index 900377b5..18f58521 100644 --- a/src/common/QskGradientDirection.cpp +++ b/src/common/QskGradientDirection.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskGradientDirection.h b/src/common/QskGradientDirection.h index 4ba3e1ad..68cc99a5 100644 --- a/src/common/QskGradientDirection.h +++ b/src/common/QskGradientDirection.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskGradientStop.cpp b/src/common/QskGradientStop.cpp index a2a73d95..451fa70c 100644 --- a/src/common/QskGradientStop.cpp +++ b/src/common/QskGradientStop.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskGradientStop.h b/src/common/QskGradientStop.h index d115be62..ae6bed02 100644 --- a/src/common/QskGradientStop.h +++ b/src/common/QskGradientStop.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskGraduation.cpp b/src/common/QskGraduation.cpp index e9680550..3d20132d 100644 --- a/src/common/QskGraduation.cpp +++ b/src/common/QskGraduation.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskGraduation.h b/src/common/QskGraduation.h index 08d24449..9bb6e9b2 100644 --- a/src/common/QskGraduation.h +++ b/src/common/QskGraduation.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskGraduationMetrics.cpp b/src/common/QskGraduationMetrics.cpp index e2ef5378..4feb8941 100644 --- a/src/common/QskGraduationMetrics.cpp +++ b/src/common/QskGraduationMetrics.cpp @@ -1,3 +1,8 @@ +/****************************************************************************** + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause + *****************************************************************************/ + #include "QskGraduationMetrics.h" #include diff --git a/src/common/QskGraduationMetrics.h b/src/common/QskGraduationMetrics.h index 73582eff..26c2b546 100644 --- a/src/common/QskGraduationMetrics.h +++ b/src/common/QskGraduationMetrics.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskHctColor.h b/src/common/QskHctColor.h index 4d7541b3..dbe5fe17 100644 --- a/src/common/QskHctColor.h +++ b/src/common/QskHctColor.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskIntervalF.cpp b/src/common/QskIntervalF.cpp index 5b31268b..9e579a33 100644 --- a/src/common/QskIntervalF.cpp +++ b/src/common/QskIntervalF.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskIntervalF.h b/src/common/QskIntervalF.h index 72b7fb44..fdbf4289 100644 --- a/src/common/QskIntervalF.h +++ b/src/common/QskIntervalF.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskLabelData.cpp b/src/common/QskLabelData.cpp index c4ae86ba..0d33a79a 100644 --- a/src/common/QskLabelData.cpp +++ b/src/common/QskLabelData.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskLabelData.h b/src/common/QskLabelData.h index 2ed156a6..0ce779a4 100644 --- a/src/common/QskLabelData.h +++ b/src/common/QskLabelData.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskMargins.cpp b/src/common/QskMargins.cpp index 5aa5f98e..80927e24 100644 --- a/src/common/QskMargins.cpp +++ b/src/common/QskMargins.cpp @@ -1,3 +1,8 @@ +/****************************************************************************** + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause + *****************************************************************************/ + #include "QskMargins.h" #include diff --git a/src/common/QskMargins.h b/src/common/QskMargins.h index bc433294..faa43f9a 100644 --- a/src/common/QskMargins.h +++ b/src/common/QskMargins.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskMetaFunction.cpp b/src/common/QskMetaFunction.cpp index 0eb31d39..56d04080 100644 --- a/src/common/QskMetaFunction.cpp +++ b/src/common/QskMetaFunction.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskMetaFunction.h b/src/common/QskMetaFunction.h index 75880caf..d521574b 100644 --- a/src/common/QskMetaFunction.h +++ b/src/common/QskMetaFunction.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskMetaFunction.hpp b/src/common/QskMetaFunction.hpp index 26af0860..386c6a46 100644 --- a/src/common/QskMetaFunction.hpp +++ b/src/common/QskMetaFunction.hpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskMetaInvokable.cpp b/src/common/QskMetaInvokable.cpp index 2dce0046..1f73633d 100644 --- a/src/common/QskMetaInvokable.cpp +++ b/src/common/QskMetaInvokable.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskMetaInvokable.h b/src/common/QskMetaInvokable.h index 1cfd2ddf..8dca8b0d 100644 --- a/src/common/QskMetaInvokable.h +++ b/src/common/QskMetaInvokable.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskNamespace.h b/src/common/QskNamespace.h index 0d48523e..0129e81f 100644 --- a/src/common/QskNamespace.h +++ b/src/common/QskNamespace.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskObjectCounter.cpp b/src/common/QskObjectCounter.cpp index 0ec9ee4c..e8a014cb 100644 --- a/src/common/QskObjectCounter.cpp +++ b/src/common/QskObjectCounter.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskObjectCounter.h b/src/common/QskObjectCounter.h index cabc57e2..57a8c233 100644 --- a/src/common/QskObjectCounter.h +++ b/src/common/QskObjectCounter.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskPlacementPolicy.cpp b/src/common/QskPlacementPolicy.cpp index e32c4246..fa59d56a 100644 --- a/src/common/QskPlacementPolicy.cpp +++ b/src/common/QskPlacementPolicy.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskPlacementPolicy.h b/src/common/QskPlacementPolicy.h index 6ace326c..22b56ade 100644 --- a/src/common/QskPlacementPolicy.h +++ b/src/common/QskPlacementPolicy.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskPlatform.cpp b/src/common/QskPlatform.cpp index 018ef40a..c54c29eb 100644 --- a/src/common/QskPlatform.cpp +++ b/src/common/QskPlatform.cpp @@ -1,3 +1,8 @@ +/****************************************************************************** + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause + *****************************************************************************/ + #include "QskPlatform.h" #include diff --git a/src/common/QskPlatform.h b/src/common/QskPlatform.h index e7e6e061..48be41b3 100644 --- a/src/common/QskPlatform.h +++ b/src/common/QskPlatform.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskRgbValue.cpp b/src/common/QskRgbValue.cpp index 360392b9..66b354f0 100644 --- a/src/common/QskRgbValue.cpp +++ b/src/common/QskRgbValue.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskRgbValue.h b/src/common/QskRgbValue.h index a8317a91..163aefd4 100644 --- a/src/common/QskRgbValue.h +++ b/src/common/QskRgbValue.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskShadowMetrics.cpp b/src/common/QskShadowMetrics.cpp index fe37abd4..b5331dc9 100644 --- a/src/common/QskShadowMetrics.cpp +++ b/src/common/QskShadowMetrics.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskShadowMetrics.h b/src/common/QskShadowMetrics.h index efd9c137..bb85a117 100644 --- a/src/common/QskShadowMetrics.h +++ b/src/common/QskShadowMetrics.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskSizePolicy.cpp b/src/common/QskSizePolicy.cpp index d0cd8aa9..70d40108 100644 --- a/src/common/QskSizePolicy.cpp +++ b/src/common/QskSizePolicy.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskSizePolicy.h b/src/common/QskSizePolicy.h index 2b0f51f0..d7e01cea 100644 --- a/src/common/QskSizePolicy.h +++ b/src/common/QskSizePolicy.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskStateCombination.h b/src/common/QskStateCombination.h index 1cf6016a..10fdf835 100644 --- a/src/common/QskStateCombination.h +++ b/src/common/QskStateCombination.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskStippleMetrics.cpp b/src/common/QskStippleMetrics.cpp index 6b4d0520..dc921367 100644 --- a/src/common/QskStippleMetrics.cpp +++ b/src/common/QskStippleMetrics.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskStippleMetrics.h b/src/common/QskStippleMetrics.h index a637faf1..a3cd0947 100644 --- a/src/common/QskStippleMetrics.h +++ b/src/common/QskStippleMetrics.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskTextColors.cpp b/src/common/QskTextColors.cpp index e75e0ef8..4130cf8c 100644 --- a/src/common/QskTextColors.cpp +++ b/src/common/QskTextColors.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskTextColors.h b/src/common/QskTextColors.h index c7fa6799..02cb4975 100644 --- a/src/common/QskTextColors.h +++ b/src/common/QskTextColors.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskTextOptions.cpp b/src/common/QskTextOptions.cpp index f4c678c9..53f64e2f 100644 --- a/src/common/QskTextOptions.cpp +++ b/src/common/QskTextOptions.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskTextOptions.h b/src/common/QskTextOptions.h index 984da585..cd88c6f8 100644 --- a/src/common/QskTextOptions.h +++ b/src/common/QskTextOptions.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskTickmarks.cpp b/src/common/QskTickmarks.cpp index d9f744fa..ac75892d 100644 --- a/src/common/QskTickmarks.cpp +++ b/src/common/QskTickmarks.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/common/QskTickmarks.h b/src/common/QskTickmarks.h index a90915cd..953b7627 100644 --- a/src/common/QskTickmarks.h +++ b/src/common/QskTickmarks.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskAbstractButton.cpp b/src/controls/QskAbstractButton.cpp index 53853649..54d25943 100644 --- a/src/controls/QskAbstractButton.cpp +++ b/src/controls/QskAbstractButton.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskAbstractButton.h b/src/controls/QskAbstractButton.h index 8a458ad4..6d081a48 100644 --- a/src/controls/QskAbstractButton.h +++ b/src/controls/QskAbstractButton.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskAnimationHint.cpp b/src/controls/QskAnimationHint.cpp index 2d0dda05..86160f61 100644 --- a/src/controls/QskAnimationHint.cpp +++ b/src/controls/QskAnimationHint.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskAnimationHint.h b/src/controls/QskAnimationHint.h index 0d906cfa..56a5d5e6 100644 --- a/src/controls/QskAnimationHint.h +++ b/src/controls/QskAnimationHint.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskAnimator.cpp b/src/controls/QskAnimator.cpp index 78b7f34e..bc1609be 100644 --- a/src/controls/QskAnimator.cpp +++ b/src/controls/QskAnimator.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskAnimator.h b/src/controls/QskAnimator.h index f7e6dd89..9c3a0a88 100644 --- a/src/controls/QskAnimator.h +++ b/src/controls/QskAnimator.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBoundedControl.cpp b/src/controls/QskBoundedControl.cpp index 85cfde81..a25df91c 100644 --- a/src/controls/QskBoundedControl.cpp +++ b/src/controls/QskBoundedControl.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBoundedControl.h b/src/controls/QskBoundedControl.h index d36e9f86..ec89efc6 100644 --- a/src/controls/QskBoundedControl.h +++ b/src/controls/QskBoundedControl.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBoundedInput.cpp b/src/controls/QskBoundedInput.cpp index e5275a45..288c4061 100644 --- a/src/controls/QskBoundedInput.cpp +++ b/src/controls/QskBoundedInput.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBoundedInput.h b/src/controls/QskBoundedInput.h index 7bcbcfae..1ac0a017 100644 --- a/src/controls/QskBoundedInput.h +++ b/src/controls/QskBoundedInput.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBoundedRangeInput.cpp b/src/controls/QskBoundedRangeInput.cpp index 051ebf95..5c2ebe54 100644 --- a/src/controls/QskBoundedRangeInput.cpp +++ b/src/controls/QskBoundedRangeInput.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBoundedRangeInput.h b/src/controls/QskBoundedRangeInput.h index 6b4c2dfa..990fb188 100644 --- a/src/controls/QskBoundedRangeInput.h +++ b/src/controls/QskBoundedRangeInput.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBoundedValueInput.cpp b/src/controls/QskBoundedValueInput.cpp index ba72ab73..54e5af1b 100644 --- a/src/controls/QskBoundedValueInput.cpp +++ b/src/controls/QskBoundedValueInput.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBoundedValueInput.h b/src/controls/QskBoundedValueInput.h index 97794303..e5af6617 100644 --- a/src/controls/QskBoundedValueInput.h +++ b/src/controls/QskBoundedValueInput.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBox.cpp b/src/controls/QskBox.cpp index 242a6db8..3513f967 100644 --- a/src/controls/QskBox.cpp +++ b/src/controls/QskBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBox.h b/src/controls/QskBox.h index 296654e9..a5f8cac0 100644 --- a/src/controls/QskBox.h +++ b/src/controls/QskBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBoxSkinlet.cpp b/src/controls/QskBoxSkinlet.cpp index 181af0b7..65749da3 100644 --- a/src/controls/QskBoxSkinlet.cpp +++ b/src/controls/QskBoxSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskBoxSkinlet.h b/src/controls/QskBoxSkinlet.h index 5527ea9d..bb5c34d4 100644 --- a/src/controls/QskBoxSkinlet.h +++ b/src/controls/QskBoxSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskCheckBox.cpp b/src/controls/QskCheckBox.cpp index 14ea7622..f4a62524 100644 --- a/src/controls/QskCheckBox.cpp +++ b/src/controls/QskCheckBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskCheckBox.h b/src/controls/QskCheckBox.h index 12b0a136..f8617f58 100644 --- a/src/controls/QskCheckBox.h +++ b/src/controls/QskCheckBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskCheckBoxSkinlet.cpp b/src/controls/QskCheckBoxSkinlet.cpp index e93bc0ed..2b5531dd 100644 --- a/src/controls/QskCheckBoxSkinlet.cpp +++ b/src/controls/QskCheckBoxSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskCheckBoxSkinlet.h b/src/controls/QskCheckBoxSkinlet.h index 48e085b1..d4dac0b7 100644 --- a/src/controls/QskCheckBoxSkinlet.h +++ b/src/controls/QskCheckBoxSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskComboBox.cpp b/src/controls/QskComboBox.cpp index ef79a486..9e39f602 100644 --- a/src/controls/QskComboBox.cpp +++ b/src/controls/QskComboBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskComboBox.h b/src/controls/QskComboBox.h index 83a9f1ec..76b7df1e 100644 --- a/src/controls/QskComboBox.h +++ b/src/controls/QskComboBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskComboBoxSkinlet.cpp b/src/controls/QskComboBoxSkinlet.cpp index 9f4a4323..fc2da6fa 100644 --- a/src/controls/QskComboBoxSkinlet.cpp +++ b/src/controls/QskComboBoxSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskComboBoxSkinlet.h b/src/controls/QskComboBoxSkinlet.h index a2579e4b..0e4aa4c7 100644 --- a/src/controls/QskComboBoxSkinlet.h +++ b/src/controls/QskComboBoxSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskControl.cpp b/src/controls/QskControl.cpp index 6867d6e7..b2b03bca 100644 --- a/src/controls/QskControl.cpp +++ b/src/controls/QskControl.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskControl.h b/src/controls/QskControl.h index ac04e197..41793c87 100644 --- a/src/controls/QskControl.h +++ b/src/controls/QskControl.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskControlPrivate.cpp b/src/controls/QskControlPrivate.cpp index 84cc755f..c8608dc4 100644 --- a/src/controls/QskControlPrivate.cpp +++ b/src/controls/QskControlPrivate.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskControlPrivate.h b/src/controls/QskControlPrivate.h index 9a9dd09a..239201a5 100644 --- a/src/controls/QskControlPrivate.h +++ b/src/controls/QskControlPrivate.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskDirtyItemFilter.cpp b/src/controls/QskDirtyItemFilter.cpp index b0ccbf0f..416f0253 100644 --- a/src/controls/QskDirtyItemFilter.cpp +++ b/src/controls/QskDirtyItemFilter.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskDirtyItemFilter.h b/src/controls/QskDirtyItemFilter.h index 95235c81..60fe2241 100644 --- a/src/controls/QskDirtyItemFilter.h +++ b/src/controls/QskDirtyItemFilter.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskDrawer.cpp b/src/controls/QskDrawer.cpp index 87890a8d..c08cbd69 100644 --- a/src/controls/QskDrawer.cpp +++ b/src/controls/QskDrawer.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskDrawer.h b/src/controls/QskDrawer.h index b6c852f2..7f853d6c 100644 --- a/src/controls/QskDrawer.h +++ b/src/controls/QskDrawer.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskDrawerSkinlet.cpp b/src/controls/QskDrawerSkinlet.cpp index e10f5923..43008870 100644 --- a/src/controls/QskDrawerSkinlet.cpp +++ b/src/controls/QskDrawerSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskDrawerSkinlet.h b/src/controls/QskDrawerSkinlet.h index b6d1c771..e37d7823 100644 --- a/src/controls/QskDrawerSkinlet.h +++ b/src/controls/QskDrawerSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskEvent.cpp b/src/controls/QskEvent.cpp index b3aeae87..b143bcd4 100644 --- a/src/controls/QskEvent.cpp +++ b/src/controls/QskEvent.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskEvent.h b/src/controls/QskEvent.h index 094090e9..0fe85d27 100644 --- a/src/controls/QskEvent.h +++ b/src/controls/QskEvent.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskFlickAnimator.cpp b/src/controls/QskFlickAnimator.cpp index 019a0a5f..ef0fbe7c 100644 --- a/src/controls/QskFlickAnimator.cpp +++ b/src/controls/QskFlickAnimator.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskFlickAnimator.h b/src/controls/QskFlickAnimator.h index 2d4274a4..18ee021c 100644 --- a/src/controls/QskFlickAnimator.h +++ b/src/controls/QskFlickAnimator.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskFocusIndicator.cpp b/src/controls/QskFocusIndicator.cpp index 8051de8b..2601cc1a 100644 --- a/src/controls/QskFocusIndicator.cpp +++ b/src/controls/QskFocusIndicator.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskFocusIndicator.h b/src/controls/QskFocusIndicator.h index 63241aab..330edd1c 100644 --- a/src/controls/QskFocusIndicator.h +++ b/src/controls/QskFocusIndicator.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskFocusIndicatorSkinlet.cpp b/src/controls/QskFocusIndicatorSkinlet.cpp index 5c196aff..96988a9b 100644 --- a/src/controls/QskFocusIndicatorSkinlet.cpp +++ b/src/controls/QskFocusIndicatorSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskFocusIndicatorSkinlet.h b/src/controls/QskFocusIndicatorSkinlet.h index e58e5663..f76c4cb0 100644 --- a/src/controls/QskFocusIndicatorSkinlet.h +++ b/src/controls/QskFocusIndicatorSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskGesture.cpp b/src/controls/QskGesture.cpp index ef4b177a..efb4765e 100644 --- a/src/controls/QskGesture.cpp +++ b/src/controls/QskGesture.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskGesture.h b/src/controls/QskGesture.h index 7432c6b4..847f6200 100644 --- a/src/controls/QskGesture.h +++ b/src/controls/QskGesture.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskGestureRecognizer.cpp b/src/controls/QskGestureRecognizer.cpp index 099307ab..9afb4e64 100644 --- a/src/controls/QskGestureRecognizer.cpp +++ b/src/controls/QskGestureRecognizer.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskGestureRecognizer.h b/src/controls/QskGestureRecognizer.h index c4ac00dc..38c1ca96 100644 --- a/src/controls/QskGestureRecognizer.h +++ b/src/controls/QskGestureRecognizer.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskGraphicLabel.cpp b/src/controls/QskGraphicLabel.cpp index ff593e2c..39a1802a 100644 --- a/src/controls/QskGraphicLabel.cpp +++ b/src/controls/QskGraphicLabel.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskGraphicLabel.h b/src/controls/QskGraphicLabel.h index 14268c8d..12a12881 100644 --- a/src/controls/QskGraphicLabel.h +++ b/src/controls/QskGraphicLabel.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskGraphicLabelSkinlet.cpp b/src/controls/QskGraphicLabelSkinlet.cpp index 4959a8c6..2f156432 100644 --- a/src/controls/QskGraphicLabelSkinlet.cpp +++ b/src/controls/QskGraphicLabelSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskGraphicLabelSkinlet.h b/src/controls/QskGraphicLabelSkinlet.h index 9700e0c3..dbc64e1a 100644 --- a/src/controls/QskGraphicLabelSkinlet.h +++ b/src/controls/QskGraphicLabelSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskHintAnimator.cpp b/src/controls/QskHintAnimator.cpp index cec53ccd..2b0c8df6 100644 --- a/src/controls/QskHintAnimator.cpp +++ b/src/controls/QskHintAnimator.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskHintAnimator.h b/src/controls/QskHintAnimator.h index 6c645202..6708e2bd 100644 --- a/src/controls/QskHintAnimator.h +++ b/src/controls/QskHintAnimator.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskInputGrabber.cpp b/src/controls/QskInputGrabber.cpp index 81219392..187f5cc8 100644 --- a/src/controls/QskInputGrabber.cpp +++ b/src/controls/QskInputGrabber.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskInputGrabber.h b/src/controls/QskInputGrabber.h index 8ef0cb78..1fe83fe3 100644 --- a/src/controls/QskInputGrabber.h +++ b/src/controls/QskInputGrabber.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskListView.cpp b/src/controls/QskListView.cpp index b74e0c38..ede7038f 100644 --- a/src/controls/QskListView.cpp +++ b/src/controls/QskListView.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskListView.h b/src/controls/QskListView.h index 8023cfcf..82a7cfe4 100644 --- a/src/controls/QskListView.h +++ b/src/controls/QskListView.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskListViewSkinlet.cpp b/src/controls/QskListViewSkinlet.cpp index 77907d75..2017da67 100644 --- a/src/controls/QskListViewSkinlet.cpp +++ b/src/controls/QskListViewSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskListViewSkinlet.h b/src/controls/QskListViewSkinlet.h index c16cc637..fad76b21 100644 --- a/src/controls/QskListViewSkinlet.h +++ b/src/controls/QskListViewSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskMainView.cpp b/src/controls/QskMainView.cpp index cad52776..a02fc60c 100644 --- a/src/controls/QskMainView.cpp +++ b/src/controls/QskMainView.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskMainView.h b/src/controls/QskMainView.h index c0160e6c..35950c68 100644 --- a/src/controls/QskMainView.h +++ b/src/controls/QskMainView.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskMenu.cpp b/src/controls/QskMenu.cpp index 3d22ce17..e690332b 100644 --- a/src/controls/QskMenu.cpp +++ b/src/controls/QskMenu.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskMenu.h b/src/controls/QskMenu.h index b0042455..88670ec6 100644 --- a/src/controls/QskMenu.h +++ b/src/controls/QskMenu.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskMenuSkinlet.cpp b/src/controls/QskMenuSkinlet.cpp index dae18d89..7ee5bf81 100644 --- a/src/controls/QskMenuSkinlet.cpp +++ b/src/controls/QskMenuSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskMenuSkinlet.h b/src/controls/QskMenuSkinlet.h index 34a3c0b5..1751aa8f 100644 --- a/src/controls/QskMenuSkinlet.h +++ b/src/controls/QskMenuSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskObjectTree.cpp b/src/controls/QskObjectTree.cpp index dfb8a18c..8ad73138 100644 --- a/src/controls/QskObjectTree.cpp +++ b/src/controls/QskObjectTree.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskObjectTree.h b/src/controls/QskObjectTree.h index 9ad04570..b112e6e8 100644 --- a/src/controls/QskObjectTree.h +++ b/src/controls/QskObjectTree.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPageIndicator.cpp b/src/controls/QskPageIndicator.cpp index a16eddf8..fcf94251 100644 --- a/src/controls/QskPageIndicator.cpp +++ b/src/controls/QskPageIndicator.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPageIndicator.h b/src/controls/QskPageIndicator.h index 0f82fce2..3d18d534 100644 --- a/src/controls/QskPageIndicator.h +++ b/src/controls/QskPageIndicator.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPageIndicatorSkinlet.cpp b/src/controls/QskPageIndicatorSkinlet.cpp index 11424045..15906504 100644 --- a/src/controls/QskPageIndicatorSkinlet.cpp +++ b/src/controls/QskPageIndicatorSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPageIndicatorSkinlet.h b/src/controls/QskPageIndicatorSkinlet.h index 078061f2..3a935392 100644 --- a/src/controls/QskPageIndicatorSkinlet.h +++ b/src/controls/QskPageIndicatorSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPanGestureRecognizer.cpp b/src/controls/QskPanGestureRecognizer.cpp index 859b8d91..9d9eee04 100644 --- a/src/controls/QskPanGestureRecognizer.cpp +++ b/src/controls/QskPanGestureRecognizer.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPanGestureRecognizer.h b/src/controls/QskPanGestureRecognizer.h index ba3bb121..448524cc 100644 --- a/src/controls/QskPanGestureRecognizer.h +++ b/src/controls/QskPanGestureRecognizer.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPopup.cpp b/src/controls/QskPopup.cpp index c11ad127..41e0111c 100644 --- a/src/controls/QskPopup.cpp +++ b/src/controls/QskPopup.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPopup.h b/src/controls/QskPopup.h index caf66346..94feb773 100644 --- a/src/controls/QskPopup.h +++ b/src/controls/QskPopup.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPopupSkinlet.cpp b/src/controls/QskPopupSkinlet.cpp index b989dc1e..47f2fbef 100644 --- a/src/controls/QskPopupSkinlet.cpp +++ b/src/controls/QskPopupSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPopupSkinlet.h b/src/controls/QskPopupSkinlet.h index ecd3a758..7e37298d 100644 --- a/src/controls/QskPopupSkinlet.h +++ b/src/controls/QskPopupSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressBar.cpp b/src/controls/QskProgressBar.cpp index 92a964ce..16b17f63 100644 --- a/src/controls/QskProgressBar.cpp +++ b/src/controls/QskProgressBar.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressBar.h b/src/controls/QskProgressBar.h index f1f1b613..df844df8 100644 --- a/src/controls/QskProgressBar.h +++ b/src/controls/QskProgressBar.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressBarSkinlet.cpp b/src/controls/QskProgressBarSkinlet.cpp index 92be1c09..74fe9e69 100644 --- a/src/controls/QskProgressBarSkinlet.cpp +++ b/src/controls/QskProgressBarSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressBarSkinlet.h b/src/controls/QskProgressBarSkinlet.h index a3f36cd1..581630bc 100644 --- a/src/controls/QskProgressBarSkinlet.h +++ b/src/controls/QskProgressBarSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressIndicator.cpp b/src/controls/QskProgressIndicator.cpp index 9cf220e4..7dd8d11e 100644 --- a/src/controls/QskProgressIndicator.cpp +++ b/src/controls/QskProgressIndicator.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressIndicator.h b/src/controls/QskProgressIndicator.h index 77d49002..4df628f7 100644 --- a/src/controls/QskProgressIndicator.h +++ b/src/controls/QskProgressIndicator.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressIndicatorSkinlet.cpp b/src/controls/QskProgressIndicatorSkinlet.cpp index 04d98efb..d686377d 100644 --- a/src/controls/QskProgressIndicatorSkinlet.cpp +++ b/src/controls/QskProgressIndicatorSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressIndicatorSkinlet.h b/src/controls/QskProgressIndicatorSkinlet.h index b99a53da..e1299adc 100644 --- a/src/controls/QskProgressIndicatorSkinlet.h +++ b/src/controls/QskProgressIndicatorSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressRing.cpp b/src/controls/QskProgressRing.cpp index 9734ccab..dcc1d8d6 100644 --- a/src/controls/QskProgressRing.cpp +++ b/src/controls/QskProgressRing.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2023 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressRing.h b/src/controls/QskProgressRing.h index e4ce68e2..90d0048c 100644 --- a/src/controls/QskProgressRing.h +++ b/src/controls/QskProgressRing.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2023 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressRingSkinlet.cpp b/src/controls/QskProgressRingSkinlet.cpp index fa5c7ca5..86e90329 100644 --- a/src/controls/QskProgressRingSkinlet.cpp +++ b/src/controls/QskProgressRingSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2023 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskProgressRingSkinlet.h b/src/controls/QskProgressRingSkinlet.h index 009640ee..767930b1 100644 --- a/src/controls/QskProgressRingSkinlet.h +++ b/src/controls/QskProgressRingSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2023 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPushButton.cpp b/src/controls/QskPushButton.cpp index 862872f2..3d866cc7 100644 --- a/src/controls/QskPushButton.cpp +++ b/src/controls/QskPushButton.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPushButton.h b/src/controls/QskPushButton.h index d3699905..93515034 100644 --- a/src/controls/QskPushButton.h +++ b/src/controls/QskPushButton.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPushButtonSkinlet.cpp b/src/controls/QskPushButtonSkinlet.cpp index 43f94fea..7f19d782 100644 --- a/src/controls/QskPushButtonSkinlet.cpp +++ b/src/controls/QskPushButtonSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskPushButtonSkinlet.h b/src/controls/QskPushButtonSkinlet.h index b2d2583c..852bfd98 100644 --- a/src/controls/QskPushButtonSkinlet.h +++ b/src/controls/QskPushButtonSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskQuick.cpp b/src/controls/QskQuick.cpp index 9d223a36..3c153188 100644 --- a/src/controls/QskQuick.cpp +++ b/src/controls/QskQuick.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskQuick.h b/src/controls/QskQuick.h index c8afaafd..31024855 100644 --- a/src/controls/QskQuick.h +++ b/src/controls/QskQuick.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskQuickItem.cpp b/src/controls/QskQuickItem.cpp index 76d786ac..aa106f08 100644 --- a/src/controls/QskQuickItem.cpp +++ b/src/controls/QskQuickItem.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskQuickItem.h b/src/controls/QskQuickItem.h index 1b519a24..02f1807f 100644 --- a/src/controls/QskQuickItem.h +++ b/src/controls/QskQuickItem.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskQuickItemPrivate.cpp b/src/controls/QskQuickItemPrivate.cpp index 52e86b6f..bdfcb19e 100644 --- a/src/controls/QskQuickItemPrivate.cpp +++ b/src/controls/QskQuickItemPrivate.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskQuickItemPrivate.h b/src/controls/QskQuickItemPrivate.h index 150f4b93..615b3df3 100644 --- a/src/controls/QskQuickItemPrivate.h +++ b/src/controls/QskQuickItemPrivate.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskRadioBox.cpp b/src/controls/QskRadioBox.cpp index 70707591..482e3704 100644 --- a/src/controls/QskRadioBox.cpp +++ b/src/controls/QskRadioBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskRadioBox.h b/src/controls/QskRadioBox.h index 973f4c48..70cbcd9c 100644 --- a/src/controls/QskRadioBox.h +++ b/src/controls/QskRadioBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskRadioBoxSkinlet.cpp b/src/controls/QskRadioBoxSkinlet.cpp index 5accb744..2bc73a19 100644 --- a/src/controls/QskRadioBoxSkinlet.cpp +++ b/src/controls/QskRadioBoxSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskRadioBoxSkinlet.h b/src/controls/QskRadioBoxSkinlet.h index f934c5ec..3a777c3c 100644 --- a/src/controls/QskRadioBoxSkinlet.h +++ b/src/controls/QskRadioBoxSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskScrollArea.cpp b/src/controls/QskScrollArea.cpp index 971848a1..6f4602c7 100644 --- a/src/controls/QskScrollArea.cpp +++ b/src/controls/QskScrollArea.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskScrollArea.h b/src/controls/QskScrollArea.h index 957c29a8..e9139694 100644 --- a/src/controls/QskScrollArea.h +++ b/src/controls/QskScrollArea.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskScrollBox.cpp b/src/controls/QskScrollBox.cpp index a975baed..65c78795 100644 --- a/src/controls/QskScrollBox.cpp +++ b/src/controls/QskScrollBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskScrollBox.h b/src/controls/QskScrollBox.h index c7a64ffd..9b191810 100644 --- a/src/controls/QskScrollBox.h +++ b/src/controls/QskScrollBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskScrollView.cpp b/src/controls/QskScrollView.cpp index 34622005..3627cc99 100644 --- a/src/controls/QskScrollView.cpp +++ b/src/controls/QskScrollView.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskScrollView.h b/src/controls/QskScrollView.h index 4771b394..6b340acf 100644 --- a/src/controls/QskScrollView.h +++ b/src/controls/QskScrollView.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskScrollViewSkinlet.cpp b/src/controls/QskScrollViewSkinlet.cpp index 3ab7848e..05865dc6 100644 --- a/src/controls/QskScrollViewSkinlet.cpp +++ b/src/controls/QskScrollViewSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskScrollViewSkinlet.h b/src/controls/QskScrollViewSkinlet.h index 0bc9d190..7e9feff0 100644 --- a/src/controls/QskScrollViewSkinlet.h +++ b/src/controls/QskScrollViewSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSegmentedBar.cpp b/src/controls/QskSegmentedBar.cpp index 058b728f..94b094c2 100644 --- a/src/controls/QskSegmentedBar.cpp +++ b/src/controls/QskSegmentedBar.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSegmentedBar.h b/src/controls/QskSegmentedBar.h index d65735a7..e32cbf5b 100644 --- a/src/controls/QskSegmentedBar.h +++ b/src/controls/QskSegmentedBar.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSegmentedBarSkinlet.cpp b/src/controls/QskSegmentedBarSkinlet.cpp index 17dc78ec..602587d7 100644 --- a/src/controls/QskSegmentedBarSkinlet.cpp +++ b/src/controls/QskSegmentedBarSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSegmentedBarSkinlet.h b/src/controls/QskSegmentedBarSkinlet.h index 15fa1d39..b63a319c 100644 --- a/src/controls/QskSegmentedBarSkinlet.h +++ b/src/controls/QskSegmentedBarSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSeparator.cpp b/src/controls/QskSeparator.cpp index c7802be7..14bacf42 100644 --- a/src/controls/QskSeparator.cpp +++ b/src/controls/QskSeparator.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSeparator.h b/src/controls/QskSeparator.h index 1453a273..b7365777 100644 --- a/src/controls/QskSeparator.h +++ b/src/controls/QskSeparator.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSeparatorSkinlet.cpp b/src/controls/QskSeparatorSkinlet.cpp index 0c2c1117..a117f328 100644 --- a/src/controls/QskSeparatorSkinlet.cpp +++ b/src/controls/QskSeparatorSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSeparatorSkinlet.h b/src/controls/QskSeparatorSkinlet.h index 35b035ca..09274471 100644 --- a/src/controls/QskSeparatorSkinlet.h +++ b/src/controls/QskSeparatorSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSetup.cpp b/src/controls/QskSetup.cpp index 37e4edc4..8fcf0319 100644 --- a/src/controls/QskSetup.cpp +++ b/src/controls/QskSetup.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSetup.h b/src/controls/QskSetup.h index 26da9732..1ea4c7f0 100644 --- a/src/controls/QskSetup.h +++ b/src/controls/QskSetup.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskShortcutMap.cpp b/src/controls/QskShortcutMap.cpp index c7d518ec..147924f6 100644 --- a/src/controls/QskShortcutMap.cpp +++ b/src/controls/QskShortcutMap.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskShortcutMap.h b/src/controls/QskShortcutMap.h index 69b895ee..3d547f33 100644 --- a/src/controls/QskShortcutMap.h +++ b/src/controls/QskShortcutMap.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSimpleListBox.cpp b/src/controls/QskSimpleListBox.cpp index 2e818059..c94acc47 100644 --- a/src/controls/QskSimpleListBox.cpp +++ b/src/controls/QskSimpleListBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSimpleListBox.h b/src/controls/QskSimpleListBox.h index 360e522d..86f94e64 100644 --- a/src/controls/QskSimpleListBox.h +++ b/src/controls/QskSimpleListBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkin.cpp b/src/controls/QskSkin.cpp index a791eb05..e93fbec6 100644 --- a/src/controls/QskSkin.cpp +++ b/src/controls/QskSkin.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkin.h b/src/controls/QskSkin.h index ba6a6206..5bd9d799 100644 --- a/src/controls/QskSkin.h +++ b/src/controls/QskSkin.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinFactory.cpp b/src/controls/QskSkinFactory.cpp index 7f9ecbc3..9d1ab835 100644 --- a/src/controls/QskSkinFactory.cpp +++ b/src/controls/QskSkinFactory.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinFactory.h b/src/controls/QskSkinFactory.h index da2e8d2f..a6fc67d8 100644 --- a/src/controls/QskSkinFactory.h +++ b/src/controls/QskSkinFactory.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinHintTable.cpp b/src/controls/QskSkinHintTable.cpp index 4a830278..cd0d1482 100644 --- a/src/controls/QskSkinHintTable.cpp +++ b/src/controls/QskSkinHintTable.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinHintTable.h b/src/controls/QskSkinHintTable.h index 0bdf0683..006ec57f 100644 --- a/src/controls/QskSkinHintTable.h +++ b/src/controls/QskSkinHintTable.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinHintTableEditor.cpp b/src/controls/QskSkinHintTableEditor.cpp index cd92d991..a89ed995 100644 --- a/src/controls/QskSkinHintTableEditor.cpp +++ b/src/controls/QskSkinHintTableEditor.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinHintTableEditor.h b/src/controls/QskSkinHintTableEditor.h index 8b9aa13d..b91255c4 100644 --- a/src/controls/QskSkinHintTableEditor.h +++ b/src/controls/QskSkinHintTableEditor.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinManager.cpp b/src/controls/QskSkinManager.cpp index 33864821..ae4cc662 100644 --- a/src/controls/QskSkinManager.cpp +++ b/src/controls/QskSkinManager.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinManager.h b/src/controls/QskSkinManager.h index fd88e450..74563854 100644 --- a/src/controls/QskSkinManager.h +++ b/src/controls/QskSkinManager.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinStateChanger.h b/src/controls/QskSkinStateChanger.h index 906fdbae..4aaba3cc 100644 --- a/src/controls/QskSkinStateChanger.h +++ b/src/controls/QskSkinStateChanger.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinTransition.cpp b/src/controls/QskSkinTransition.cpp index dc6ee00c..8b6776a0 100644 --- a/src/controls/QskSkinTransition.cpp +++ b/src/controls/QskSkinTransition.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinTransition.h b/src/controls/QskSkinTransition.h index 6fc13f1b..79598897 100644 --- a/src/controls/QskSkinTransition.h +++ b/src/controls/QskSkinTransition.h @@ -1,3 +1,8 @@ +/****************************************************************************** + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause + *****************************************************************************/ + #ifndef QSK_SKIN_TRANSITION_H #define QSK_SKIN_TRANSITION_H diff --git a/src/controls/QskSkinlet.cpp b/src/controls/QskSkinlet.cpp index 1924339e..93b86dce 100644 --- a/src/controls/QskSkinlet.cpp +++ b/src/controls/QskSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinlet.h b/src/controls/QskSkinlet.h index 3cfc7db0..e4a76de6 100644 --- a/src/controls/QskSkinlet.h +++ b/src/controls/QskSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinnable.cpp b/src/controls/QskSkinnable.cpp index e82f51b3..3931dd9d 100644 --- a/src/controls/QskSkinnable.cpp +++ b/src/controls/QskSkinnable.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSkinnable.h b/src/controls/QskSkinnable.h index 94886960..bed91135 100644 --- a/src/controls/QskSkinnable.h +++ b/src/controls/QskSkinnable.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSlider.cpp b/src/controls/QskSlider.cpp index 15f6184c..d92366c3 100644 --- a/src/controls/QskSlider.cpp +++ b/src/controls/QskSlider.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSlider.h b/src/controls/QskSlider.h index 68413b0b..88418d80 100644 --- a/src/controls/QskSlider.h +++ b/src/controls/QskSlider.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSliderSkinlet.cpp b/src/controls/QskSliderSkinlet.cpp index 3adda86c..9dbc720b 100644 --- a/src/controls/QskSliderSkinlet.cpp +++ b/src/controls/QskSliderSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSliderSkinlet.h b/src/controls/QskSliderSkinlet.h index 3795c0b2..170e13c6 100644 --- a/src/controls/QskSliderSkinlet.h +++ b/src/controls/QskSliderSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSpinBox.cpp b/src/controls/QskSpinBox.cpp index 9959cac7..56ae6e7f 100644 --- a/src/controls/QskSpinBox.cpp +++ b/src/controls/QskSpinBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSpinBox.h b/src/controls/QskSpinBox.h index 5837e951..518537c1 100644 --- a/src/controls/QskSpinBox.h +++ b/src/controls/QskSpinBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSpinBoxSkinlet.cpp b/src/controls/QskSpinBoxSkinlet.cpp index b0394f30..8970f703 100644 --- a/src/controls/QskSpinBoxSkinlet.cpp +++ b/src/controls/QskSpinBoxSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSpinBoxSkinlet.h b/src/controls/QskSpinBoxSkinlet.h index 81fc3fdb..1a0710b1 100644 --- a/src/controls/QskSpinBoxSkinlet.h +++ b/src/controls/QskSpinBoxSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskStatusIndicator.cpp b/src/controls/QskStatusIndicator.cpp index 643d2fe4..09a67a34 100644 --- a/src/controls/QskStatusIndicator.cpp +++ b/src/controls/QskStatusIndicator.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskStatusIndicator.h b/src/controls/QskStatusIndicator.h index b08e8e54..a99ddc52 100644 --- a/src/controls/QskStatusIndicator.h +++ b/src/controls/QskStatusIndicator.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskStatusIndicatorSkinlet.cpp b/src/controls/QskStatusIndicatorSkinlet.cpp index 50a512b3..9cb2e7d7 100644 --- a/src/controls/QskStatusIndicatorSkinlet.cpp +++ b/src/controls/QskStatusIndicatorSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskStatusIndicatorSkinlet.h b/src/controls/QskStatusIndicatorSkinlet.h index 1f128d3a..782b97e8 100644 --- a/src/controls/QskStatusIndicatorSkinlet.h +++ b/src/controls/QskStatusIndicatorSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSubWindow.cpp b/src/controls/QskSubWindow.cpp index 229b4000..90833ef6 100644 --- a/src/controls/QskSubWindow.cpp +++ b/src/controls/QskSubWindow.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSubWindow.h b/src/controls/QskSubWindow.h index 42afd11b..a23932b0 100644 --- a/src/controls/QskSubWindow.h +++ b/src/controls/QskSubWindow.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSubWindowArea.cpp b/src/controls/QskSubWindowArea.cpp index 7829a214..5e7db643 100644 --- a/src/controls/QskSubWindowArea.cpp +++ b/src/controls/QskSubWindowArea.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSubWindowArea.h b/src/controls/QskSubWindowArea.h index 171fb7ec..3400ab2e 100644 --- a/src/controls/QskSubWindowArea.h +++ b/src/controls/QskSubWindowArea.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSubWindowAreaSkinlet.cpp b/src/controls/QskSubWindowAreaSkinlet.cpp index 32dc81f8..4c66656d 100644 --- a/src/controls/QskSubWindowAreaSkinlet.cpp +++ b/src/controls/QskSubWindowAreaSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSubWindowAreaSkinlet.h b/src/controls/QskSubWindowAreaSkinlet.h index 99c2ac22..d93929a5 100644 --- a/src/controls/QskSubWindowAreaSkinlet.h +++ b/src/controls/QskSubWindowAreaSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSubWindowSkinlet.cpp b/src/controls/QskSubWindowSkinlet.cpp index 84e9a571..ff69abeb 100644 --- a/src/controls/QskSubWindowSkinlet.cpp +++ b/src/controls/QskSubWindowSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSubWindowSkinlet.h b/src/controls/QskSubWindowSkinlet.h index fd2bc5dc..fb1f1187 100644 --- a/src/controls/QskSubWindowSkinlet.h +++ b/src/controls/QskSubWindowSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSwipeView.cpp b/src/controls/QskSwipeView.cpp index 545c416f..a1e94a09 100644 --- a/src/controls/QskSwipeView.cpp +++ b/src/controls/QskSwipeView.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSwipeView.h b/src/controls/QskSwipeView.h index 390634e0..5135a840 100644 --- a/src/controls/QskSwipeView.h +++ b/src/controls/QskSwipeView.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSwitchButton.cpp b/src/controls/QskSwitchButton.cpp index c0b28d3c..b0dd5800 100644 --- a/src/controls/QskSwitchButton.cpp +++ b/src/controls/QskSwitchButton.cpp @@ -1,3 +1,8 @@ +/****************************************************************************** + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause + *****************************************************************************/ + #include "QskSwitchButton.h" QSK_SUBCONTROL( QskSwitchButton, Handle ) diff --git a/src/controls/QskSwitchButton.h b/src/controls/QskSwitchButton.h index 067d2638..cc32faed 100644 --- a/src/controls/QskSwitchButton.h +++ b/src/controls/QskSwitchButton.h @@ -1,3 +1,8 @@ +/****************************************************************************** + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause + *****************************************************************************/ + #ifndef QSK_SWITCH_BUTTON_H #define QSK_SWITCH_BUTTON_H diff --git a/src/controls/QskSwitchButtonSkinlet.cpp b/src/controls/QskSwitchButtonSkinlet.cpp index 9de85d8b..e755c8c6 100644 --- a/src/controls/QskSwitchButtonSkinlet.cpp +++ b/src/controls/QskSwitchButtonSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskSwitchButtonSkinlet.h b/src/controls/QskSwitchButtonSkinlet.h index 653ec469..f9926d0e 100644 --- a/src/controls/QskSwitchButtonSkinlet.h +++ b/src/controls/QskSwitchButtonSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTabBar.cpp b/src/controls/QskTabBar.cpp index 919e829e..eb0eaff8 100644 --- a/src/controls/QskTabBar.cpp +++ b/src/controls/QskTabBar.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTabBar.h b/src/controls/QskTabBar.h index 922582ce..e80c24fd 100644 --- a/src/controls/QskTabBar.h +++ b/src/controls/QskTabBar.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTabButton.cpp b/src/controls/QskTabButton.cpp index b1ea1977..71e0fd11 100644 --- a/src/controls/QskTabButton.cpp +++ b/src/controls/QskTabButton.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTabButton.h b/src/controls/QskTabButton.h index 95b1394f..422c744f 100644 --- a/src/controls/QskTabButton.h +++ b/src/controls/QskTabButton.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTabButtonSkinlet.cpp b/src/controls/QskTabButtonSkinlet.cpp index 0299d5c6..109f0a99 100644 --- a/src/controls/QskTabButtonSkinlet.cpp +++ b/src/controls/QskTabButtonSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTabButtonSkinlet.h b/src/controls/QskTabButtonSkinlet.h index d7940996..5b0f7337 100644 --- a/src/controls/QskTabButtonSkinlet.h +++ b/src/controls/QskTabButtonSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTabView.cpp b/src/controls/QskTabView.cpp index 100a55f8..5a2a6285 100644 --- a/src/controls/QskTabView.cpp +++ b/src/controls/QskTabView.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTabView.h b/src/controls/QskTabView.h index c625576e..9df69c6d 100644 --- a/src/controls/QskTabView.h +++ b/src/controls/QskTabView.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTabViewSkinlet.cpp b/src/controls/QskTabViewSkinlet.cpp index 8946f167..3cb2835f 100644 --- a/src/controls/QskTabViewSkinlet.cpp +++ b/src/controls/QskTabViewSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTabViewSkinlet.h b/src/controls/QskTabViewSkinlet.h index 057e19eb..6427fd1e 100644 --- a/src/controls/QskTabViewSkinlet.h +++ b/src/controls/QskTabViewSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTextInput.cpp b/src/controls/QskTextInput.cpp index 92e79076..91491377 100644 --- a/src/controls/QskTextInput.cpp +++ b/src/controls/QskTextInput.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTextInput.h b/src/controls/QskTextInput.h index e676156e..f26e6a6b 100644 --- a/src/controls/QskTextInput.h +++ b/src/controls/QskTextInput.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTextInputSkinlet.cpp b/src/controls/QskTextInputSkinlet.cpp index 99b57fe4..8f0e1b4c 100644 --- a/src/controls/QskTextInputSkinlet.cpp +++ b/src/controls/QskTextInputSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTextInputSkinlet.h b/src/controls/QskTextInputSkinlet.h index ac12198a..946c6d32 100644 --- a/src/controls/QskTextInputSkinlet.h +++ b/src/controls/QskTextInputSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTextLabel.cpp b/src/controls/QskTextLabel.cpp index 370c6b26..d5fd6d24 100644 --- a/src/controls/QskTextLabel.cpp +++ b/src/controls/QskTextLabel.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTextLabel.h b/src/controls/QskTextLabel.h index b6e766b0..4911a8dd 100644 --- a/src/controls/QskTextLabel.h +++ b/src/controls/QskTextLabel.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTextLabelSkinlet.cpp b/src/controls/QskTextLabelSkinlet.cpp index a981386c..3826afeb 100644 --- a/src/controls/QskTextLabelSkinlet.cpp +++ b/src/controls/QskTextLabelSkinlet.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskTextLabelSkinlet.h b/src/controls/QskTextLabelSkinlet.h index 85752cab..1aa53f1c 100644 --- a/src/controls/QskTextLabelSkinlet.h +++ b/src/controls/QskTextLabelSkinlet.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskVariantAnimator.cpp b/src/controls/QskVariantAnimator.cpp index 61b8a57c..7518cc9a 100644 --- a/src/controls/QskVariantAnimator.cpp +++ b/src/controls/QskVariantAnimator.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskVariantAnimator.h b/src/controls/QskVariantAnimator.h index ea438e62..0f86e78a 100644 --- a/src/controls/QskVariantAnimator.h +++ b/src/controls/QskVariantAnimator.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskWindow.cpp b/src/controls/QskWindow.cpp index 7955320a..431e9da9 100644 --- a/src/controls/QskWindow.cpp +++ b/src/controls/QskWindow.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/controls/QskWindow.h b/src/controls/QskWindow.h index 07320b65..1dca9609 100644 --- a/src/controls/QskWindow.h +++ b/src/controls/QskWindow.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskDialog.cpp b/src/dialogs/QskDialog.cpp index d75b5b4e..c3f21a97 100644 --- a/src/dialogs/QskDialog.cpp +++ b/src/dialogs/QskDialog.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskDialog.h b/src/dialogs/QskDialog.h index 51c0fe3f..988e9162 100644 --- a/src/dialogs/QskDialog.h +++ b/src/dialogs/QskDialog.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskDialogButton.cpp b/src/dialogs/QskDialogButton.cpp index 82553680..d3ccde3b 100644 --- a/src/dialogs/QskDialogButton.cpp +++ b/src/dialogs/QskDialogButton.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskDialogButton.h b/src/dialogs/QskDialogButton.h index 44f3c902..7fd1f0ae 100644 --- a/src/dialogs/QskDialogButton.h +++ b/src/dialogs/QskDialogButton.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskDialogButtonBox.cpp b/src/dialogs/QskDialogButtonBox.cpp index 47cfc75a..f71290c6 100644 --- a/src/dialogs/QskDialogButtonBox.cpp +++ b/src/dialogs/QskDialogButtonBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskDialogButtonBox.h b/src/dialogs/QskDialogButtonBox.h index db9dc42c..620a0be8 100644 --- a/src/dialogs/QskDialogButtonBox.h +++ b/src/dialogs/QskDialogButtonBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskDialogSubWindow.cpp b/src/dialogs/QskDialogSubWindow.cpp index 5643fec7..22dd751f 100644 --- a/src/dialogs/QskDialogSubWindow.cpp +++ b/src/dialogs/QskDialogSubWindow.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskDialogSubWindow.h b/src/dialogs/QskDialogSubWindow.h index c0cff1d7..2a045e90 100644 --- a/src/dialogs/QskDialogSubWindow.h +++ b/src/dialogs/QskDialogSubWindow.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskDialogWindow.cpp b/src/dialogs/QskDialogWindow.cpp index 99014d6c..e8c2ea25 100644 --- a/src/dialogs/QskDialogWindow.cpp +++ b/src/dialogs/QskDialogWindow.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskDialogWindow.h b/src/dialogs/QskDialogWindow.h index 40e7ada7..6b81e05f 100644 --- a/src/dialogs/QskDialogWindow.h +++ b/src/dialogs/QskDialogWindow.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskMessageSubWindow.cpp b/src/dialogs/QskMessageSubWindow.cpp index 966247ae..ad9fde29 100644 --- a/src/dialogs/QskMessageSubWindow.cpp +++ b/src/dialogs/QskMessageSubWindow.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskMessageSubWindow.h b/src/dialogs/QskMessageSubWindow.h index 54d844ad..fe4cb75b 100644 --- a/src/dialogs/QskMessageSubWindow.h +++ b/src/dialogs/QskMessageSubWindow.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskMessageWindow.cpp b/src/dialogs/QskMessageWindow.cpp index c5195b26..e22d3e55 100644 --- a/src/dialogs/QskMessageWindow.cpp +++ b/src/dialogs/QskMessageWindow.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskMessageWindow.h b/src/dialogs/QskMessageWindow.h index 8965946e..1a65fca3 100644 --- a/src/dialogs/QskMessageWindow.h +++ b/src/dialogs/QskMessageWindow.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskSelectionSubWindow.cpp b/src/dialogs/QskSelectionSubWindow.cpp index 3f24e187..91a22f38 100644 --- a/src/dialogs/QskSelectionSubWindow.cpp +++ b/src/dialogs/QskSelectionSubWindow.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskSelectionSubWindow.h b/src/dialogs/QskSelectionSubWindow.h index e36390dd..a8373bfa 100644 --- a/src/dialogs/QskSelectionSubWindow.h +++ b/src/dialogs/QskSelectionSubWindow.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskSelectionWindow.cpp b/src/dialogs/QskSelectionWindow.cpp index b95542c5..f14674e3 100644 --- a/src/dialogs/QskSelectionWindow.cpp +++ b/src/dialogs/QskSelectionWindow.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/dialogs/QskSelectionWindow.h b/src/dialogs/QskSelectionWindow.h index b14727c0..c54e9879 100644 --- a/src/dialogs/QskSelectionWindow.h +++ b/src/dialogs/QskSelectionWindow.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskColorFilter.cpp b/src/graphic/QskColorFilter.cpp index f8049754..d99fa073 100644 --- a/src/graphic/QskColorFilter.cpp +++ b/src/graphic/QskColorFilter.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskColorFilter.h b/src/graphic/QskColorFilter.h index c45b10c8..9f72e3e4 100644 --- a/src/graphic/QskColorFilter.h +++ b/src/graphic/QskColorFilter.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphic.cpp b/src/graphic/QskGraphic.cpp index c6326790..791e79ae 100644 --- a/src/graphic/QskGraphic.cpp +++ b/src/graphic/QskGraphic.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphic.h b/src/graphic/QskGraphic.h index b45aa937..bd678397 100644 --- a/src/graphic/QskGraphic.h +++ b/src/graphic/QskGraphic.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicIO.cpp b/src/graphic/QskGraphicIO.cpp index 8678d9ea..77d21785 100644 --- a/src/graphic/QskGraphicIO.cpp +++ b/src/graphic/QskGraphicIO.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicIO.h b/src/graphic/QskGraphicIO.h index c5d6fdf5..f4c40be7 100644 --- a/src/graphic/QskGraphicIO.h +++ b/src/graphic/QskGraphicIO.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicImageProvider.cpp b/src/graphic/QskGraphicImageProvider.cpp index f5111caa..9a1c8f7b 100644 --- a/src/graphic/QskGraphicImageProvider.cpp +++ b/src/graphic/QskGraphicImageProvider.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicImageProvider.h b/src/graphic/QskGraphicImageProvider.h index 35f870ce..5a92a3e5 100644 --- a/src/graphic/QskGraphicImageProvider.h +++ b/src/graphic/QskGraphicImageProvider.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicPaintEngine.cpp b/src/graphic/QskGraphicPaintEngine.cpp index 729361b0..7088d9c6 100644 --- a/src/graphic/QskGraphicPaintEngine.cpp +++ b/src/graphic/QskGraphicPaintEngine.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicPaintEngine.h b/src/graphic/QskGraphicPaintEngine.h index bb78d7a0..e34d806e 100644 --- a/src/graphic/QskGraphicPaintEngine.h +++ b/src/graphic/QskGraphicPaintEngine.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicProvider.cpp b/src/graphic/QskGraphicProvider.cpp index edc66ac7..da3767e2 100644 --- a/src/graphic/QskGraphicProvider.cpp +++ b/src/graphic/QskGraphicProvider.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicProvider.h b/src/graphic/QskGraphicProvider.h index 6c935a4d..2eead705 100644 --- a/src/graphic/QskGraphicProvider.h +++ b/src/graphic/QskGraphicProvider.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicProviderMap.cpp b/src/graphic/QskGraphicProviderMap.cpp index 2145fade..b60112bf 100644 --- a/src/graphic/QskGraphicProviderMap.cpp +++ b/src/graphic/QskGraphicProviderMap.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicProviderMap.h b/src/graphic/QskGraphicProviderMap.h index b71f0d56..30952172 100644 --- a/src/graphic/QskGraphicProviderMap.h +++ b/src/graphic/QskGraphicProviderMap.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicTextureFactory.cpp b/src/graphic/QskGraphicTextureFactory.cpp index 029ee187..24cff214 100644 --- a/src/graphic/QskGraphicTextureFactory.cpp +++ b/src/graphic/QskGraphicTextureFactory.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskGraphicTextureFactory.h b/src/graphic/QskGraphicTextureFactory.h index f31d8573..557e9eaf 100644 --- a/src/graphic/QskGraphicTextureFactory.h +++ b/src/graphic/QskGraphicTextureFactory.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskIcon.cpp b/src/graphic/QskIcon.cpp index 0bd4a5e4..afebe961 100644 --- a/src/graphic/QskIcon.cpp +++ b/src/graphic/QskIcon.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskIcon.h b/src/graphic/QskIcon.h index 681178e8..dbc7845b 100644 --- a/src/graphic/QskIcon.h +++ b/src/graphic/QskIcon.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskPainterCommand.cpp b/src/graphic/QskPainterCommand.cpp index 5a61b209..a6a3db70 100644 --- a/src/graphic/QskPainterCommand.cpp +++ b/src/graphic/QskPainterCommand.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskPainterCommand.h b/src/graphic/QskPainterCommand.h index e7d5ccde..e6dd7ac0 100644 --- a/src/graphic/QskPainterCommand.h +++ b/src/graphic/QskPainterCommand.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskStandardSymbol.cpp b/src/graphic/QskStandardSymbol.cpp index 6898b0df..80e63574 100644 --- a/src/graphic/QskStandardSymbol.cpp +++ b/src/graphic/QskStandardSymbol.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/graphic/QskStandardSymbol.h b/src/graphic/QskStandardSymbol.h index 100ab0b2..c79a6bbb 100644 --- a/src/graphic/QskStandardSymbol.h +++ b/src/graphic/QskStandardSymbol.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskHunspellTextPredictor.cpp b/src/inputpanel/QskHunspellTextPredictor.cpp index a172490c..49a4de9b 100644 --- a/src/inputpanel/QskHunspellTextPredictor.cpp +++ b/src/inputpanel/QskHunspellTextPredictor.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskHunspellTextPredictor.h b/src/inputpanel/QskHunspellTextPredictor.h index 10812ce1..11d7f0b6 100644 --- a/src/inputpanel/QskHunspellTextPredictor.h +++ b/src/inputpanel/QskHunspellTextPredictor.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskInputContext.cpp b/src/inputpanel/QskInputContext.cpp index 1e05eb0c..ec3aa01b 100644 --- a/src/inputpanel/QskInputContext.cpp +++ b/src/inputpanel/QskInputContext.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskInputContext.h b/src/inputpanel/QskInputContext.h index 2c046528..fa284e3e 100644 --- a/src/inputpanel/QskInputContext.h +++ b/src/inputpanel/QskInputContext.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskInputPanel.cpp b/src/inputpanel/QskInputPanel.cpp index 8ced7fea..9625873b 100644 --- a/src/inputpanel/QskInputPanel.cpp +++ b/src/inputpanel/QskInputPanel.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskInputPanel.h b/src/inputpanel/QskInputPanel.h index 79e45c9c..d72e3d7c 100644 --- a/src/inputpanel/QskInputPanel.h +++ b/src/inputpanel/QskInputPanel.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskInputPanelBox.cpp b/src/inputpanel/QskInputPanelBox.cpp index 23ba6879..46cda216 100644 --- a/src/inputpanel/QskInputPanelBox.cpp +++ b/src/inputpanel/QskInputPanelBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskInputPanelBox.h b/src/inputpanel/QskInputPanelBox.h index ac2edbba..aaaa8554 100644 --- a/src/inputpanel/QskInputPanelBox.h +++ b/src/inputpanel/QskInputPanelBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskInputPredictionBar.cpp b/src/inputpanel/QskInputPredictionBar.cpp index 330e4755..fa4c1f98 100644 --- a/src/inputpanel/QskInputPredictionBar.cpp +++ b/src/inputpanel/QskInputPredictionBar.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskInputPredictionBar.h b/src/inputpanel/QskInputPredictionBar.h index 2371f117..b4154f58 100644 --- a/src/inputpanel/QskInputPredictionBar.h +++ b/src/inputpanel/QskInputPredictionBar.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskPinyinTextPredictor.cpp b/src/inputpanel/QskPinyinTextPredictor.cpp index cd066109..e051b634 100644 --- a/src/inputpanel/QskPinyinTextPredictor.cpp +++ b/src/inputpanel/QskPinyinTextPredictor.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskPinyinTextPredictor.h b/src/inputpanel/QskPinyinTextPredictor.h index 8b9e0c08..00196728 100644 --- a/src/inputpanel/QskPinyinTextPredictor.h +++ b/src/inputpanel/QskPinyinTextPredictor.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskTextPredictor.cpp b/src/inputpanel/QskTextPredictor.cpp index c9b5144a..f5cbcf84 100644 --- a/src/inputpanel/QskTextPredictor.cpp +++ b/src/inputpanel/QskTextPredictor.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskTextPredictor.h b/src/inputpanel/QskTextPredictor.h index c17fa125..42e1387d 100644 --- a/src/inputpanel/QskTextPredictor.h +++ b/src/inputpanel/QskTextPredictor.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskVirtualKeyboard.cpp b/src/inputpanel/QskVirtualKeyboard.cpp index c0e7ccf9..1416a587 100644 --- a/src/inputpanel/QskVirtualKeyboard.cpp +++ b/src/inputpanel/QskVirtualKeyboard.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskVirtualKeyboard.h b/src/inputpanel/QskVirtualKeyboard.h index 8e45d455..ca660420 100644 --- a/src/inputpanel/QskVirtualKeyboard.h +++ b/src/inputpanel/QskVirtualKeyboard.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/inputpanel/QskVirtualKeyboardLayouts.cpp b/src/inputpanel/QskVirtualKeyboardLayouts.cpp index 44dfcc50..7d933f60 100644 --- a/src/inputpanel/QskVirtualKeyboardLayouts.cpp +++ b/src/inputpanel/QskVirtualKeyboardLayouts.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskGridBox.cpp b/src/layouts/QskGridBox.cpp index d0e93b99..15c6c2b9 100644 --- a/src/layouts/QskGridBox.cpp +++ b/src/layouts/QskGridBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskGridBox.h b/src/layouts/QskGridBox.h index f177ad49..73a8e1ed 100644 --- a/src/layouts/QskGridBox.h +++ b/src/layouts/QskGridBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskGridLayoutEngine.cpp b/src/layouts/QskGridLayoutEngine.cpp index cc56af13..dacf5ded 100644 --- a/src/layouts/QskGridLayoutEngine.cpp +++ b/src/layouts/QskGridLayoutEngine.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskGridLayoutEngine.h b/src/layouts/QskGridLayoutEngine.h index 37a63ef7..fab552e0 100644 --- a/src/layouts/QskGridLayoutEngine.h +++ b/src/layouts/QskGridLayoutEngine.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskIndexedLayoutBox.cpp b/src/layouts/QskIndexedLayoutBox.cpp index 7fb7a26a..cc219541 100644 --- a/src/layouts/QskIndexedLayoutBox.cpp +++ b/src/layouts/QskIndexedLayoutBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskIndexedLayoutBox.h b/src/layouts/QskIndexedLayoutBox.h index 5098297a..58532f6f 100644 --- a/src/layouts/QskIndexedLayoutBox.h +++ b/src/layouts/QskIndexedLayoutBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLayoutChain.cpp b/src/layouts/QskLayoutChain.cpp index 9bdbd855..5a086f88 100644 --- a/src/layouts/QskLayoutChain.cpp +++ b/src/layouts/QskLayoutChain.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLayoutChain.h b/src/layouts/QskLayoutChain.h index 8895f264..2c268407 100644 --- a/src/layouts/QskLayoutChain.h +++ b/src/layouts/QskLayoutChain.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLayoutElement.cpp b/src/layouts/QskLayoutElement.cpp index 5d768edb..ba02f294 100644 --- a/src/layouts/QskLayoutElement.cpp +++ b/src/layouts/QskLayoutElement.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLayoutElement.h b/src/layouts/QskLayoutElement.h index 4bebca0b..36a655a7 100644 --- a/src/layouts/QskLayoutElement.h +++ b/src/layouts/QskLayoutElement.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLayoutEngine2D.cpp b/src/layouts/QskLayoutEngine2D.cpp index 5add6d55..1a49fd7b 100644 --- a/src/layouts/QskLayoutEngine2D.cpp +++ b/src/layouts/QskLayoutEngine2D.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLayoutEngine2D.h b/src/layouts/QskLayoutEngine2D.h index d468c24c..ed1da76d 100644 --- a/src/layouts/QskLayoutEngine2D.h +++ b/src/layouts/QskLayoutEngine2D.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLayoutMetrics.cpp b/src/layouts/QskLayoutMetrics.cpp index 01456414..7e5c91f0 100644 --- a/src/layouts/QskLayoutMetrics.cpp +++ b/src/layouts/QskLayoutMetrics.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLayoutMetrics.h b/src/layouts/QskLayoutMetrics.h index c440daf7..33e440c8 100644 --- a/src/layouts/QskLayoutMetrics.h +++ b/src/layouts/QskLayoutMetrics.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLinearBox.cpp b/src/layouts/QskLinearBox.cpp index cc4ec382..46291fbf 100644 --- a/src/layouts/QskLinearBox.cpp +++ b/src/layouts/QskLinearBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLinearBox.h b/src/layouts/QskLinearBox.h index b0b67d84..71fe7a72 100644 --- a/src/layouts/QskLinearBox.h +++ b/src/layouts/QskLinearBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLinearLayoutEngine.cpp b/src/layouts/QskLinearLayoutEngine.cpp index 3d46a1b8..fecd4855 100644 --- a/src/layouts/QskLinearLayoutEngine.cpp +++ b/src/layouts/QskLinearLayoutEngine.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskLinearLayoutEngine.h b/src/layouts/QskLinearLayoutEngine.h index 799cd021..00543064 100644 --- a/src/layouts/QskLinearLayoutEngine.h +++ b/src/layouts/QskLinearLayoutEngine.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskStackBox.cpp b/src/layouts/QskStackBox.cpp index 2b3eaf54..87b14999 100644 --- a/src/layouts/QskStackBox.cpp +++ b/src/layouts/QskStackBox.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskStackBox.h b/src/layouts/QskStackBox.h index 0ba97e7a..b910c984 100644 --- a/src/layouts/QskStackBox.h +++ b/src/layouts/QskStackBox.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskStackBoxAnimator.cpp b/src/layouts/QskStackBoxAnimator.cpp index 5171537b..5558fd31 100644 --- a/src/layouts/QskStackBoxAnimator.cpp +++ b/src/layouts/QskStackBoxAnimator.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskStackBoxAnimator.h b/src/layouts/QskStackBoxAnimator.h index 8fd0d994..c7b887dc 100644 --- a/src/layouts/QskStackBoxAnimator.h +++ b/src/layouts/QskStackBoxAnimator.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskSubcontrolLayoutEngine.cpp b/src/layouts/QskSubcontrolLayoutEngine.cpp index e00b4835..13ee254f 100644 --- a/src/layouts/QskSubcontrolLayoutEngine.cpp +++ b/src/layouts/QskSubcontrolLayoutEngine.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/layouts/QskSubcontrolLayoutEngine.h b/src/layouts/QskSubcontrolLayoutEngine.h index c1afc485..d2a80ec6 100644 --- a/src/layouts/QskSubcontrolLayoutEngine.h +++ b/src/layouts/QskSubcontrolLayoutEngine.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskArcNode.cpp b/src/nodes/QskArcNode.cpp index ad280879..e3de5c0a 100644 --- a/src/nodes/QskArcNode.cpp +++ b/src/nodes/QskArcNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskArcNode.h b/src/nodes/QskArcNode.h index 16784f2a..c4fa330a 100644 --- a/src/nodes/QskArcNode.h +++ b/src/nodes/QskArcNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskArcShadowNode.cpp b/src/nodes/QskArcShadowNode.cpp index 8ced5062..ed1128b1 100644 --- a/src/nodes/QskArcShadowNode.cpp +++ b/src/nodes/QskArcShadowNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskArcShadowNode.h b/src/nodes/QskArcShadowNode.h index 5d76b9bf..2a6528fa 100644 --- a/src/nodes/QskArcShadowNode.h +++ b/src/nodes/QskArcShadowNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBasicLinesNode.cpp b/src/nodes/QskBasicLinesNode.cpp index 93414295..292a5629 100644 --- a/src/nodes/QskBasicLinesNode.cpp +++ b/src/nodes/QskBasicLinesNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBasicLinesNode.h b/src/nodes/QskBasicLinesNode.h index cbbe02a2..3d355a7b 100644 --- a/src/nodes/QskBasicLinesNode.h +++ b/src/nodes/QskBasicLinesNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxBasicStroker.cpp b/src/nodes/QskBoxBasicStroker.cpp index b6442179..b893428a 100644 --- a/src/nodes/QskBoxBasicStroker.cpp +++ b/src/nodes/QskBoxBasicStroker.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxBasicStroker.h b/src/nodes/QskBoxBasicStroker.h index 79ee62cd..b43e9fbc 100644 --- a/src/nodes/QskBoxBasicStroker.h +++ b/src/nodes/QskBoxBasicStroker.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxClipNode.cpp b/src/nodes/QskBoxClipNode.cpp index 1ac27826..d90891b6 100644 --- a/src/nodes/QskBoxClipNode.cpp +++ b/src/nodes/QskBoxClipNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxClipNode.h b/src/nodes/QskBoxClipNode.h index 51f773f4..9312334d 100644 --- a/src/nodes/QskBoxClipNode.h +++ b/src/nodes/QskBoxClipNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxColorMap.h b/src/nodes/QskBoxColorMap.h index dc6f216a..69f04604 100644 --- a/src/nodes/QskBoxColorMap.h +++ b/src/nodes/QskBoxColorMap.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxFillNode.cpp b/src/nodes/QskBoxFillNode.cpp index 971a422c..2da882c5 100644 --- a/src/nodes/QskBoxFillNode.cpp +++ b/src/nodes/QskBoxFillNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxFillNode.h b/src/nodes/QskBoxFillNode.h index 9b8875fe..d43b82d7 100644 --- a/src/nodes/QskBoxFillNode.h +++ b/src/nodes/QskBoxFillNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxGradientStroker.cpp b/src/nodes/QskBoxGradientStroker.cpp index 6cf8c2d8..ad2537ca 100644 --- a/src/nodes/QskBoxGradientStroker.cpp +++ b/src/nodes/QskBoxGradientStroker.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxGradientStroker.h b/src/nodes/QskBoxGradientStroker.h index 1245497b..1d133802 100644 --- a/src/nodes/QskBoxGradientStroker.h +++ b/src/nodes/QskBoxGradientStroker.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxMetrics.cpp b/src/nodes/QskBoxMetrics.cpp index 0a448020..a0cf0cff 100644 --- a/src/nodes/QskBoxMetrics.cpp +++ b/src/nodes/QskBoxMetrics.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxMetrics.h b/src/nodes/QskBoxMetrics.h index a78b8a1e..cde8508d 100644 --- a/src/nodes/QskBoxMetrics.h +++ b/src/nodes/QskBoxMetrics.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxNode.cpp b/src/nodes/QskBoxNode.cpp index 4de2242c..fbad3b89 100644 --- a/src/nodes/QskBoxNode.cpp +++ b/src/nodes/QskBoxNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxNode.h b/src/nodes/QskBoxNode.h index 41764edb..999fa58c 100644 --- a/src/nodes/QskBoxNode.h +++ b/src/nodes/QskBoxNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxRectangleNode.cpp b/src/nodes/QskBoxRectangleNode.cpp index ae3ce80c..da7c8a97 100644 --- a/src/nodes/QskBoxRectangleNode.cpp +++ b/src/nodes/QskBoxRectangleNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxRectangleNode.h b/src/nodes/QskBoxRectangleNode.h index 502f5ced..cae20aab 100644 --- a/src/nodes/QskBoxRectangleNode.h +++ b/src/nodes/QskBoxRectangleNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxRenderer.cpp b/src/nodes/QskBoxRenderer.cpp index ea85dfcf..3c9c73ea 100644 --- a/src/nodes/QskBoxRenderer.cpp +++ b/src/nodes/QskBoxRenderer.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxRenderer.h b/src/nodes/QskBoxRenderer.h index 78786643..1b6face6 100644 --- a/src/nodes/QskBoxRenderer.h +++ b/src/nodes/QskBoxRenderer.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxShadowNode.cpp b/src/nodes/QskBoxShadowNode.cpp index 6f730ceb..cfb0099e 100644 --- a/src/nodes/QskBoxShadowNode.cpp +++ b/src/nodes/QskBoxShadowNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskBoxShadowNode.h b/src/nodes/QskBoxShadowNode.h index b4c71f68..2605a0e2 100644 --- a/src/nodes/QskBoxShadowNode.h +++ b/src/nodes/QskBoxShadowNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskColorRamp.cpp b/src/nodes/QskColorRamp.cpp index b5d059fb..2d0cc7d9 100644 --- a/src/nodes/QskColorRamp.cpp +++ b/src/nodes/QskColorRamp.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskColorRamp.h b/src/nodes/QskColorRamp.h index 68d27135..df105128 100644 --- a/src/nodes/QskColorRamp.h +++ b/src/nodes/QskColorRamp.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskFillNode.cpp b/src/nodes/QskFillNode.cpp index b5fbba51..bdb6ddc5 100644 --- a/src/nodes/QskFillNode.cpp +++ b/src/nodes/QskFillNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskFillNode.h b/src/nodes/QskFillNode.h index 5da3be54..a2d7abac 100644 --- a/src/nodes/QskFillNode.h +++ b/src/nodes/QskFillNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskFillNodePrivate.h b/src/nodes/QskFillNodePrivate.h index 7e79984c..2da5784b 100644 --- a/src/nodes/QskFillNodePrivate.h +++ b/src/nodes/QskFillNodePrivate.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskGradientMaterial.cpp b/src/nodes/QskGradientMaterial.cpp index 29771012..1a64f699 100644 --- a/src/nodes/QskGradientMaterial.cpp +++ b/src/nodes/QskGradientMaterial.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskGradientMaterial.h b/src/nodes/QskGradientMaterial.h index 074e1822..77c24dcf 100644 --- a/src/nodes/QskGradientMaterial.h +++ b/src/nodes/QskGradientMaterial.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskGraduationNode.cpp b/src/nodes/QskGraduationNode.cpp index 5221bfc1..46bc22a9 100644 --- a/src/nodes/QskGraduationNode.cpp +++ b/src/nodes/QskGraduationNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskGraduationNode.h b/src/nodes/QskGraduationNode.h index c00f710c..4f3466ad 100644 --- a/src/nodes/QskGraduationNode.h +++ b/src/nodes/QskGraduationNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskGraduationRenderer.cpp b/src/nodes/QskGraduationRenderer.cpp index d596f841..a9616946 100644 --- a/src/nodes/QskGraduationRenderer.cpp +++ b/src/nodes/QskGraduationRenderer.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskGraduationRenderer.h b/src/nodes/QskGraduationRenderer.h index 9354cf98..d765e33d 100644 --- a/src/nodes/QskGraduationRenderer.h +++ b/src/nodes/QskGraduationRenderer.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskGraphicNode.cpp b/src/nodes/QskGraphicNode.cpp index 047fe03f..e2c7b1bd 100644 --- a/src/nodes/QskGraphicNode.cpp +++ b/src/nodes/QskGraphicNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskGraphicNode.h b/src/nodes/QskGraphicNode.h index 32628b2b..07f98057 100644 --- a/src/nodes/QskGraphicNode.h +++ b/src/nodes/QskGraphicNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskLinesNode.cpp b/src/nodes/QskLinesNode.cpp index 1d89715e..e3dc1671 100644 --- a/src/nodes/QskLinesNode.cpp +++ b/src/nodes/QskLinesNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskLinesNode.h b/src/nodes/QskLinesNode.h index 4a1271a6..e54f9d2a 100644 --- a/src/nodes/QskLinesNode.h +++ b/src/nodes/QskLinesNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskPaintedNode.cpp b/src/nodes/QskPaintedNode.cpp index 1b2ff4b3..129a580a 100644 --- a/src/nodes/QskPaintedNode.cpp +++ b/src/nodes/QskPaintedNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskPaintedNode.h b/src/nodes/QskPaintedNode.h index 41835ec6..24a7e975 100644 --- a/src/nodes/QskPaintedNode.h +++ b/src/nodes/QskPaintedNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskPlainTextRenderer.cpp b/src/nodes/QskPlainTextRenderer.cpp index 77d13684..6a4b3053 100644 --- a/src/nodes/QskPlainTextRenderer.cpp +++ b/src/nodes/QskPlainTextRenderer.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskPlainTextRenderer.h b/src/nodes/QskPlainTextRenderer.h index c2835d77..e2f21d25 100644 --- a/src/nodes/QskPlainTextRenderer.h +++ b/src/nodes/QskPlainTextRenderer.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskRectangleNode.cpp b/src/nodes/QskRectangleNode.cpp index 6690912b..e05dc871 100644 --- a/src/nodes/QskRectangleNode.cpp +++ b/src/nodes/QskRectangleNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskRectangleNode.h b/src/nodes/QskRectangleNode.h index 5bcbec20..5f2993be 100644 --- a/src/nodes/QskRectangleNode.h +++ b/src/nodes/QskRectangleNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskRichTextRenderer.cpp b/src/nodes/QskRichTextRenderer.cpp index d8507710..e6cbd248 100644 --- a/src/nodes/QskRichTextRenderer.cpp +++ b/src/nodes/QskRichTextRenderer.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskRichTextRenderer.h b/src/nodes/QskRichTextRenderer.h index 762dc62e..4e5c4567 100644 --- a/src/nodes/QskRichTextRenderer.h +++ b/src/nodes/QskRichTextRenderer.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskSGNode.cpp b/src/nodes/QskSGNode.cpp index ad26f651..265a4d0f 100644 --- a/src/nodes/QskSGNode.cpp +++ b/src/nodes/QskSGNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskSGNode.h b/src/nodes/QskSGNode.h index 3ebe7e82..9fd5c06c 100644 --- a/src/nodes/QskSGNode.h +++ b/src/nodes/QskSGNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskSceneTexture.cpp b/src/nodes/QskSceneTexture.cpp index 0274391a..dc359993 100644 --- a/src/nodes/QskSceneTexture.cpp +++ b/src/nodes/QskSceneTexture.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskSceneTexture.h b/src/nodes/QskSceneTexture.h index eff6727f..89cc73b5 100644 --- a/src/nodes/QskSceneTexture.h +++ b/src/nodes/QskSceneTexture.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskShapeNode.cpp b/src/nodes/QskShapeNode.cpp index 91f9c765..fc6b5f9a 100644 --- a/src/nodes/QskShapeNode.cpp +++ b/src/nodes/QskShapeNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskShapeNode.h b/src/nodes/QskShapeNode.h index 84779627..c5fb24ac 100644 --- a/src/nodes/QskShapeNode.h +++ b/src/nodes/QskShapeNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskStippledLineRenderer.cpp b/src/nodes/QskStippledLineRenderer.cpp index f578f478..a0a7da60 100644 --- a/src/nodes/QskStippledLineRenderer.cpp +++ b/src/nodes/QskStippledLineRenderer.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskStippledLineRenderer.h b/src/nodes/QskStippledLineRenderer.h index acda0bb7..bcf38820 100644 --- a/src/nodes/QskStippledLineRenderer.h +++ b/src/nodes/QskStippledLineRenderer.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskStrokeNode.cpp b/src/nodes/QskStrokeNode.cpp index baaa811a..fb16c63c 100644 --- a/src/nodes/QskStrokeNode.cpp +++ b/src/nodes/QskStrokeNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskStrokeNode.h b/src/nodes/QskStrokeNode.h index 01abaaba..3d168577 100644 --- a/src/nodes/QskStrokeNode.h +++ b/src/nodes/QskStrokeNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskTextNode.cpp b/src/nodes/QskTextNode.cpp index 71d62dcc..11ba3d2b 100644 --- a/src/nodes/QskTextNode.cpp +++ b/src/nodes/QskTextNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskTextNode.h b/src/nodes/QskTextNode.h index bf2ec6cd..4289b573 100644 --- a/src/nodes/QskTextNode.h +++ b/src/nodes/QskTextNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskTextRenderer.cpp b/src/nodes/QskTextRenderer.cpp index c76f246e..f078a599 100644 --- a/src/nodes/QskTextRenderer.cpp +++ b/src/nodes/QskTextRenderer.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskTextRenderer.h b/src/nodes/QskTextRenderer.h index c876c355..467db7e6 100644 --- a/src/nodes/QskTextRenderer.h +++ b/src/nodes/QskTextRenderer.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskTextureRenderer.cpp b/src/nodes/QskTextureRenderer.cpp index 4d545736..cade0829 100644 --- a/src/nodes/QskTextureRenderer.cpp +++ b/src/nodes/QskTextureRenderer.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskTextureRenderer.h b/src/nodes/QskTextureRenderer.h index cd10e806..3b907ab2 100644 --- a/src/nodes/QskTextureRenderer.h +++ b/src/nodes/QskTextureRenderer.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskTreeNode.cpp b/src/nodes/QskTreeNode.cpp index f8d4c408..a3f70f23 100644 --- a/src/nodes/QskTreeNode.cpp +++ b/src/nodes/QskTreeNode.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskTreeNode.h b/src/nodes/QskTreeNode.h index 5adc141d..ad50ad83 100644 --- a/src/nodes/QskTreeNode.h +++ b/src/nodes/QskTreeNode.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskVertex.cpp b/src/nodes/QskVertex.cpp index c34bbe6d..a84e83ba 100644 --- a/src/nodes/QskVertex.cpp +++ b/src/nodes/QskVertex.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/src/nodes/QskVertex.h b/src/nodes/QskVertex.h index 400a6a66..0d928a84 100644 --- a/src/nodes/QskVertex.h +++ b/src/nodes/QskVertex.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/support/CMakeLists.txt b/support/CMakeLists.txt index 5dc77dd5..ecd53385 100644 --- a/support/CMakeLists.txt +++ b/support/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/support/SkinnyGlobal.h b/support/SkinnyGlobal.h index 1750693f..84942af8 100644 --- a/support/SkinnyGlobal.h +++ b/support/SkinnyGlobal.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/support/SkinnyNamespace.cpp b/support/SkinnyNamespace.cpp index 31da9c91..35fea3c7 100644 --- a/support/SkinnyNamespace.cpp +++ b/support/SkinnyNamespace.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/support/SkinnyNamespace.h b/support/SkinnyNamespace.h index 5451a5e0..0aeda789 100644 --- a/support/SkinnyNamespace.h +++ b/support/SkinnyNamespace.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/support/SkinnyShapeFactory.cpp b/support/SkinnyShapeFactory.cpp index 2804928b..75cb6334 100644 --- a/support/SkinnyShapeFactory.cpp +++ b/support/SkinnyShapeFactory.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/support/SkinnyShapeFactory.h b/support/SkinnyShapeFactory.h index 422d2e0e..2ed9f8bd 100644 --- a/support/SkinnyShapeFactory.h +++ b/support/SkinnyShapeFactory.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/support/SkinnyShapeProvider.cpp b/support/SkinnyShapeProvider.cpp index 4db4b89e..122ac010 100644 --- a/support/SkinnyShapeProvider.cpp +++ b/support/SkinnyShapeProvider.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/support/SkinnyShapeProvider.h b/support/SkinnyShapeProvider.h index cf7fbde9..8306afef 100644 --- a/support/SkinnyShapeProvider.h +++ b/support/SkinnyShapeProvider.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/support/SkinnyShortcut.cpp b/support/SkinnyShortcut.cpp index 6226f559..d7bbff01 100644 --- a/support/SkinnyShortcut.cpp +++ b/support/SkinnyShortcut.cpp @@ -1,3 +1,8 @@ +/****************************************************************************** + * QSkinny - Copyright (C) The authors + * SPDX-License-Identifier: BSD-3-Clause + *****************************************************************************/ + #include "SkinnyShortcut.h" #include "SkinnyNamespace.h" diff --git a/support/SkinnyShortcut.h b/support/SkinnyShortcut.h index ac363574..84587d7e 100644 --- a/support/SkinnyShortcut.h +++ b/support/SkinnyShortcut.h @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ diff --git a/tools/svg2qvg/CMakeLists.txt b/tools/svg2qvg/CMakeLists.txt index 6c64b50c..05507a7b 100644 --- a/tools/svg2qvg/CMakeLists.txt +++ b/tools/svg2qvg/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################ -# QSkinny - Copyright (C) 2016 Uwe Rathmann +# QSkinny - Copyright (C) The authors # SPDX-License-Identifier: BSD-3-Clause ############################################################################ diff --git a/tools/svg2qvg/main.cpp b/tools/svg2qvg/main.cpp index 4821c4e0..d5ffcf82 100644 --- a/tools/svg2qvg/main.cpp +++ b/tools/svg2qvg/main.cpp @@ -1,5 +1,5 @@ /****************************************************************************** - * QSkinny - Copyright (C) 2016 Uwe Rathmann + * QSkinny - Copyright (C) The authors * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ From 9f3f1b37478a7f511964f478b3ba801f6cc222dd Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Wed, 17 Jan 2024 15:32:51 +0100 Subject: [PATCH 36/36] better information about the licenses --- COPYING | 9 --------- LICENSES | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 9 deletions(-) delete mode 100644 COPYING create mode 100644 LICENSES diff --git a/COPYING b/COPYING deleted file mode 100644 index 797a2daf..00000000 --- a/COPYING +++ /dev/null @@ -1,9 +0,0 @@ -Copyright (C) 2016 Uwe Rathmann - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/LICENSES b/LICENSES new file mode 100644 index 00000000..af85ab72 --- /dev/null +++ b/LICENSES @@ -0,0 +1,21 @@ +Project: QSkinny + +Homepage: https://github.com/uwerat/qskinny +Maintainer: Uwe Rathmann ( uwe@qskinny.org ) + +SPDX-License-Identifier: BSD-3-Clause +Copyright (C) The authors + +3rdparty code: + +a) HCT color system + + Code: https://github.com/material-foundation/material-color-utilities + SPDX-License-Identifier: Apache License 2.0 + Copyright (C) 2021 Google LLC + +b) Cassowary constraint solving algorithm + + Code: https://github.com/nucleic/kiwi + SPDX-License-Identifier: BSD 3-Clause "New" or "Revised" License + Copyright (c) 2013, Nucleic Development Team