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

List:       kde-commits
Subject:    playground/base/plasma
From:       Davide Bettio <davide.bettio () kdemail ! net>
Date:       2009-08-31 9:42:44
Message-ID: 1251711764.989175.3243.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 1017721 by bettio:

Added QNotificationItem for Qt-only applications.


 M  +1 -0      CMakeLists.txt  
 A             libs (directory)  
 A             libs/CMakeLists.txt  
 A             libs/qnotificationareaitem (directory)   \
trunk/KDE/kdelibs/experimental/knotificationitem#1016374  M  +15 -15    \
libs/qnotificationareaitem/CMakeLists.txt    D             \
libs/qnotificationareaitem/Messages.sh    M  +2 -2      \
libs/qnotificationareaitem/cmake/modules/CMakeLists.txt    D             \
libs/qnotificationareaitem/cmake/modules/FindLibKNotificationItem-1.cmake    A        \
libs/qnotificationareaitem/cmake/modules/FindLibQNotificationItem-1.cmake   \
trunk/KDE/kdelibs/experimental/knotificationitem/cmake/modules/FindLibKNotificationItem-1.cmake#1016374
  D             libs/qnotificationareaitem/knotificationitem.cpp  
 D             libs/qnotificationareaitem/knotificationitem.h  
 D             libs/qnotificationareaitem/knotificationitem_export.h  
 D             libs/qnotificationareaitem/knotificationitemdbus_p.cpp  
 D             libs/qnotificationareaitem/knotificationitemdbus_p.h  
 D             libs/qnotificationareaitem/knotificationitemprivate_p.h  
 A             libs/qnotificationareaitem/qnotificationitem.cpp   \
trunk/KDE/kdelibs/experimental/knotificationitem/knotificationitem.cpp#1016374 \
[License: LGPL (v2+)]  A             libs/qnotificationareaitem/qnotificationitem.h   \
trunk/KDE/kdelibs/experimental/knotificationitem/knotificationitem.h#1016374 \
[License: LGPL (v2+)]  A             \
libs/qnotificationareaitem/qnotificationitem_export.h   \
trunk/KDE/kdelibs/experimental/knotificationitem/knotificationitem_export.h#1016374 \
[License: LGPL (v2+)]  A             \
libs/qnotificationareaitem/qnotificationitemdbus_p.cpp   \
trunk/KDE/kdelibs/experimental/knotificationitem/knotificationitemdbus_p.cpp#1016374 \
[License: LGPL (v2+)]  A             \
libs/qnotificationareaitem/qnotificationitemdbus_p.h   \
trunk/KDE/kdelibs/experimental/knotificationitem/knotificationitemdbus_p.h#1016374 \
[License: LGPL (v2+)]  A             \
libs/qnotificationareaitem/qnotificationitemprivate_p.h   \
trunk/KDE/kdelibs/experimental/knotificationitem/knotificationitemprivate_p.h#1016374 \
[License: LGPL (v2+)]  D             \
libs/qnotificationareaitem/test/knotificationitemtest.cpp    D             \
libs/qnotificationareaitem/test/knotificationitemtest.h    A             \
libs/qnotificationareaitem/test/qnotificationitemtest.cpp   \
trunk/KDE/kdelibs/experimental/knotificationitem/test/knotificationitemtest.cpp#1016374 \
[License: LGPL (v2+)]  A             \
libs/qnotificationareaitem/test/qnotificationitemtest.h   \
trunk/KDE/kdelibs/experimental/knotificationitem/test/knotificationitemtest.h#1016374 \
[License: LGPL (v2+)]


--- trunk/playground/base/plasma/CMakeLists.txt #1017720:1017721
@@ -35,6 +35,7 @@
 add_subdirectory(tools)
 add_subdirectory(plasmate)
 add_subdirectory(MediaCenterComponents)
+add_subdirectory(libs)
 
 #add_subdirectory(menu)
 
--- trunk/playground/base/plasma/libs/qnotificationareaitem/CMakeLists.txt \
#1016374:1017721 @@ -11,32 +11,32 @@
    ${KDE4_INCLUDES}
    )
 
-set(knotificationitem_SRCS knotificationitem.cpp knotificationitemdbus_p.cpp)
-set(knotificationitemtest_SRC test/knotificationitemtest.cpp)
+set(qnotificationitem_SRCS qnotificationitem.cpp qnotificationitemdbus_p.cpp)
+set(qnotificationitemtest_SRC test/qnotificationitemtest.cpp)
 
-QT4_ADD_DBUS_ADAPTOR(knotificationitem_SRCS     org.kde.NotificationItem.xml
-                     knotificationitemdbus_p.h Experimental::KNotificationItemDBus)
+QT4_ADD_DBUS_ADAPTOR(qnotificationitem_SRCS     org.kde.NotificationItem.xml
+                     qnotificationitemdbus_p.h Experimental::QNotificationItemDBus)
 
 set(systemtraydaemon_xml org.kde.NotificationItemWatcher.xml)
-QT4_ADD_DBUS_INTERFACE(knotificationitem_SRCS ${systemtraydaemon_xml} \
notificationwatcher_interface) +QT4_ADD_DBUS_INTERFACE(qnotificationitem_SRCS \
${systemtraydaemon_xml} notificationwatcher_interface)  
 set(notifications_xml org.freedesktop.Notifications.xml)
-QT4_ADD_DBUS_INTERFACE(knotificationitem_SRCS ${notifications_xml} \
notifications_interface) +QT4_ADD_DBUS_INTERFACE(qnotificationitem_SRCS \
${notifications_xml} notifications_interface)  
-kde4_add_library(knotificationitem-1 SHARED ${knotificationitem_SRCS})
-set_target_properties(knotificationitem-1 PROPERTIES VERSION 1.0.0 SOVERSION 1)
-target_link_libraries(knotificationitem-1 ${KDE4_KDEUI_LIBS})
+kde4_add_library(qnotificationitem-1 SHARED ${qnotificationitem_SRCS})
+set_target_properties(qnotificationitem-1 PROPERTIES VERSION 1.0.0 SOVERSION 1)
+target_link_libraries(qnotificationitem-1 ${KDE4_KDEUI_LIBS})
 
-kde4_add_executable(knotificationitemtest ${knotificationitemtest_SRC})
-target_link_libraries(knotificationitemtest ${KDE4_KDEUI_LIBS} knotificationitem-1)
+kde4_add_executable(qnotificationitemtest ${qnotificationitemtest_SRC})
+target_link_libraries(qnotificationitemtest ${KDE4_KDEUI_LIBS} qnotificationitem-1)
 
 
-install(TARGETS knotificationitem-1 EXPORT kdelibsLibraryTargets \
${INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS qnotificationitem-1 EXPORT \
kdelibsLibraryTargets ${INSTALL_TARGETS_DEFAULT_ARGS})  
 install(FILES
-    knotificationitem.h
-    knotificationitem_export.h
-    DESTINATION ${INCLUDE_INSTALL_DIR}/knotificationitem-1 COMPONENT Devel)
+    qnotificationitem.h
+    qnotificationitem_export.h
+    DESTINATION ${INCLUDE_INSTALL_DIR}/qnotificationitem-1 COMPONENT Devel)
 
 install(FILES
     org.kde.NotificationItem.xml
--- trunk/playground/base/plasma/libs/qnotificationareaitem/cmake/modules/CMakeLists.txt \
#1016374:1017721 @@ -1,6 +1,6 @@
 # explicitely install the "public" cmake files
 
-#do not install FindLibKNotificationItem-1.cmake at this time
-#set(cmakeFiles FindLibKNotificationItem-1.cmake)
+#do not install FindLibQNotificationItem-1.cmake at this time
+#set(cmakeFiles FindLibQNotificationItem-1.cmake)
 install(FILES ${cmakeFiles} DESTINATION ${DATA_INSTALL_DIR}/cmake/modules)
 


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

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