- 08 May, 2007 2 commits
-
-
Stephan Binner authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=662510
-
Laurent Montel authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=662463
-
- 07 May, 2007 4 commits
-
-
Robert Knight authored
Revert back to the hardcoded xfree4.0.0 keyboard layout by default until I put this in its own keytab file where it belongs. Keep dirk happy :) svn path=/trunk/KDE/kdebase/apps/konsole/; revision=662334
-
Robert Knight authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=662230
-
Robert Knight authored
Rearrange the developer documentation folder. Add some notes on compliance with the KDE 4 HIG / dialog design ( basically a TODO of problems to fix ). Small tweaks to the Edit Profile dialog. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=662161
-
Robert Knight authored
Use a more correct method to determine the foreground process in the terminal. Works properly with nested shells. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661946
-
- 06 May, 2007 15 commits
-
-
Robert Knight authored
Remove the 'Merge Windows' menu item for now as it is non-functional. I will need to implement it properly later. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661892
-
Thomas Reitelbach authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661812
-
Robert Knight authored
Methods to set and get the settings used when clicking on the 'Defaults' button in the History Options dialog. Eventually this should mean using the current profile's history settings. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661704
-
Robert Knight authored
Put the space between the tab bar and the main window in the view container (ie. the tab container) rather than the main window - so that it disappears when the tab bar is hidden. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661690
-
Laurent Montel authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661686
-
Laurent Montel authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661676
-
Stephan Binner authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661619
-
Stephan Binner authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661616
-
Script Kiddy authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661611
-
Robert Knight authored
When a session closes, switch to the previous view before deleting the session's displays. This (in most cases) prevents the 'flash' which occurs as one view disappears but before Konsole has switched to the next view. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661608
-
Robert Knight authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661607
-
Robert Knight authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=661602
-
Robert Knight authored
Set session title to profile name when created. Rename tab dialog changes the tab title format rather than the session's title itself. svn path=/branches/work/konsole-split-view/; revision=661587
-
Robert Knight authored
Fix unpreview on exit. Attempt #2. Remove properties from the 'to unpreview' list when saving changes. svn path=/branches/work/konsole-split-view/; revision=661585
-
Robert Knight authored
Update color scheme and key bindings list correctly after creating a new scheme/list. Save new schemes / bindings lists under a different name from the one used as a template. Get/set the description in the key binding editor. svn path=/branches/work/konsole-split-view/; revision=661569
-
- 05 May, 2007 1 commit
-
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=661562
-
- 08 Sep, 2001 2 commits
-
-
Waldo Bastian authored
svn path=/trunk/kdebase/konsole/; revision=113743
-
nobody authored
a server-side copy/move. svn path=/trunk/kdebase/konsole/; revision=113740
-
- 06 Sep, 2001 1 commit
-
-
Adrian Schroeter authored
when resizing in opaque mode. svn path=/trunk/kdebase/konsole/; revision=113525
-
- 04 Sep, 2001 2 commits
-
-
Waldo Bastian authored
svn path=/trunk/kdebase/konsole/; revision=113345
-
Stephan Binner authored
svn path=/trunk/kdebase/konsole/; revision=113276
-
- 02 Sep, 2001 1 commit
-
-
Malte Starostik authored
konsole anymore. I'm not too confident of this hack, but it seems to work for now. Please have a close look: @@ -784,6 +784,12 @@ void TEmuVt102::onKeyPress( QKeyEvent* e { if (ev->state() & AltButton) sendString("\033"); // ESC, this is the ALT prefix QCString s = codec->fromUnicode(ev->text()); // encode for application + // FIXME: In Qt 2, QKeyEvent::text() would return "\003" for Ctrl-C etc. + // while in Qt 3 it returns the actual key ("c" or "C") which caused + // the ControlButton to be ignored. This hack seems to work for + // latin1 locales at least. Please anyone find a clean solution (malte) + if (ev->state() & ControlButton) + s.fill(ev->ascii(), 1); emit sndBlock(s.data(),s.length()); // we may well have s.length() > 1 return; } svn path=/trunk/kdebase/konsole/; revision=112966
-
- 29 Aug, 2001 2 commits
-
-
Waldo Bastian authored
svn path=/trunk/kdebase/konsole/; revision=112488
-
Waldo Bastian authored
svn path=/trunk/kdebase/konsole/; revision=112482
-
- 27 Aug, 2001 1 commit
-
-
Stephan Binner authored
svn path=/trunk/kdebase/konsole/; revision=112140
-
- 26 Aug, 2001 4 commits
-
-
Waldo Bastian authored
"\E[F" for End. Correct is IMHO "\E[1~" for Home and "\E[4~" for End." *) With the above fix, konsole doesn't work very well, because it still sets "TERM" to xterm. So I added support for specifying the terminal emulation in the "session type" -> "Linux Konsole" now sets TERM to "linux". *) The "session type" can now also specify a key tabel -> "Linux Konsole" now specifies (*surprise*) "linux console". *) The key tabel is bound to the session (not sure if it was already), now the menu reflects correctly the actual active key tabel. *) The default key tabel is only changed when the _user_ selects another tabel from the menu, merily selecting a new "Linux Konsole" as new session, does not change the default key tabel. The default key tabel is used when a new "Shell" is chosen for a new session (or the "New" button in the session toolbar is selected) *) the "TERM" setting as set by konsole and the actual key tabel in use is saved and restored during session managment. (BR18341) svn path=/trunk/kdebase/konsole/; revision=111994
-
Stephan Binner authored
svn path=/trunk/kdebase/konsole/; revision=111983
-
Stephan Binner authored
Implemented keyboard shortcut (Default: Ctrl-Alt-m) to activate the menubar (#20935). There is a little unsolved problem when it is called when the menubar was hidden and selection is aborted with ESC (see FIXME comment in konsole.C). svn path=/trunk/kdebase/konsole/; revision=111939
-
Simon Hausmann authored
filter: +#else + // in Qt2 when key events were propagated up the tree + // (unhandled? -> parent widget) they passed the event filter only once at + // the beginning. in qt3 this has changed, that is, the event filter is + // called each time the event is sent (see loop in QApplication::notify, + // when internalNotify() is called for KeyPress, whereas internalNotify + // activates also the global event filter) . That's why we stop propagation + // here. + return true; +#endif svn path=/trunk/kdebase/konsole/; revision=111900
-
- 25 Aug, 2001 4 commits
-
-
Stephan Binner authored
I hope it doesn't break anything else but it shouldn't regarding the method name. svn path=/trunk/kdebase/konsole/; revision=111871
-
Waldo Bastian authored
svn path=/trunk/kdebase/konsole/; revision=111725
-
Waldo Bastian authored
+ // our parent-shell gets closed. + signal(SIGHUP, SIG_IGN); svn path=/trunk/kdebase/konsole/; revision=111722
-
Waldo Bastian authored
Preserve --ls with session management. svn path=/trunk/kdebase/konsole/; revision=111713
-
- 24 Aug, 2001 1 commit
-
-
Waldo Bastian authored
Patch by skrll@netbsd.org svn path=/trunk/kdebase/konsole/; revision=111702
-