summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* cmake: set WITH_GCC_VISIBILITY to ON by defaultfeat/cmakeConv-r1Alexander Golubev2024-03-101-2/+2
| | | | | | The old ./configure has it ON by default as well Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: use generated qplatformdefs.hAlexander Golubev2024-03-1039-37/+267
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: rename Q -> TQ for Q_BIG_ENDIAN, Q_LITTLE_ENDIAN and Q_BYTE_ORDERAlexander Golubev2024-03-082-5/+5
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: sort options a bit and add some configuration sanity checksAlexander Golubev2024-03-085-22/+94
| | | | | | Fix build with WITH_MODULE_INPUTMETHOD=OFF Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: simplify build of tools with new macrosAlexander Golubev2024-03-084-147/+27
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: add the rest tools to buildAlexander Golubev2024-03-087-0/+228
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: enable image formats to be build as pluginsAlexander Golubev2024-03-083-39/+65
| | | | | | | | | | Renamed cmake options: - WITH_TQTGIF -> WITH_IMGFMT_GIF - WITH_JPEG -> WITH_IMGFMT_JPEG - WITH_PNG -> WITH_IMGFMT_PNG - WITH_LIBMNG -> WITH_IMGFMT_MNG Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: build sql drivers as pluginsAlexander Golubev2024-03-082-36/+41
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: add options to build styles as pluginsAlexander Golubev2024-03-082-17/+60
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: fix designer's icon filenameAlexander Golubev2024-03-081-1/+1
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: remove config.h as it isn't needed and FTBFSs assistantAlexander Golubev2024-03-087-23/+0
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* [minor]cmake: fix a typoAlexander Golubev2024-03-081-1/+1
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: rework styles buildingAlexander Golubev2024-03-083-47/+55
| | | | | | | | - fix several styles-related FTBFS when disabling a style - use separated flags for BUILD_STULE and WITH_STYLE_ALL - add several convenience macros Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: fix build WITH_SOUND=OFFAlexander Golubev2024-03-081-2/+5
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: fix libfbclient discovery if fb_config is not presentAlexander Golubev2024-03-081-23/+36
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: use pkg-config for mng detectionAlexander Golubev2024-03-081-9/+5
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: set QT_INSTALL_* varibles in a cascadig mannerAlexander Golubev2024-03-081-10/+10
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* cmake: rework tqt_automoc to process only headers for selected sourcesAlexander Golubev2024-03-084-98/+107
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* Conversion to the cmake building system.gregory guy2024-03-0893-3/+4196
| | | | | Signed-off-by: gregory guy <gregory-tde@laposte.net> Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fix compilation with -disable-inputmethod and -no-inputmethodAlexander Golubev2024-03-074-5/+18
| | | | | | | | | | | | | | | | | | | | | | | | | As for now here are two sets of inputmethod options: - -enable-inputmethod/disable-inputmethod - which seems to supposed to control whether build the 'inputmethod' module or not - -inputmethod/-no-inputmethod - which seems to supposed to enable/disable inputmethod support without changing the ABI. Before the patch both -disable-inputmethod and -no-inputmethod were just breaking the build: -no-inputmethod were disabling some code with support for the module, but didn't disabled the module build itself nor build of plugins. -disable-inputmethod were disabling build of plugins and module, but didn't disabled code depending upon it. It seems the inputmethod support were still WIP when the last release of Qt3 came to be, hence the mess. This patch fixes the build if both -disable-inputmethod AND -no-inputmethod are supplied. Disabling only one is not enough due to tqmake/configure have problems handling two different options of the same name. Later the -inputmethod/-no-inputmethod should be probably removed entirely. Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* Fix FTBFS with -no-xkbAlexander Golubev2024-03-041-4/+17
| | | | | | | The analogue of XkbKeycodeToKeysym() used to be XKeycodeToKeysym(), but it was deprecated in favour of XGetKeyboardMapping() method. Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* Fix FTBFS with -no-stlAlexander Golubev2024-03-041-0/+2
| | | | | | On modern compilers placement new requires inclusion of <new> Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* avoid translating the /qt/XIMInputStyle options when saving into configAlexander Golubev2024-03-022-6/+7
| | | | | | | Also use "On The Spot" as the default when the setting in the config is incorrect. Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* gitignore: add missing examples (sound, tablet)Alexander Golubev2024-02-291-0/+4
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* Fix FTBFS with -qt-sql-sqlite3Alexander Golubev2024-02-291-0/+5
| | | | | | Fix FTBFS when sqlite3 sql driver is being built into the library Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* fix grep complain in configure: "warning: stray \ before c"Alexander Golubev2024-02-211-3/+3
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* Remove original Q_WS_* definesMichele Calgaro2024-02-202-22/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Add .gitignore fileAlexander Golubev2024-02-191-0/+303
| | | | Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
* Replace QT_STATIC_CONST_* with actual definitionsMichele Calgaro2024-02-1512-155/+129
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace Q_WS_* defines with TQ_WS_* equivalentsMichele Calgaro2024-02-12209-1191/+1213
| | | | | | | | | | | | This is the first part of the replacement process. Usage of Q_WS_* has been replaced with the equivalent TQ_WS_*. Definition of Q_WS_* has been mirrored into TQ_WS_* defines, to allow TDE code to continue building till replacement is carried over to all other modules. Once that is completed, the original Q_WS_* defines will be removed. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOTMichele Calgaro2023-12-27472-3800/+3800
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fix potential buffer overflow in debug functions.Slávek Banko2023-12-261-3/+3
| | | | | | This resolves issue #70. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Update READMEMavridis Philippe2023-12-173-8/+66
| | | | | | | | A new README with markdown format, updated information on TQt, contributor section and translations status. The old README has been preserved as README.Qt3 for historical reasons. Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* Add support for HistoryBackButton and HistoryForwardButtonMavridis Philippe2023-12-163-12/+21
| | | | | | This resolves TDE/tdebase#421. Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* tqdesigner: prevent SEGV from invalid pointer. This resolves issue #97.Michele Calgaro2023-12-081-1/+9
| | | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> Signed-off-by: ormorph <roma251078@mail.ru>
* Translated using Weblate (Russian)Andrei Stepanov2023-12-031-1/+1
| | | | | | | Currently translated at 100.0% (488 of 488 strings) Translation: dependencies/tqt3 Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/dependencies/tqt3/ru/
* Translated using Weblate (Russian)Andrei Stepanov2023-12-011-1/+1
| | | | | | | Currently translated at 100.0% (488 of 488 strings) Translation: dependencies/tqt3 Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/dependencies/tqt3/ru/
* Replaced various '#define' with actual strings - part 3Michele Calgaro2023-11-242-2/+2
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace Qt with TQtMichele Calgaro2023-11-1958-292/+292
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Translated using Weblate (Russian)Andrei Stepanov2023-11-051-1/+1
| | | | | | | Currently translated at 100.0% (488 of 488 strings) Translation: dependencies/tqt3 Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/dependencies/tqt3/ru/
* Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, ↵Michele Calgaro2023-09-23396-7141/+7141
| | | | | | 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-13577-1582/+1582
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace various Q_* and QT_* defines with TQ_* and TQT_*Michele Calgaro2023-09-0793-598/+598
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Minor adjustments to porting documentationMichele Calgaro2023-08-072-16/+16
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Drop compatibility code for TQSignalMichele Calgaro2023-08-078-123/+8
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Drop compatibility code for TQPaletteMichele Calgaro2023-07-188-86/+11
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Remove dangled symlinks for droped compat headers.Slávek Banko2023-07-1852-52/+0
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Drop compatibility code for TQButtonMichele Calgaro2023-07-1614-109/+5
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Drop compatibility code for TQThreadMichele Calgaro2023-07-118-41/+2
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Drop compatibility code for TQLineEditMichele Calgaro2023-07-1110-213/+45
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>