[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [kproperty/594-piggz] /: D594: KProperty split: Address comments from https://phabricator.kde.org/D5
From:       Jaroslaw Staniek <staniek () kde ! org>
Date:       2015-12-01 0:54:04
Message-ID: E1a3ZCm-0007wt-Q9 () scm ! kde ! org
[Download RAW message or body]

Git commit da8566abc10ec19675ec00d6479fdf40f7c48561 by Jaroslaw Staniek.
Committed on 01/12/2015 at 00:34.
Pushed by staniek into branch '594-piggz'.

D594: KProperty split: Address comments from https://phabricator.kde.org/D594#11566

+ fix whitespace
+ disable headers autotest (missing include paths - we're not ready)

M  +4    -4    CMakeLists.txt
M  +1    -1    KPropertyCore.pc.cmake
M  +1    -1    KPropertyWidgets.pc.cmake
M  +1    -1    autotests/CMakeLists.txt
M  +2    -1    autotests/headers/HeadersTestInclude.cmake
M  +92   -96   src/CMakeLists.txt
M  +0    -2    src/KDefaultPropertyFactory.cpp
M  +2    -2    src/KProperty.cpp
M  +7    -7    src/KPropertyCoreConfig.cmake.in
M  +1    -1    src/KPropertyFactory.cpp
M  +2    -2    src/KPropertyFactory.h
M  +2    -2    src/KPropertyUnit_p.cpp
M  +2    -2    src/KPropertyUnit_p.h
M  +8    -8    src/KPropertyWidgetsConfig.cmake.in
M  +2    -2    src/KPropertyWidgetsFactory.h
M  +2    -2    src/config-kproperty.h.cmake
M  +4    -4    src/editors/combobox.cpp
M  +2    -2    src/editors/spinbox.cpp
M  +1    -1    src/editors/utils.cpp
M  +2    -2    src/editors/utils.h
M  +1    -1    src/kproperty_debug.cpp
D  +0    -22   src/kpropertywidgets_debug.cpp
D  +0    -30   src/kpropertywidgets_debug.h

http://commits.kde.org/kproperty/da8566abc10ec19675ec00d6479fdf40f7c48561

diff --git a/CMakeLists.txt b/CMakeLists.txt
index e93a7c8..dd0f3f3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-if(EXISTS "/usr/lib/qt5/qml/Sailfish/Silica/SilicaGridView.qml") #SailfishOS
+if(EXISTS "/usr/include/sailfishapp/sailfishapp.h") #SailfishOS
     cmake_minimum_required(VERSION 2.8.11 FATAL_ERROR)
 else()
     cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
@@ -33,17 +33,17 @@ include(KPropertyMacros)
 
 simple_option(KPROPERTY_WIDGETS "Build the QtWidget components of KProperty" ON)
 
-set(KPROPERTY_VERSION "2.96.0") # Update this
+set(KPROPERTY_VERSION "2.97.0") # Update this
 
 # Dependencies
 set(REQUIRED_QT_VERSION "5.2.0")
 
 find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Core)
-    
+
 if(KPROPERTY_WIDGETS)
     find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Widgets)
     find_package(KF5 5.7.0 REQUIRED Config CoreAddons WidgetsAddons GuiAddons)
-    
+
     #TODO KIO
     get_git_revision_and_branch()
     add_tests()
diff --git a/KPropertyCore.pc.cmake b/KPropertyCore.pc.cmake
index 71020a3..fe44a1d 100644
--- a/KPropertyCore.pc.cmake
+++ b/KPropertyCore.pc.cmake
@@ -4,7 +4,7 @@ libdir=${exec_prefix}/lib
 includedir=${prefix}/include
 
 Name: KPropertyCore
-Description: A property editing framework with editor (core)
+Description: A property editing framework (core library)
 Version: @KPROPERTY_VERSION@
 URL: https://community.kde.org/KProperty
 Requires: Qt5Core
diff --git a/KPropertyWidgets.pc.cmake b/KPropertyWidgets.pc.cmake
index 7ff30c1..24f26d0 100644
--- a/KPropertyWidgets.pc.cmake
+++ b/KPropertyWidgets.pc.cmake
@@ -4,7 +4,7 @@ libdir=${exec_prefix}/lib
 includedir=${prefix}/include
 
 Name: KPropertyWidgets
-Description: A property editing framework with edito (widgets)
+Description: A property editing framework with editor (Qt Widgets library)
 Version: @KPROPERTY_VERSION@
 URL: https://community.kde.org/KProperty
 Requires: KPropertyCore Qt5Core Qt5Gui KF5WidgetsAddons KF5GuiAddons
diff --git a/autotests/CMakeLists.txt b/autotests/CMakeLists.txt
index 0863058..00244bb 100644
--- a/autotests/CMakeLists.txt
+++ b/autotests/CMakeLists.txt
@@ -19,4 +19,4 @@ include(ECMAddTests)
 
 find_package(Qt5Test REQUIRED)
 
-add_subdirectory(headers)
+#TODO fix add_subdirectory(headers)
diff --git a/autotests/headers/HeadersTestInclude.cmake \
b/autotests/headers/HeadersTestInclude.cmake index 32cf583..1d9aa38 100644
--- a/autotests/headers/HeadersTestInclude.cmake
+++ b/autotests/headers/HeadersTestInclude.cmake
@@ -1,4 +1,5 @@
 set(REQUIRED_QT_VERSION "5.2.0")
 find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Core Widgets)
 find_package(KF5 5.7.0 REQUIRED Config CoreAddons WidgetsAddons GuiAddons)
-find_package(KProperty REQUIRED)
+find_package(KPropertyCore ${KPROPERTY_VERSION} REQUIRED)
+find_package(KPropertyWidgets ${KPROPERTY_VERSION} REQUIRED)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 4101ac8..dd1d487 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -1,5 +1,4 @@
 # Options
-# simple_option(KPROPERTY_...... "....." OFF)
 configure_file(config-kproperty.h.cmake \
${CMAKE_CURRENT_BINARY_DIR}/config-kproperty.h)  
 set(kpropertycore_LIB_SRCS
@@ -13,51 +12,51 @@ set(kpropertycore_LIB_SRCS
 if(KPROPERTY_WIDGETS)
     add_subdirectory(editors)
 
-    set(libkpropertyeditors_SRCS
-    editors/utils.cpp
-    editors/booledit.cpp
-    editors/coloredit.cpp
-    editors/combobox.cpp
-    editors/cursoredit.cpp
-    editors/dateedit.cpp
-    editors/datetimeedit.cpp
-    #  editors/dummywidget.cpp
-    editors/fontedit.cpp
-    editors/pixmapedit.cpp
-    editors/pointedit.cpp
-    editors/pointfedit.cpp
-    editors/rectedit.cpp
-    editors/sizeedit.cpp
-    editors/sizefedit.cpp
-    editors/sizepolicyedit.cpp
-    editors/spinbox.cpp
-    editors/KPropertyStringEditor.cpp
-    editors/linestyleedit.cpp
-    #  editors/stringlistedit.cpp
-    #  editors/symbolcombo.cpp
-    editors/timeedit.cpp
-    #TODO  editors/urledit.cpp
+    set(kpropertywidgets_LIB_SRCS
+        editors/utils.cpp
+        editors/booledit.cpp
+        editors/coloredit.cpp
+        editors/combobox.cpp
+        editors/cursoredit.cpp
+        editors/dateedit.cpp
+        editors/datetimeedit.cpp
+        #  editors/dummywidget.cpp
+        editors/fontedit.cpp
+        editors/pixmapedit.cpp
+        editors/pointedit.cpp
+        editors/pointfedit.cpp
+        editors/rectedit.cpp
+        editors/sizeedit.cpp
+        editors/sizefedit.cpp
+        editors/sizepolicyedit.cpp
+        editors/spinbox.cpp
+        editors/KPropertyStringEditor.cpp
+        editors/linestyleedit.cpp
+        #  editors/stringlistedit.cpp
+        #  editors/symbolcombo.cpp
+        editors/timeedit.cpp
+        #TODO  editors/urledit.cpp
+
+        kproperty_debug.cpp # needed here too
+        KPropertyWidgetsFactory.cpp
+        KDefaultPropertyFactory.cpp
+        KPropertyEditorView.cpp
+        KPropertyEditorDataModel.cpp
+        KPropertyUtils.cpp
+        KPropertyLineStyleSelector_p.cpp
+        KPropertyLineStyleModel_p.cpp
+        KPropertyLineStyleItemDelegate_p.cpp
     )
 
-    set(kpropertywidgets_LIB_SRCS
-    ${libkpropertyeditors_SRCS}
-    kpropertywidgets_debug.cpp
-    KPropertyWidgetsFactory.cpp
-    KDefaultPropertyFactory.cpp
-    KPropertyEditorView.cpp
-    KPropertyEditorDataModel.cpp
-    KPropertyUtils.cpp
-    KPropertyLineStyleSelector_p.cpp
-    KPropertyLineStyleModel_p.cpp
-    KPropertyLineStyleItemDelegate_p.cpp
+    ecm_create_qm_loader(kpropertywidgets_LIB_SRCS kpropertywidgets_qt)
+
+    set(kpropertywidgets_INCLUDE_DIRS
+        ${CMAKE_CURRENT_BINARY_DIR}/editors
     )
 endif()
 
-set(kproperty_INCLUDE_DIRS
-    ${CMAKE_CURRENT_BINARY_DIR}/kproperty
-    ${CMAKE_CURRENT_BINARY_DIR}/editors
+set(kpropertycore_INCLUDE_DIRS
     ${CMAKE_CURRENT_SOURCE_DIR}
-    ${CMAKE_CURRENT_SOURCE_DIR}/editors
 )
 
 ecm_create_qm_loader(kpropertycore_LIB_SRCS kpropertycore_qt)
@@ -69,9 +68,8 @@ target_link_libraries(KPropertyCore
 generate_export_header(KPropertyCore)
 
 target_include_directories(KPropertyCore
-    PUBLIC "$<BUILD_INTERFACE:${kproperty_INCLUDE_DIRS}>"
+    PUBLIC "$<BUILD_INTERFACE:${kpropertycore_INCLUDE_DIRS}>"
     INTERFACE "$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}/KPropertyCore>"
-    PRIVATE editors
 )
 
 set_target_properties(KPropertyCore
@@ -83,21 +81,21 @@ set_target_properties(KPropertyCore
 if(KPROPERTY_WIDGETS)
     add_library(KPropertyWidgets SHARED ${kpropertywidgets_LIB_SRCS})
     target_link_libraries(KPropertyWidgets
-	KPropertyCore
+        KPropertyCore
         KF5::WidgetsAddons
         KF5::GuiAddons
     )
     generate_export_header(KPropertyWidgets)
     target_include_directories(KPropertyWidgets
-	PUBLIC "$<BUILD_INTERFACE:${kproperty_INCLUDE_DIRS}>"
-	INTERFACE "$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}/KPropertyWidgets>"
-	PRIVATE editors
+        PUBLIC "$<BUILD_INTERFACE:${kpropertywidgets_INCLUDE_DIRS}>"
+        INTERFACE "$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}/KPropertyWidgets>"
+        PRIVATE editors
     )
 
     set_target_properties(KPropertyWidgets
-	PROPERTIES VERSION 1.0
-		  SOVERSION 1.0.0
-		  EXPORT_NAME KPropertyWidgets
+        PROPERTIES VERSION 1.0
+                  SOVERSION 1.0.0
+                  EXPORT_NAME KPropertyWidgets
     )
 endif()
 
@@ -108,7 +106,7 @@ set(CMAKECONFIG_CORE_INSTALL_DIR \
"${CMAKECONFIG_INSTALL_PREFIX}/KPropertyCore")  set(KPROPERTY_PLUGIN_INSTALL_DIR \
${PLUGIN_INSTALL_DIR}/kproperty)  
 ecm_setup_version(${KPROPERTY_VERSION}
-    VARIABLE_PREFIX KPROPERTY
+    VARIABLE_PREFIX KPROPERTYCORE
     VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kproperty_version.h"
     PACKAGE_VERSION_FILE \
"${CMAKE_CURRENT_BINARY_DIR}/KPropertyCoreConfigVersion.cmake"  )
@@ -128,41 +126,40 @@ install(FILES
 install(TARGETS KPropertyCore
             EXPORT KPropertyCoreTargets
             ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
-            
+
 install(EXPORT KPropertyCoreTargets
-	DESTINATION "${CMAKECONFIG_CORE_INSTALL_DIR}"
-	FILE KPropertyCoreTargets.cmake)
-            
+        DESTINATION "${CMAKECONFIG_CORE_INSTALL_DIR}"
+        FILE KPropertyCoreTargets.cmake)
+
 if(KPROPERTY_WIDGETS)
-  set(CMAKECONFIG_WIDGETS_INSTALL_DIR \
"${CMAKECONFIG_INSTALL_PREFIX}/KPropertyWidgets") +    \
set(CMAKECONFIG_WIDGETS_INSTALL_DIR "${CMAKECONFIG_INSTALL_PREFIX}/KPropertyWidgets") \
  ecm_setup_version(${KPROPERTY_VERSION}
-	VARIABLE_PREFIX KPROPERTY
-	VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kproperty_version.h"
-	PACKAGE_VERSION_FILE \
"${CMAKE_CURRENT_BINARY_DIR}/KPropertyWidgetsConfigVersion.cmake" +        \
VARIABLE_PREFIX KPROPERTYWIDGETS +        VERSION_HEADER \
"${CMAKE_CURRENT_BINARY_DIR}/kproperty_version.h" +        PACKAGE_VERSION_FILE \
"${CMAKE_CURRENT_BINARY_DIR}/KPropertyWidgetsConfigVersion.cmake"  )
     ecm_configure_package_config_file(
-	"${CMAKE_CURRENT_SOURCE_DIR}/KPropertyWidgetsConfig.cmake.in"
-	"${CMAKE_CURRENT_BINARY_DIR}/KPropertyWidgetsConfig.cmake"
-	INSTALL_DESTINATION "${CMAKECONFIG_WIDGETS_INSTALL_DIR}"
+        "${CMAKE_CURRENT_SOURCE_DIR}/KPropertyWidgetsConfig.cmake.in"
+        "${CMAKE_CURRENT_BINARY_DIR}/KPropertyWidgetsConfig.cmake"
+        INSTALL_DESTINATION "${CMAKECONFIG_WIDGETS_INSTALL_DIR}"
     )
-    
+
     install(FILES
-	"${CMAKE_CURRENT_BINARY_DIR}/KPropertyWidgetsConfig.cmake"
-	"${CMAKE_CURRENT_BINARY_DIR}/KPropertyWidgetsConfigVersion.cmake"
-	DESTINATION "${CMAKECONFIG_WIDGETS_INSTALL_DIR}"
-	COMPONENT Devel)
+        "${CMAKE_CURRENT_BINARY_DIR}/KPropertyWidgetsConfig.cmake"
+        "${CMAKE_CURRENT_BINARY_DIR}/KPropertyWidgetsConfigVersion.cmake"
+        DESTINATION "${CMAKECONFIG_WIDGETS_INSTALL_DIR}"
+        COMPONENT Devel)
 
     install(TARGETS KPropertyWidgets
             EXPORT KPropertyWidgetsTargets
             ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
-            
-    install(EXPORT KPropertyWidgetsTargets
-	DESTINATION "${CMAKECONFIG_WIDGETS_INSTALL_DIR}"
-	FILE KPropertyWidgetsTargets.cmake)
 
+    install(EXPORT KPropertyWidgetsTargets
+        DESTINATION "${CMAKECONFIG_WIDGETS_INSTALL_DIR}"
+        FILE KPropertyWidgetsTargets.cmake)
 endif()
-            
+
 install(FILES ${PRI_FILENAME}
         DESTINATION ${ECM_MKSPECS_INSTALL_DIR})
 
@@ -173,14 +170,14 @@ ecm_generate_pri_file(
     FILENAME_VAR PRI_FILENAME
     INCLUDE_INSTALL_DIR ${INCLUDE_INSTALL_DIR}/KPropertyCore
 )
-    
-if(KPROPERTY_WIDGETS)   
+
+if(KPROPERTY_WIDGETS)
     ecm_generate_pri_file(
-	BASE_NAME KPropertyWidgets
-	LIB_NAME KPropertyWidgets
-	DEPS ""
-	FILENAME_VAR PRI_FILENAME
-	INCLUDE_INSTALL_DIR ${INCLUDE_INSTALL_DIR}/KPropertyWidgets
+        BASE_NAME KPropertyWidgets
+        LIB_NAME KPropertyWidgets
+        DEPS "widgets KPropertyCore"
+        FILENAME_VAR PRI_FILENAME
+        INCLUDE_INSTALL_DIR ${INCLUDE_INSTALL_DIR}/KPropertyWidgets
     )
 endif()
 
@@ -215,31 +212,30 @@ install(
     COMPONENT Devel
 )
 
-if(KPROPERTY_WIDGETS)  
+if(KPROPERTY_WIDGETS)
     ecm_generate_headers(kpropertywidgets_FORWARDING_HEADERS
-	REQUIRED_HEADERS kpropertywidgets_HEADERS
-	ORIGINAL CAMELCASE
-	HEADER_NAMES
-	    KPropertyWidgetsFactory
-	    KPropertyUtils
-	    KPropertyEditorView
-	    KPropertyEditorDataModel
+        REQUIRED_HEADERS kpropertywidgets_HEADERS
+        ORIGINAL CAMELCASE
+        HEADER_NAMES
+            KPropertyWidgetsFactory
+            KPropertyUtils
+            KPropertyEditorView
+            KPropertyEditorDataModel
     )
 
     install(
-	FILES
-	    ${kpropertywidgets_HEADERS}
-	DESTINATION ${INCLUDE_INSTALL_DIR}/KPropertyWidgets
-	COMPONENT Devel
+        FILES
+            ${kpropertywidgets_HEADERS}
+        DESTINATION ${INCLUDE_INSTALL_DIR}/KPropertyWidgets
+        COMPONENT Devel
     )
 
     install(
-	FILES
-	    ${kpropertywidgets_FORWARDING_HEADERS}
-	    ${PROJECT_BINARY_DIR}/src/kpropertywidgets_export.h
-	    ${PROJECT_BINARY_DIR}/src/config-kproperty.h
-	DESTINATION ${INCLUDE_INSTALL_DIR}/KPropertyWidgets
-	COMPONENT Devel
+        FILES
+            ${kpropertywidgets_FORWARDING_HEADERS}
+            ${PROJECT_BINARY_DIR}/src/kpropertywidgets_export.h
+        DESTINATION ${INCLUDE_INSTALL_DIR}/KPropertyWidgets
+        COMPONENT Devel
     )
 endif()
 
diff --git a/src/KDefaultPropertyFactory.cpp b/src/KDefaultPropertyFactory.cpp
index a137a95..fa9b152 100644
--- a/src/KDefaultPropertyFactory.cpp
+++ b/src/KDefaultPropertyFactory.cpp
@@ -18,8 +18,6 @@
 */
 
 #include "KDefaultPropertyFactory.h"
-#include "KPropertyWidgetsFactory.h"
-#include "KProperty.h"
 /*
 #include "customproperty.h"*/
 #include "editors/booledit.h"
diff --git a/src/KProperty.cpp b/src/KProperty.cpp
index c9f3e92..02454ff 100644
--- a/src/KProperty.cpp
+++ b/src/KProperty.cpp
@@ -27,7 +27,7 @@
 
 #include <QPointer>
 
-#ifdef KPROPERTY_WIDGET
+#ifdef KPROPERTY_WIDGETS
 #include <QSizePolicy>
 #endif
 
@@ -362,7 +362,7 @@ void KProperty::setValue(const QVariant &value, bool \
                rememberOldValue, bool useC
         ch = static_cast<qlonglong>(currentValue.toDouble() * factor) != \
static_cast<qlonglong>(value.toDouble() * factor);  } else if (t == QVariant::Invalid \
&& newt == QVariant::Invalid) {  ch = false;
-#ifdef KPROPERTY_WIDGET
+#ifdef KPROPERTY_WIDGETS
     } else if (t == QVariant::SizePolicy) {
         ch = (currentValue.value<QSizePolicy>() != value.value<QSizePolicy>());
 #endif
diff --git a/src/KPropertyCoreConfig.cmake.in b/src/KPropertyCoreConfig.cmake.in
index 5f1f402..3b56c04 100644
--- a/src/KPropertyCoreConfig.cmake.in
+++ b/src/KPropertyCoreConfig.cmake.in
@@ -1,15 +1,15 @@
-# KPropertyConfig.cmake provides information about the installed KProperty library.
-# It can be used directly from CMake via find_package(KProperty NO_MODULE)
+# KPropertyCoreConfig.cmake provides information about the installed KPropertyCore \
library. +# It can be used directly from CMake via find_package(KPropertyCore \
NO_MODULE)  #
 # The following CMake variables are provided:
-#   KProperty_VERSION_MAJOR - the major version number of KProperty
-#   KProperty_VERSION_MINOR - the minor version number of KProperty
-#   KProperty_VERSION_PATCH - the patch version number of KProperty
-#   KProperty_INCLUDE_DIRS  - the include directories to use
+#   KPropertyCore_VERSION_MAJOR - the major version number of KPropertyCore
+#   KPropertyCore_VERSION_MINOR - the minor version number of KPropertyCore
+#   KPropertyCore_VERSION_PATCH - the patch version number of KPropertyCore
+#   KPropertyCore_INCLUDE_DIRS  - the include directories to use
 #
 # Additionally, the following imported library targets are created, which may be \
used directly  # with target_link_libraries():
-#   KProperty - the KProperty library
+#   KPropertyCore - the KPropertyCore library
 
 @PACKAGE_INIT@
 
diff --git a/src/KPropertyFactory.cpp b/src/KPropertyFactory.cpp
index ec1f4c9..6fae10a 100644
--- a/src/KPropertyFactory.cpp
+++ b/src/KPropertyFactory.cpp
@@ -70,7 +70,7 @@ QHash<int, KComposedPropertyCreatorInterface*> \
KPropertyFactory::composedPropert  return d->composedPropertyCreators;
 }
 
-#ifdef KPROPERTY_WIDGET
+#ifdef KPROPERTY_WIDGETS
 QHash<int, KPropertyEditorCreatorInterface*> KPropertyFactory::editorCreators() \
const  {
     return d->editorCreators;
diff --git a/src/KPropertyFactory.h b/src/KPropertyFactory.h
index 8907d89..bc1c768 100644
--- a/src/KPropertyFactory.h
+++ b/src/KPropertyFactory.h
@@ -98,7 +98,7 @@ public:
 protected:
     void addComposedPropertyCreatorInternal(int type,
         KComposedPropertyCreatorInterface* creator, bool own = true);
-    
+
     class Private;
     Private * const d;
 };
@@ -111,7 +111,7 @@ class KPROPERTYCORE_EXPORT KPropertyFactoryManager : public \
QObject  Q_OBJECT
 public:
     bool isEditorForTypeAvailable( int type ) const;
-        
+
     KComposedPropertyInterface* createComposedProperty(KProperty *parent);
 
     //! Registers factory @a factory. It becomes owned by the manager.
diff --git a/src/KPropertyUnit_p.cpp b/src/KPropertyUnit_p.cpp
index 86217fe..27b2f6f 100644
--- a/src/KPropertyUnit_p.cpp
+++ b/src/KPropertyUnit_p.cpp
@@ -22,7 +22,7 @@
 #include "KPropertyUnit_p.h"
 #include "kproperty_debug.h"
 
-#ifdef KPROPERTY_WIDGET
+#ifdef KPROPERTY_WIDGETS
 #include <QTransform>
 #endif
 
@@ -373,7 +373,7 @@ qreal KPropertyUnit::parseAngle(const QString& _value, qreal \
defaultVal)  return defaultVal;
 }
 
-#ifdef KPROPERTY_WIDGET
+#ifdef KPROPERTY_WIDGETS
 qreal KPropertyUnit::approxTransformScale(const QTransform &t)
 {
     return std::sqrt(t.determinant());
diff --git a/src/KPropertyUnit_p.h b/src/KPropertyUnit_p.h
index e83291f..91337ca 100644
--- a/src/KPropertyUnit_p.h
+++ b/src/KPropertyUnit_p.h
@@ -240,7 +240,7 @@ public:
         return symbol();
     }
 
-#ifdef KPROPERTY_WIDGET
+#ifdef KPROPERTY_WIDGETS
 
     /**
      * Get an approximate scale of a unit vector that was converted by
@@ -260,7 +260,7 @@ public:
      */
     void adjustByPixelTransform(const QTransform &t);
 #endif
-    
+
 private:
     Type m_type;
     qreal m_pixelConversion;
diff --git a/src/KPropertyWidgetsConfig.cmake.in \
b/src/KPropertyWidgetsConfig.cmake.in index 4e28e53..24d666b 100644
--- a/src/KPropertyWidgetsConfig.cmake.in
+++ b/src/KPropertyWidgetsConfig.cmake.in
@@ -1,20 +1,20 @@
-# KPropertyConfig.cmake provides information about the installed KProperty library.
-# It can be used directly from CMake via find_package(KProperty NO_MODULE)
+# KPropertyWidgetsConfig.cmake provides information about the installed \
KPropertyWidgets library. +# It can be used directly from CMake via \
find_package(KPropertyWidgets NO_MODULE)  #
 # The following CMake variables are provided:
-#   KProperty_VERSION_MAJOR - the major version number of KProperty
-#   KProperty_VERSION_MINOR - the minor version number of KProperty
-#   KProperty_VERSION_PATCH - the patch version number of KProperty
-#   KProperty_INCLUDE_DIRS  - the include directories to use
+#   KPropertyWidgets_VERSION_MAJOR - the major version number of KPropertyWidgets
+#   KPropertyWidgets_VERSION_MINOR - the minor version number of KPropertyWidgets
+#   KPropertyWidgets_VERSION_PATCH - the patch version number of KPropertyWidgets
+#   KPropertyWidgets_INCLUDE_DIRS  - the include directories to use
 #
 # Additionally, the following imported library targets are created, which may be \
used directly  # with target_link_libraries():
-#   KProperty - the KProperty library
+#   KPropertyWidgets - the KPropertyWidgets library
 
 @PACKAGE_INIT@
 
-find_dependency(Qt5Core @REQUIRED_QT_VERSION@)
 find_dependency(Qt5Widgets @REQUIRED_QT_VERSION@)
+find_dependency(KPropertyCore @KPROPERTY_VERSION@)
 
 include("${CMAKE_CURRENT_LIST_DIR}/KPropertyWidgetsTargets.cmake")
 
diff --git a/src/KPropertyWidgetsFactory.h b/src/KPropertyWidgetsFactory.h
index a2a6dfa..c6614bb 100644
--- a/src/KPropertyWidgetsFactory.h
+++ b/src/KPropertyWidgetsFactory.h
@@ -171,7 +171,7 @@ protected:
     //! Adds value-to-text converted @a painter for type @a type.
     //! The converter becomes owned by the factory.
     void addDisplayInternal(int type, KPropertyValueDisplayInterface *display, bool \
                own = true);
-    
+
     class Private;
     Private * const d;
 };
@@ -195,7 +195,7 @@ public:
         QPainter * painter,
         const QStyleOptionViewItem & option,
         const QModelIndex & index ) const;
-        
+
     KComposedPropertyInterface* createComposedProperty(KProperty *parent);
 
     bool canConvertValueToText( int type ) const;
diff --git a/src/config-kproperty.h.cmake b/src/config-kproperty.h.cmake
index e5c9d32..f22c993 100644
--- a/src/config-kproperty.h.cmake
+++ b/src/config-kproperty.h.cmake
@@ -31,8 +31,8 @@
 //! @brief Defined if unfinished features of KProperty are enabled
 #cmakedefine KPROPERTY_UNFINISHED
 
-//! @def KPROPERTY_WIDGET
+//! @def KPROPERTY_WIDGETS
 //! @brief Defined if QtWidgets components of KProperty are enabled
-#cmakedefine KPROPERTY_WIDGET
+#cmakedefine KPROPERTY_WIDGETS
 
 #endif
diff --git a/src/editors/combobox.cpp b/src/editors/combobox.cpp
index 855aa77..6147676 100644
--- a/src/editors/combobox.cpp
+++ b/src/editors/combobox.cpp
@@ -22,7 +22,7 @@
 #include "combobox.h"
 #include "KPropertyEditorDataModel.h"
 #include "KPropertyEditorView.h"
-#include "kpropertywidgets_debug.h"
+#include "kproperty_debug.h"
 #include "KPropertyWidgetsFactory.h"
 
 #include <QCompleter>
@@ -106,7 +106,7 @@ KPropertyComboBoxEditor::~KPropertyComboBoxEditor()
 bool KPropertyComboBoxEditor::listDataKeysAvailable() const
 {
     if (m_listData.keys.isEmpty()) {
-        kprwWarning() << "property listData not available!";
+        kprWarning() << "property listData not available!";
         return false;
     }
     return true;
@@ -144,13 +144,13 @@ void KPropertyComboBoxEditor::setValue(const QVariant &value)
                 setCurrentIndex(-1);
                 setEditText(value.toString());
             }
-            kprwWarning() << "NO SUCH KEY:" << value.toString()
+            kprWarning() << "NO SUCH KEY:" << value.toString()
                 << "property=" << objectName();
         } else {
             QStringList list;
             for (int i = 0; i < count(); i++)
                 list += itemText(i);
-            kprwWarning() << "NO SUCH INDEX WITHIN COMBOBOX:" << idx
+            kprWarning() << "NO SUCH INDEX WITHIN COMBOBOX:" << idx
                 << "count=" << count() << "value=" << value.toString()
                 << "property=" << objectName() << "\nActual combobox contents"
                 << list;
diff --git a/src/editors/spinbox.cpp b/src/editors/spinbox.cpp
index 0d46f9e..fce7f06 100644
--- a/src/editors/spinbox.cpp
+++ b/src/editors/spinbox.cpp
@@ -26,7 +26,7 @@
 #include "KPropertyEditorView.h"
 #include "KPropertyUnit_p.h"
 #include "KPropertyWidgetsFactory.h"
-#include "kpropertywidgets_debug.h"
+#include "kproperty_debug.h"
 
 #include <QVariant>
 #include <QLineEdit>
@@ -100,7 +100,7 @@ void KPropertyIntSpinBox::setValue(const QVariant& value)
 {
     int v( value.toInt() );
     if (m_unsigned && v<0) {
-        kprwWarning() << "could not assign negative value" << v << "- assigning 0";
+        kprWarning() << "could not assign negative value" << v << "- assigning 0";
         v = 0;
     }
     QSpinBox::setValue(v);
diff --git a/src/editors/utils.cpp b/src/editors/utils.cpp
index d85655b..2549267 100644
--- a/src/editors/utils.cpp
+++ b/src/editors/utils.cpp
@@ -22,7 +22,7 @@
 #include <QPushButton>
 #include <QFontMetrics>
 
-KPROPERTYCORE_EXPORT void KPropertyUtils::setupDotDotDotButton(QPushButton *button, \
const QString& toolTip, const QString& whatsThis) +KPROPERTYWIDGETS_EXPORT void \
KPropertyUtils::setupDotDotDotButton(QPushButton *button, const QString& toolTip, \
const QString& whatsThis)  {
     button->setText(QObject::tr("...", "Three dots for 'Insert image from file' \
button"));  if (!toolTip.isEmpty())
diff --git a/src/editors/utils.h b/src/editors/utils.h
index 9238c25..6d4cf0d 100644
--- a/src/editors/utils.h
+++ b/src/editors/utils.h
@@ -20,7 +20,7 @@
 #ifndef KPROPERTY_EDITORS_UTILS_H
 #define KPROPERTY_EDITORS_UTILS_H
 
-#include "kpropertycore_export.h"
+#include "kpropertywidgets_export.h"
 
 #include <QString>
 
@@ -30,7 +30,7 @@ namespace KPropertyUtils
 {
 
 //! Sets up a "..." button with fine-tuned settings.
-KPROPERTYCORE_EXPORT void setupDotDotDotButton(QPushButton *button,
+KPROPERTYWIDGETS_EXPORT void setupDotDotDotButton(QPushButton *button,
     const QString& toolTip = QString(), const QString& whatsThis = QString());
 
 }
diff --git a/src/kproperty_debug.cpp b/src/kproperty_debug.cpp
index e3d07a9..9167de5 100644
--- a/src/kproperty_debug.cpp
+++ b/src/kproperty_debug.cpp
@@ -18,5 +18,5 @@
 */
 
 #include "kproperty_debug.h"
-Q_LOGGING_CATEGORY(KPROPERTY_LOG, "org.kde.kproperty.core")
+Q_LOGGING_CATEGORY(KPROPERTY_LOG, "org.kde.kproperty")
 
diff --git a/src/kpropertywidgets_debug.cpp b/src/kpropertywidgets_debug.cpp
deleted file mode 100644
index 07bcb30..0000000
--- a/src/kpropertywidgets_debug.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-/* This file is part of the KDE project
-   Copyright (C) 2015 Laurent Montel <montel@kde.org>
-
-   This library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Library General Public
-   License as published by the Free Software Foundation; either
-   version 2 of the License, or (at your option) any later version.
-
-   This library is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   Library General Public License for more details.
-
-   You should have received a copy of the GNU Library General Public License
-   along with this library; see the file COPYING.LIB.  If not, write to
-   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
-*/
-
-#include "kpropertywidgets_debug.h"
-Q_LOGGING_CATEGORY(KPROPERTYW_LOG, "org.kde.kproperty.widgets")
-
diff --git a/src/kpropertywidgets_debug.h b/src/kpropertywidgets_debug.h
deleted file mode 100644
index 7b67090..0000000
--- a/src/kpropertywidgets_debug.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* This file is part of the KDE project
-   Copyright (C) 2015 Laurent Montel <montel@kde.org>
-
-   This library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Library General Public
-   License as published by the Free Software Foundation; either
-   version 2 of the License, or (at your option) any later version.
-
-   This library is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   Library General Public License for more details.
-
-   You should have received a copy of the GNU Library General Public License
-   along with this library; see the file COPYING.LIB.  If not, write to
-   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
-*/
-
-#ifndef KPROPERTYWIDGETS_DEBUG_H
-#define KPROPERTYWIDGETS_DEBUG_H
-
-#include <QLoggingCategory>
-Q_DECLARE_LOGGING_CATEGORY(KPROPERTYW_LOG)
-
-#define kprwDebug(...) qCDebug(KPROPERTYW_LOG, __VA_ARGS__)
-#define kprwWarning(...) qCWarning(KPROPERTYW_LOG, __VA_ARGS__)
-#define kprwCritical(...) qCCritical(KPROPERTYW_LOG, __VA_ARGS__)
-
-#endif


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic