summaryrefslogtreecommitdiffstats
path: root/dcop
Commit message (Collapse)AuthorAgeFilesLines
* Align kalyptus to changes made in TDE/tdebindings#36Michele Calgaro2024-04-041-2/+5
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace QT_STATIC_CONST_* with actual definitionsMichele Calgaro2024-02-151-2/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace Q_WS_* defines with TQ_WS_* equivalentsMichele Calgaro2024-02-1511-24/+24
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT definesMichele Calgaro2024-01-125-32/+32
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace various '#define' strings - part 6Michele Calgaro2023-12-211-2/+2
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Drop INT32 => TQ_INT32 definitions that are no longer needed, causingSlávek Banko2023-10-092-2/+0
| | | | | | conflicting declaration and leading to FTBFS on 32bit architectures. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Removed unsupported qtint*/qtuint* typesMichele Calgaro2023-10-094-4/+4
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, ↵Michele Calgaro2023-09-2510-173/+173
| | | | | | QIODevice with TQ* version Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERNMichele Calgaro2023-09-131-1/+1
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace various Q_* and QT_* defines with TQ_* and TQT_*Michele Calgaro2023-09-071-3/+3
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace tqt_mo_* definesMichele Calgaro2023-09-011-1/+1
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Drop USE_TQT4 codeMichele Calgaro2023-08-261-38/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace Q_OBJECT with TQ_OBJECTMichele Calgaro2023-07-2010-21/+15
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the ↵Michele Calgaro2023-07-125-68/+68
| | | | | | merging of tqtinterface with tqt3. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Add SunOS specific patchesDenis Kozadaev2023-05-221-1/+16
| | | | Signed-off-by: Denis Kozadaev <denis@dilos.org>
* dcopclient: Added support for TQStringVariantMapMavridis Philippe2022-05-201-0/+3
| | | | Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* dcopclient: Fix TQStringList handling.Mavridis Philippe2022-05-201-1/+1
| | | | Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* dcopclient: Fixed TQMap/TQValueList display.Mavridis Philippe2022-05-201-6/+6
| | | | | | This fixes issue #166. Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* Fix feature detections with CMakeOBATA Akio2022-01-171-3/+7
| | | | | | | | * implement missing checks with CMake * fixes and improve some detections * remove missing but unused checks Signed-off-by: OBATA Akio <obache@wizdas.com>
* dcopclient: Use default path for XDG_RUNTIME_DIR if the variable is not set.Slávek Banko2021-11-081-50/+57
| | | | | | This resolves issue TDE/tdebase#241. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fixed broken Q_FULL_TEMPLATE_INSTANTIATION define (renamed to ↵Michele Calgaro2021-02-131-1/+1
| | | | | | TQ_FULL_TEMPLATE_INSTANTIATION). Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fixed more uncrustify's code formatting offending files.Michele Calgaro2021-01-031-2/+2
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fixed some uncrustify's code formatting offending files.Michele Calgaro2020-12-193-25/+20
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Renaming of files in preparation for code style tools.Michele Calgaro2020-12-066-17/+17
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* tests: Wait for the dcop server to be ready.Slávek Banko2020-12-061-0/+6
| | | | | | Use a separate ICEAUTHORITY for tests. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Removed code formatting modelines.Michele Calgaro2020-09-277-11/+4
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Add a knob to use fixed path `iceauth` toolOBATA Akio2020-08-262-3/+16
| | | | | | | | `system()` and `popen()` may unsafe unless using absolute command path. Rely on PATH environment variable set by users may result in unwanted tool. Signed-off-by: OBATA Akio <obache@wizdas.com> Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fix to set DCOP_PATH properlyOBATA Akio2020-08-261-0/+6
| | | | | | | | | It is only used in dcop module and empty is unwanted situation, so properly define it in dcop/CMakeLists.txt. Rerevant header generation is also moved to there, and prevent to define in main config.h file too. Signed-off-by: OBATA Akio <obache@wizdas.com>
* Add LOCAL_PEEREID sockopt support for peer socket uid checkOBATA Akio2020-08-121-2/+12
| | | | | | It is supported on NetBSD 5 and later. Signed-off-by: OBATA Akio <obache@wizdas.com>
* dcopidlng fixes:Slávek Banko2020-06-111-1/+1
| | | | | | + do not skip an empty class if it is declared with K_DCOP Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* dcopidlng fixes:Slávek Banko2020-06-074-22/+41
| | | | | | | | | | | | | | + includes may use quotation marks + argument types can contain multiple words + avoid use long, short, int or char type as the argument name + avoid use type as the argument name if the const qualifier is used + use long notation of int types + the arguments can be nameless + return types can have qualifiers + do not warn on inherit of the DCOPObject and TQObject classes + the documentation comment does not have to end on a separate line Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Remove remaining 'register' instructions.Michele Calgaro2020-02-201-2/+2
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Removed explicit usage of the 'register' keyword.Michele Calgaro2020-01-305-34/+34
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Process the new location of the ICEauthority fileSlávek Banko2019-12-022-25/+79
| | | | | | | | | | | | | | | + our internal implementation of IceAuthFileName tests whether the ICEauthority file exists in the folder specified by the XDG_RUNTIME_DIR variable + DCOP client tests whether the ICEauthority file for a specific user exists in the user's folder based on the XDG_RUNTIME_DIR variable + tdeinit uses the IceAuthFileName() function instead of building the file name This relates to bug 3027. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* cmake: Avoid double generating of dcop/tests files.Slávek Banko2019-11-051-14/+7
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Added TQStringVariantMap to dcop known types.Michele Calgaro2019-07-071-0/+4
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Adjusted to latest TQVariant::TQVariant(bool) function.Michele Calgaro2019-05-241-1/+1
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fix CMake build dependencies for tests.Slávek Banko2019-03-031-0/+12
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* QT_NO_* -> TQT_NO_* renaming.Michele Calgaro2018-10-171-3/+3
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* qt -> tqt conversion:Michele Calgaro2018-09-272-3/+3
| | | | | | | | | | | QTDIR -> TQTDIR QTDOC -> TQTDOC INCDIR_QT -> INCDIR_TQT LIBDIR_QT -> LIBDIR_TQT QT_INC -> TQT_INC QT_LIB -> TQT_LIB Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* qt -> tqt conversion:Michele Calgaro2018-09-271-1/+1
| | | | | | | | | qtlib -> tqtlib libqt -> libtqt QTLIB -> TQTLIB LIBQT -> LIBTQT Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Remove QT_CLEAN_NAMESPACE/TQT_CLEAN_NAMESPACE unnecessary define.Michele Calgaro2018-09-253-5/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* LIB_QT -> LIB_TQT conversion to align to updated admin moduleMichele Calgaro2018-09-174-11/+11
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Conversion QT_THREAD_SUPPORT -> TQT_THREAD_SUPPORTSlávek Banko2018-09-171-1/+1
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fix CMake build dependenciesSlávek Banko2017-04-091-15/+7
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* testing: Run tests that use DCOP in a temporary homeSlávek Banko2017-02-011-0/+5
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* testing: fix bash specific syntax in dcop testSlávek Banko2017-01-291-1/+2
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* dcop/tests: run dcop tests in a safer mannerAlexander Golubev2017-01-293-2/+13
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* Include module into test namesAlexander Golubev2017-01-291-1/+2
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* Make dcop tests run without XAlexander Golubev2017-01-293-10/+24
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>