summaryrefslogtreecommitdiffstats
path: root/arts/gui/kde
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2017-03-26 15:58:46 +0200
committerSlávek Banko <slavek.banko@axis.cz>2017-03-26 15:58:46 +0200
commit8b12682035e2ae92a29a9ce12abc5fbcf38b1192 (patch)
tree1cc5c3fe9ef3b23557fc4e9e507fd0d23d007160 /arts/gui/kde
parent250d713ff809fa943f614459009d1160e269dcef (diff)
downloadtdemultimedia-8b12682035e2ae92a29a9ce12abc5fbcf38b1192.tar.gz
tdemultimedia-8b12682035e2ae92a29a9ce12abc5fbcf38b1192.zip
Initial cmake conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'arts/gui/kde')
-rw-r--r--arts/gui/kde/CMakeLists.txt74
-rw-r--r--arts/gui/kde/Makefile.am2
-rw-r--r--arts/gui/kde/artstestgui.cpp4
-rw-r--r--arts/gui/kde/mcopclass/CMakeLists.txt19
4 files changed, 96 insertions, 3 deletions
diff --git a/arts/gui/kde/CMakeLists.txt b/arts/gui/kde/CMakeLists.txt
new file mode 100644
index 00000000..fec23fc2
--- /dev/null
+++ b/arts/gui/kde/CMakeLists.txt
@@ -0,0 +1,74 @@
+#################################################
+#
+# (C) 2017 Slávek Banko
+# slavek (DOT) banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+add_subdirectory( mcopclass )
+
+include_directories(
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}/arts/runtime
+ ${CMAKE_BINARY_DIR}/arts/gui/common
+ ${CMAKE_BINARY_DIR}
+ ${ARTS_INCLUDE_DIRS}
+ ${TQT_INCLUDE_DIRS}
+ ${TDE_INCLUDE_DIR}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+ ${ARTS_LIBRARY_DIRS}
+)
+
+
+##### artsgui_kde (library) #####################
+
+tde_add_library( artsgui_kde SHARED AUTOMOC
+ SOURCES
+ kwidget_impl.cpp kbutton_impl.cpp
+ kpoti_impl.cpp kpoti.cpp kwidgetrepo.cpp kartswidget.cpp
+ klineedit_impl.cpp khbox_impl.cpp kvbox_impl.cpp kspinbox_impl.cpp
+ kcombobox_impl.cpp kfader.cpp kfader_impl.cpp kgraph_impl.cpp kgraph.cpp
+ kgraphline_impl.cpp kframe_impl.cpp klayoutbox_impl.cpp tdepopupbox_impl.cpp
+ klevelmeter_impl.cpp klevelmeter_small.cpp klevelmeter_linebars.cpp
+ klevelmeter_normalbars.cpp klevelmeter_firebars.cpp
+ ktickmarks_impl.cpp kvolumefader_impl.cpp klabel_impl.cpp
+ VERSION 0.0.0
+ LINK
+ tdecore-shared tdeio-shared tdeui-shared tdefx-shared artsgui_idl-shared
+ DESTINATION ${LIB_INSTALL_DIR}
+)
+
+
+##### artsgui (check program) ###################
+
+tde_add_check_executable( artstestgui
+ SOURCES
+ artstestgui.cpp
+ LINK
+ tdecore-shared tdeio-shared tdeui-shared tdefx-shared
+ qtmcop artsflow artsgui_idl-shared
+)
+
+tde_add_check_executable( dbtest AUTOMOC
+ SOURCES
+ dbtest.cpp
+ LINK
+ tdecore-shared tdeio-shared tdeui-shared artsgui_kde-shared
+)
+
+
+##### other data ################################
+
+install(
+ FILES
+ kartswidget.h kframe_impl.h kwidget_impl.h kwidgetrepo.h klayoutbox_impl.h
+ DESTINATION ${INCLUDE_INSTALL_DIR}/arts
+)
diff --git a/arts/gui/kde/Makefile.am b/arts/gui/kde/Makefile.am
index 33b8f582..440af44f 100644
--- a/arts/gui/kde/Makefile.am
+++ b/arts/gui/kde/Makefile.am
@@ -21,7 +21,7 @@ libartsgui_kde_la_LDFLAGS = $(all_libraries) -no-undefined
libartsgui_kde_la_COMPILE_FIRST = ../common/artsgui.h
artstestgui_SOURCES = artstestgui.cpp
-artstestgui_LDADD = -lqtmcop -ltdecore -lartsflow \
+artstestgui_LDADD = -lmcop -lqtmcop -ltdecore -lartsflow \
$(top_builddir)/arts/gui/common/libartsgui_idl.la
artstestgui_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
diff --git a/arts/gui/kde/artstestgui.cpp b/arts/gui/kde/artstestgui.cpp
index 5c3613d7..5f558a26 100644
--- a/arts/gui/kde/artstestgui.cpp
+++ b/arts/gui/kde/artstestgui.cpp
@@ -31,9 +31,9 @@ using namespace Arts;
int main(int argc, char **argv)
{
- TQIOManager iomanager;
+ QIOManager iomanager;
Dispatcher dispatcher(&iomanager);
- TDEApplication application(argc, argv, "testgui");
+ TDEApplication application(argc, argv, "testgui", true);
ObjectManager::the()->provideCapability("kdegui");
diff --git a/arts/gui/kde/mcopclass/CMakeLists.txt b/arts/gui/kde/mcopclass/CMakeLists.txt
new file mode 100644
index 00000000..56985bb5
--- /dev/null
+++ b/arts/gui/kde/mcopclass/CMakeLists.txt
@@ -0,0 +1,19 @@
+#################################################
+#
+# (C) 2017 Slávek Banko
+# slavek (DOT) banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+install(
+ FILES
+ Widget.mcopclass Button.mcopclass Poti.mcopclass
+ LineEdit.mcopclass HBox.mcopclass VBox.mcopclass SpinBox.mcopclass
+ Fader.mcopclass GraphLine.mcopclass LayoutBox.mcopclass
+ PopupBox.mcopclass LevelMeter.mcopclass Label.mcopclass
+ DESTINATION ${LIB_INSTALL_DIR}/mcop/Arts
+)