summaryrefslogtreecommitdiffstats
path: root/kshowmail/kcmconfigs
diff options
context:
space:
mode:
Diffstat (limited to 'kshowmail/kcmconfigs')
-rw-r--r--kshowmail/kcmconfigs/CMakeLists.txt137
-rw-r--r--kshowmail/kcmconfigs/accountsetupdialog.h16
-rw-r--r--kshowmail/kcmconfigs/configaccounts.h2
-rw-r--r--kshowmail/kcmconfigs/configactions.h8
-rw-r--r--kshowmail/kcmconfigs/configdisplay.h10
-rw-r--r--kshowmail/kcmconfigs/configfilter.h8
-rw-r--r--kshowmail/kcmconfigs/configgeneral.h12
-rw-r--r--kshowmail/kcmconfigs/configlog.h14
-rw-r--r--kshowmail/kcmconfigs/configspamcheck.h8
-rw-r--r--kshowmail/kcmconfigs/encryption.h2
-rw-r--r--kshowmail/kcmconfigs/filtercriteriawidget.h6
-rw-r--r--kshowmail/kcmconfigs/filtersetupdialog.h16
-rw-r--r--kshowmail/kcmconfigs/mailboxwizard.h14
-rw-r--r--kshowmail/kcmconfigs/mailboxwizardlistitem.h2
-rw-r--r--kshowmail/kcmconfigs/senderlistdialog.h10
-rw-r--r--kshowmail/kcmconfigs/tdewalletaccess.h2
16 files changed, 202 insertions, 65 deletions
diff --git a/kshowmail/kcmconfigs/CMakeLists.txt b/kshowmail/kcmconfigs/CMakeLists.txt
new file mode 100644
index 0000000..d2f590b
--- /dev/null
+++ b/kshowmail/kcmconfigs/CMakeLists.txt
@@ -0,0 +1,137 @@
+include_directories(
+ ${CMAKE_BINARY_DIR}
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+ ${TDE_LIB_DIR}
+)
+
+
+##### kcm_kshowmailconfigaccounts (kpart)
+
+tde_add_kpart( kcm_kshowmailconfigaccounts AUTOMOC
+
+ SOURCES
+ configaccounts.cpp
+ accountsetupitem.cpp
+ accountsetupdialog.cpp
+ encryption.cpp
+ tdewalletaccess.cpp
+ LINK
+ tdecore-shared
+ tdeui-shared
+ tdeio-shared
+ tdewalletclient
+
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### kcm_kshowmailconfigactions (kpart)
+
+tde_add_kpart( kcm_kshowmailconfigactions AUTOMOC
+
+ SOURCES
+ configactions.cpp
+ LINK
+ tdecore-shared
+ tdeui-shared
+ tdeio-shared
+
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### kcm_kshowmailconfigdisplay (kpart)
+
+tde_add_kpart( kcm_kshowmailconfigdisplay AUTOMOC
+
+ SOURCES
+ configdisplay.cpp
+ LINK
+ tdecore-shared
+ tdeui-shared
+
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### kcm_kshowmailconfigfilter (kpart)
+
+tde_add_kpart( kcm_kshowmailconfigfilter AUTOMOC
+
+ SOURCES
+ configfilter.cpp
+ senderlistdialog.cpp
+ filtersetupitem.cpp
+ filtersetupdialog.cpp
+ filtercriteriawidget.cpp
+ mailboxwizard.cpp
+ mailboxwizardlistitem.cpp
+ LINK
+ tdecore-shared
+ tdeui-shared
+ tdeio-shared
+
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### kcm_kshowmailconfiggeneral (kpart)
+
+tde_add_kpart( kcm_kshowmailconfiggeneral AUTOMOC
+
+ SOURCES
+ configgeneral.cpp
+ LINK
+ tdecore-shared
+ tdeui-shared
+
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### kcm_kshowmailconfiglog (kpart)
+
+tde_add_kpart( kcm_kshowmailconfiglog AUTOMOC
+
+ SOURCES
+ configlog.cpp
+ LINK
+ tdecore-shared
+ tdeui-shared
+
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### kcm_kshowmailconfigspamcheck (kpart)
+
+tde_add_kpart( kcm_kshowmailconfigspamcheck AUTOMOC
+
+ SOURCES
+ configspamcheck.cpp
+ mailboxwizard.cpp
+ mailboxwizardlistitem.cpp
+ LINK
+ tdecore-shared
+ tdeui-shared
+ tdeio-shared
+
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### other data
+
+file( GLOB _desktops RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.desktop )
+
+install(
+ FILES ${_desktops}
+ DESTINATION ${SERVICES_INSTALL_DIR}
+)
diff --git a/kshowmail/kcmconfigs/accountsetupdialog.h b/kshowmail/kcmconfigs/accountsetupdialog.h
index 61e92e1..24e343e 100644
--- a/kshowmail/kcmconfigs/accountsetupdialog.h
+++ b/kshowmail/kcmconfigs/accountsetupdialog.h
@@ -13,14 +13,14 @@
#define ACCOUNTSETUPDIALOG_H
//TQt headers
-#include <ntqlayout.h>
-#include <ntqlabel.h>
-#include <ntqtooltip.h>
-#include <ntqspinbox.h>
-#include <ntqgroupbox.h>
-#include <ntqbuttongroup.h>
-#include <ntqradiobutton.h>
-#include <ntqcheckbox.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
+#include <tqtooltip.h>
+#include <tqspinbox.h>
+#include <tqgroupbox.h>
+#include <tqbuttongroup.h>
+#include <tqradiobutton.h>
+#include <tqcheckbox.h>
//KDE headers
#include <kdialogbase.h>
diff --git a/kshowmail/kcmconfigs/configaccounts.h b/kshowmail/kcmconfigs/configaccounts.h
index 047c262..9016859 100644
--- a/kshowmail/kcmconfigs/configaccounts.h
+++ b/kshowmail/kcmconfigs/configaccounts.h
@@ -13,7 +13,7 @@
#define CONFIGACCOUNTS_H
//TQt headers
-#include <ntqlayout.h>
+#include <tqlayout.h>
//KDE headers
#include <tdecmodule.h>
diff --git a/kshowmail/kcmconfigs/configactions.h b/kshowmail/kcmconfigs/configactions.h
index 927f121..787a759 100644
--- a/kshowmail/kcmconfigs/configactions.h
+++ b/kshowmail/kcmconfigs/configactions.h
@@ -15,10 +15,10 @@
#include <string.h>
//QT headers
-#include <ntqlayout.h>
-#include <ntqgroupbox.h>
-#include <ntqcheckbox.h>
-#include <ntqtooltip.h>
+#include <tqlayout.h>
+#include <tqgroupbox.h>
+#include <tqcheckbox.h>
+#include <tqtooltip.h>
//KDE headers
#include <tdecmodule.h>
diff --git a/kshowmail/kcmconfigs/configdisplay.h b/kshowmail/kcmconfigs/configdisplay.h
index 1404681..bbebd03 100644
--- a/kshowmail/kcmconfigs/configdisplay.h
+++ b/kshowmail/kcmconfigs/configdisplay.h
@@ -13,11 +13,11 @@
#define CONFIGDISPLAY_H
//TQt headers
-#include <ntqlayout.h>
-#include <ntqgroupbox.h>
-#include <ntqcheckbox.h>
-#include <ntqlabel.h>
-#include <ntqtooltip.h>
+#include <tqlayout.h>
+#include <tqgroupbox.h>
+#include <tqcheckbox.h>
+#include <tqlabel.h>
+#include <tqtooltip.h>
//KDE headers
#include <tdecmodule.h>
diff --git a/kshowmail/kcmconfigs/configfilter.h b/kshowmail/kcmconfigs/configfilter.h
index bcff4ef..297ba75 100644
--- a/kshowmail/kcmconfigs/configfilter.h
+++ b/kshowmail/kcmconfigs/configfilter.h
@@ -13,10 +13,10 @@
#define CONFIGFILTER_H
//QT headers
-#include <ntqlayout.h>
-#include <ntqgroupbox.h>
-#include <ntqtooltip.h>
-#include <ntqcheckbox.h>
+#include <tqlayout.h>
+#include <tqgroupbox.h>
+#include <tqtooltip.h>
+#include <tqcheckbox.h>
//KDE headers
#include <tdecmodule.h>
diff --git a/kshowmail/kcmconfigs/configgeneral.h b/kshowmail/kcmconfigs/configgeneral.h
index 21c47bf..55cbb39 100644
--- a/kshowmail/kcmconfigs/configgeneral.h
+++ b/kshowmail/kcmconfigs/configgeneral.h
@@ -13,12 +13,12 @@
#define CONFIGGENERAL_H
//TQt headers
-#include <ntqlayout.h>
-#include <ntqgroupbox.h>
-#include <ntqcheckbox.h>
-#include <ntqspinbox.h>
-#include <ntqtooltip.h>
-#include <ntqlabel.h>
+#include <tqlayout.h>
+#include <tqgroupbox.h>
+#include <tqcheckbox.h>
+#include <tqspinbox.h>
+#include <tqtooltip.h>
+#include <tqlabel.h>
//KDE headers
#include <tdecmodule.h>
diff --git a/kshowmail/kcmconfigs/configlog.h b/kshowmail/kcmconfigs/configlog.h
index 7fbd9c3..a331d83 100644
--- a/kshowmail/kcmconfigs/configlog.h
+++ b/kshowmail/kcmconfigs/configlog.h
@@ -17,13 +17,13 @@
#define ID_BUTTON_REMOVE_AFTER_DAYS 2
//qt headers
-#include <ntqlayout.h>
-#include <ntqgroupbox.h>
-#include <ntqtooltip.h>
-#include <ntqcheckbox.h>
-#include <ntqradiobutton.h>
-#include <ntqbuttongroup.h>
-#include <ntqspinbox.h>
+#include <tqlayout.h>
+#include <tqgroupbox.h>
+#include <tqtooltip.h>
+#include <tqcheckbox.h>
+#include <tqradiobutton.h>
+#include <tqbuttongroup.h>
+#include <tqspinbox.h>
//KDE headers
#include <tdecmodule.h>
diff --git a/kshowmail/kcmconfigs/configspamcheck.h b/kshowmail/kcmconfigs/configspamcheck.h
index 61fe431..359fc98 100644
--- a/kshowmail/kcmconfigs/configspamcheck.h
+++ b/kshowmail/kcmconfigs/configspamcheck.h
@@ -19,10 +19,10 @@
#include <string.h>
//TQt headers
-#include <ntqlayout.h>
-#include <ntqlabel.h>
-#include <ntqgroupbox.h>
-#include <ntqtooltip.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
+#include <tqgroupbox.h>
+#include <tqtooltip.h>
//KDE headers
#include <tdecmodule.h>
diff --git a/kshowmail/kcmconfigs/encryption.h b/kshowmail/kcmconfigs/encryption.h
index 4c68b4f..8781139 100644
--- a/kshowmail/kcmconfigs/encryption.h
+++ b/kshowmail/kcmconfigs/encryption.h
@@ -11,7 +11,7 @@
//
//TQt headers
-#include <ntqstring.h>
+#include <tqstring.h>
//KDE headers
#include <kurl.h>
diff --git a/kshowmail/kcmconfigs/filtercriteriawidget.h b/kshowmail/kcmconfigs/filtercriteriawidget.h
index ca5548f..ad02f89 100644
--- a/kshowmail/kcmconfigs/filtercriteriawidget.h
+++ b/kshowmail/kcmconfigs/filtercriteriawidget.h
@@ -13,9 +13,9 @@
#define FILTERCRITERIAWIDGET_H
//TQt headers
-#include <ntqwidget.h>
-#include <ntqlayout.h>
-#include <ntqcheckbox.h>
+#include <tqwidget.h>
+#include <tqlayout.h>
+#include <tqcheckbox.h>
//KDE headers
#include <klineedit.h>
diff --git a/kshowmail/kcmconfigs/filtersetupdialog.h b/kshowmail/kcmconfigs/filtersetupdialog.h
index b989238..0e15c96 100644
--- a/kshowmail/kcmconfigs/filtersetupdialog.h
+++ b/kshowmail/kcmconfigs/filtersetupdialog.h
@@ -17,14 +17,14 @@
#define ID_BUTTON_LINKAGE_MATCH_ANY 2
//TQt headers
-#include <ntqlayout.h>
-#include <ntqgroupbox.h>
-#include <ntqbuttongroup.h>
-#include <ntqradiobutton.h>
-#include <ntqvbox.h>
-#include <ntqobjectlist.h>
-#include <ntqtooltip.h>
-#include <ntqlabel.h>
+#include <tqlayout.h>
+#include <tqgroupbox.h>
+#include <tqbuttongroup.h>
+#include <tqradiobutton.h>
+#include <tqvbox.h>
+#include <tqobjectlist.h>
+#include <tqtooltip.h>
+#include <tqlabel.h>
//KDE headers
#include <kdialogbase.h>
diff --git a/kshowmail/kcmconfigs/mailboxwizard.h b/kshowmail/kcmconfigs/mailboxwizard.h
index 7332cf4..a75d8be 100644
--- a/kshowmail/kcmconfigs/mailboxwizard.h
+++ b/kshowmail/kcmconfigs/mailboxwizard.h
@@ -16,13 +16,13 @@
#include <stdlib.h>
//TQt headers
-#include <ntqwizard.h>
-#include <ntqwidget.h>
-#include <ntqlayout.h>
-#include <ntqdir.h>
-#include <ntqregexp.h>
-#include <ntqfileinfo.h>
-#include <ntqmap.h>
+#include <tqwizard.h>
+#include <tqwidget.h>
+#include <tqlayout.h>
+#include <tqdir.h>
+#include <tqregexp.h>
+#include <tqfileinfo.h>
+#include <tqmap.h>
//KDE headers
#include <tdelocale.h>
diff --git a/kshowmail/kcmconfigs/mailboxwizardlistitem.h b/kshowmail/kcmconfigs/mailboxwizardlistitem.h
index 13be613..f2819fe 100644
--- a/kshowmail/kcmconfigs/mailboxwizardlistitem.h
+++ b/kshowmail/kcmconfigs/mailboxwizardlistitem.h
@@ -13,7 +13,7 @@
#define MAILBOXWIZARDLISTITEM_H
//TQt-Headers
-#include <ntqlistview.h>
+#include <tqlistview.h>
//KDE-Headers
#include <tdelistview.h>
diff --git a/kshowmail/kcmconfigs/senderlistdialog.h b/kshowmail/kcmconfigs/senderlistdialog.h
index 9ba0e4c..87a0c37 100644
--- a/kshowmail/kcmconfigs/senderlistdialog.h
+++ b/kshowmail/kcmconfigs/senderlistdialog.h
@@ -13,11 +13,11 @@
#define SENDERLISTDIALOG_H
//TQt headers
-#include <ntqlayout.h>
-#include <ntqtooltip.h>
-#include <ntqradiobutton.h>
-#include <ntqbuttongroup.h>
-#include <ntqpushbutton.h>
+#include <tqlayout.h>
+#include <tqtooltip.h>
+#include <tqradiobutton.h>
+#include <tqbuttongroup.h>
+#include <tqpushbutton.h>
//KDE headers
#include <kdialogbase.h>
diff --git a/kshowmail/kcmconfigs/tdewalletaccess.h b/kshowmail/kcmconfigs/tdewalletaccess.h
index 6699408..26c72dc 100644
--- a/kshowmail/kcmconfigs/tdewalletaccess.h
+++ b/kshowmail/kcmconfigs/tdewalletaccess.h
@@ -10,7 +10,7 @@
#define TDEWALLETACCESS_H
//TQt headers
-#include <ntqstring.h>
+#include <tqstring.h>
//KDE headers
#include <tdewallet.h>