summaryrefslogtreecommitdiffstats
path: root/konsole
Commit message (Collapse)AuthorAgeFilesLines
* Replace Q_WS_* defines with TQ_WS_* equivalentsMichele Calgaro2024-02-141-1/+1
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT definesMichele Calgaro2024-01-1611-419/+419
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace various '#define' strings - part 6Michele Calgaro2023-12-264-79/+79
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replaced various '#define' with actual strings - part 5Michele Calgaro2023-12-051-2/+2
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace 'Event' #define stringsMichele Calgaro2023-12-022-8/+8
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace various tq* strings with TQt::* equivalentsMichele Calgaro2023-11-211-2/+2
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace Qt with TQtMichele Calgaro2023-11-139-181/+181
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Deprecate TabColor settingMavridis Philippe2023-11-021-6/+0
| | | | | | | | This is a confusing feature which saves the color of the first tab and makes it the default color in new sessions. As a result, it broke color schemes by overriding the default tab color. This is not related to saving tab colors as part of a session. Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* Konsole: add ability to reset tab color to defaultMavridis Philippe2023-11-022-19/+27
| | | | Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, ↵Michele Calgaro2023-09-254-5/+5
| | | | | | QIODevice with TQ* version Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace TQ_*Focus* and TQ_Scale* definesMichele Calgaro2023-09-022-2/+2
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Drop USE_TQT4 codeMichele Calgaro2023-08-273-9/+1
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Drop TQT_BASE_OBJECT* definesMichele Calgaro2023-08-182-2/+2
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Drop TQT_TQ*_CONST definesMichele Calgaro2023-08-092-2/+2
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace Q_OBJECT with TQ_OBJECTMichele Calgaro2023-07-2012-19/+19
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the ↵Michele Calgaro2023-07-131-1/+1
| | | | | | merging of tqtinterface with tqt3. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Konsole Part: Ctrl+Mouse Scroll to change font sizeMavridis Philippe2022-10-194-18/+32
| | | | | | | | | | Konsole: Move biggerFont() and smallerFont() into TEWidget Signed-off-by: Mavridis Philippe <mavridisf@gmail.com> Additional changes. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Use gender-neutral languageMavridis Philippe2022-07-181-1/+1
| | | | | | This resolves issue TDE/tde#93. Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* Konsole: real transparency switchMavridis Philippe2022-04-192-5/+16
| | | | Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
* konsole: fixup comments text and location.Michele Calgaro2021-12-131-3/+10
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Backported commit 66c83048 from KDE's Konsole source code.Michele Calgaro2021-12-133-10/+51
| | | | | | | | | | | | | | | | | | https://invent.kde.org/utilities/konsole/-/commit/66c830484c3e042284b23114ab51f99a706cea9e This relates to issue TDE/tde#71. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> ------------------------------------------------------------- Original commit info: From: Luis Alves <luisalves05@gmail.com> Date: Wed, 10 Jun 2020 17:34:15 -0300 Subject: Add new ANSI sequences CNL and CPL - It implements Cursor Next Line (CNL) sequence. - It implments Cursor Previous Line (CPL) sequence. - Ex: echo -e "Hello\e[3EWorld" or echo -e "Hello\e[3FWorld" -------------------------------------------------------------
* Konsole: fixed detection of root mc in session menu. This resolves issue #245.Michele Calgaro2021-12-101-0/+1
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Konsole: Correct scrollUp behaviorKurt Hindenburg2021-10-111-4/+16
| | | | | | | | | | | | CSI S escape sequence (SU, scroll up) ignored if number of lines to scroll bigger than scrollable lines REVIEW: 130133 BUG: 379318 Taken from KDE patches and adapted to TDE. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Konsole: CSI 2J: Do not append current screen to historyMariusz Glebocki2021-10-111-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: This behavior is present in e.g. xterm and linux console. Currently when using CSI 2J escape sequence, screen contents are appended to scrollback (including bottom empty lines). This is breaking `clear` command, which replaces scrollback with current screen contents. BUG: 384218 Test Plan: * Start Konsole with a shell * `clear` **Expected result:** Cleared display, empty scrollback. **Actual result:** Cleared display, but scrollback contains previous display contents. --- * Start Konsole with a shell * seq 1000 * `echo -ne '\033[2J` **Expected result:** Cleared display, numbers in last scrollback lines. **Actual result:** Cleared display, but scrollback contains previous display contents (i.e. shell prompt in last lines) Reviewers: #konsole, hindenburg Reviewed By: #konsole, hindenburg Subscribers: hindenburg, konsole-devel, #konsole Tags: #konsole Differential Revision: https://phabricator.kde.org/D21282 Taken from KDE patches and adapted to TDE. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Konsole: Add support for ECMA-48 REP: repeating previous characterKurt Hindenburg2021-10-113-2/+30
| | | | | | | | | | | | | | | Patch by btown using lxde/qtermwidget@60221da by @yan12125 ECMA-48 8.3.103 describes the sequence CSI Pn b for repeating the previous character in the data stream. This sequence has been present in XTerm since January 1997 and has been added to the latest terminfo entry for xterm-new and derived entries such as xterm-256color. https://phabricator.kde.org/D10064 Taken from KDE patches and adapted to TDE. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Removed additional code formatting modelines.Michele Calgaro2020-09-252-3/+1
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Desktop file translations:Slávek Banko2020-06-2820-2510/+114
| | | | | | | + Creation of POT template for desktop files added to CMakeL10n rules. + Added creation of translated desktop files during build. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fixed handling of RMC -> Actions -> Open terminal here.Michele Calgaro2020-02-167-42/+142
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* CMakeL10n: Extract konsole schemas and keytabs directly from definitionSlávek Banko2020-01-011-12/+15
| | | | | | files instead of generating temporary name list file. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Replace Qt branding with TQt ones.Chris2019-08-091-6/+6
| | | | Signed-off-by: Chris <xchrisx@uber.space>
* Fix remaining brandings in tdebase.Chris2019-07-151-1/+1
| | | | Signed-off-by: Chris <xchrisx@uber.space>
* Fix typos in texts.Slávek Banko2019-07-041-1/+1
| | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* Fixed some session's dcop calls in konsolepart. This relates to bug 2537.Michele Calgaro2019-06-135-12/+96
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Add CMakeL10n rules.Slávek Banko2018-12-092-0/+39
| | | | | | Update TIMEZONES list. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
* qt -> tqt conversion:Michele Calgaro2018-09-271-2/+2
| | | | | | | | | | | 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>
* LIB_QT -> LIB_TQT conversion to align to updated admin moduleMichele Calgaro2018-09-171-2/+2
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Removed unrequired comments.Michele Calgaro2018-06-202-16/+0
| | | | Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Fix invalid headers in PNG files and optimize for sizeTimothy Pearson2016-07-2321-0/+0
|
* Konsole : added support for mouse wheel events in the alternate screen. This ↵Michele Calgaro2016-03-143-1/+26
| | | | | | | | allows scrolling within vim, less and similar applications. This resolves bug 2597. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
* Update About dialogs of Konqueror and Konsole for releaseTimothy Pearson2014-12-061-3/+4
|
* Bring most mimetypes in line with XDG specifications. The following are not ↵Timothy Pearson2014-10-222-3/+3
| | | | fully verified in source as of this commit due to ubiquity: html, empty, info, make, man, misc, source, unknown
* Fix remaining missing semicolons at end of Keywords stringsTimothy Pearson2014-10-191-64/+64
|
* Revert "Fix remaining missing semicolons at end of Keywords strings"Timothy Pearson2014-10-191-64/+64
| | | | This reverts commit fd2369a8f0b40ef35586b3407750ec4662d1be7e.
* Fix remaining missing semicolons at end of Keywords stringsTimothy Pearson2014-10-191-64/+64
|
* Fix missing semicolons at end of Keywords stringsTimothy Pearson2014-10-181-1/+1
|
* Bring centrejust, leftjust, rightjust, text_left, text_right, text_bold, ↵Timothy Pearson2014-10-141-1/+1
| | | | text_italic, text_under, text_strike, and spellcheck icons into XDG compliance
* Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, ↵Timothy Pearson2014-10-132-6/+6
| | | | player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance
* Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, ↵Timothy Pearson2014-10-132-13/+13
| | | | fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
* Bring undo, redo, find, and revert icons into XDG complianceTimothy Pearson2014-10-131-1/+1
|
* Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdebaseTimothy Pearson2014-10-121-1/+1
|\