- 04 Jan, 2008 6 commits
-
-
Robert Knight authored
Update the title for a tab by taking a snapshot of the terminal process as soon as it starts. Add a signal to Session which is emitted when the process is successfully started. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=757282
-
Robert Knight authored
Remove classes from the KPart build which are not used by the part. Remove an #ifndef KONSOLE_PART test from the MainWindow class which is not compiled into the part. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=757280
-
Stephan Binner authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=757261
-
Stephan Binner authored
http://developer.kde.org/documentation/standards/kde/style/basics/labels.html svn path=/trunk/KDE/kdebase/apps/konsole/; revision=757238
-
Script Kiddy authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=757112
-
Nuno Filipe Povoa authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=757035
-
- 03 Jan, 2008 11 commits
-
-
Robert Knight authored
Fix bug where '%w' expansion in tab title format was not updated when the shell changed the window title until user input occurred. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756966
-
Robert Knight authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756953
-
Robert Knight authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756949
-
Robert Knight authored
Update profile shortcuts in the menus immediately when they are changed in the 'Manage Profiles' dialog. Previously the changes did not take effect until a new window was created. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756866
-
Robert Knight authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756853
-
Robert Knight authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756842
-
Robert Knight authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756785
-
Robert Knight authored
Remove Ok, Cancel buttons and replace with a single Cancel button in the 'Manage Profiles' dialog - since the changes here take effect immediately. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756709
-
Urs Wolfer authored
find . -name "*.svgz" -exec advdef -z -4 '{}' \; That saves around 6MB in trunk without any restrictions. Also correct the svn mimetype for all svgz files which had a wrong one (which is thy reason why my fist commit failed...) with: svn propset svn:mime-type 'application/octet-stream' svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756680
-
Robert Knight authored
Fix a performance problem with the email address matching filter. The email address regular expression was very general and could match very long pieces of text which were not actually email addresses. Adding word boundary markers improves this significantly. See the python xample code here for a test case: http://bugzilla.gnome.org/show_bug.cgi?id=350015 svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756554
-
Script Kiddy authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756421
-
- 02 Jan, 2008 9 commits
-
-
Robert Knight authored
Optimize updates when changing the search text or scrolling with the search bar active. Compute the area covered by hotspots before and after the filter processing and then update the union of those two regions. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756109
-
Robert Knight authored
Add comments to explain one of the changes in the previous commit. Add a TODO for a warning dialog to add about deleting profiles with children when the string freeze is over. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756105
-
Robert Knight authored
Fix bug where search result highlights in the terminal display did not move when the display was scrolled. When the search bar is active, update the filters and the view whenever it is scrolled or the output otherwise changes. This has a perceptible (but in future fixable) performance impact when scrolling with the search bar active. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756104
-
Robert Knight authored
Prevent profiles inheriting the Path property from their parent. Fixes bug with a new profile being automatically given the same shorctut as its parent since SessionManager::shortcut() does a lookup based on path or key match. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756061
-
Robert Knight authored
Make 'New Profile' button in Manage Profiles dialog create the new profile based on the selected profile if there is a selection or the default profile otherwise. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=756040
-
Robert Knight authored
Fix Cancel button in 'Select Font' dialog having no effect. A side-effect of this commit is that the 'Select Font' dialog becomes modal. Ensure that the font preview label's text stays in sync with its font by listening for FontChange events and setting the text in response. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=755898
-
Robert Knight authored
Fix bug where bold fonts applied to the terminal were drawn as regular fonts. Take the TerminalDisplay widget's font weight and underline state into consideration when deciding whether to render a particular piece of text as bold or underline. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=755882
-
Script Kiddy authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=755848
-
Urs Wolfer authored
Last optimization has been done almost two years ago. There a lot of new files in trunk (e.g all Oxygen stuff). It's not the correct time to do that again (before the release). This run saves again around 10MB of diskspace without any restrictions. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=755647
-
- 01 Jan, 2008 2 commits
-
-
Jakob Petsovits authored
* view-left-right -> view-split-left-right * view-top-bottom -> view-split-top-bottom svn path=/trunk/KDE/kdebase/apps/konsole/; revision=755418
-
Robert Knight authored
Fix some problems with double width characters. A while() loop was re-written in a way which introduced a dependancy on a variable (cuX) without taking into account that it was modified just before entering the loop. Introduce a temporary and move the variable assignment to after the loop. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=755308
-
- 31 Dec, 2007 2 commits
-
-
Robert Knight authored
Fix bug where KPart did not emit setWindowCaption() signal until it gained focus. Call controllerChanged() in ViewManager::createController() so that an activeViewChanged() signal is emitted when the first controller in the view manager is created. Fix ViewManager::controllerChanged() to only emit an activeViewChanged() signal if the new and previous controllers are different. Remove the checks for this from the MainWindow and Part slots connected to this signal. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=755284
-
Script Kiddy authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=755013
-
- 30 Dec, 2007 7 commits
-
-
Robert Knight authored
Sync the state of the 'Show Menu Bar' action with the visibility of the menu bar when it is changed as a result of applying a profile setting. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754736
-
Robert Knight authored
Fix unexpected behaviour when changing 'Show menu bar in new window' property. This property is now only applied once to a Konsole window. Subsequent changes to the setting have no effect until new windows are created. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754731
-
Robert Knight authored
Temporary fix for missing icons when an activity or silence notification occurs. Use 'dialog-information' icon for both for the time being. Remove out-of-date TODO and add TODO to update icons later on and FIXME to change the notification text once the freeze is over. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754697
-
Robert Knight authored
Move application icon setup to Application class constructor. Fix a missed qWarning() -> kWarning() in main.cpp svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754691
-
Pino Toscano authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754657
-
Script Kiddy authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754562
-
Robert Knight authored
Replace qWarning() with kWarning(), which provides additional information about the context of the warnings. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754559
-
- 29 Dec, 2007 3 commits
-
-
Robert Knight authored
* Replace all usage of qDebug() with kDebug(), since kDebug() provides information about which part of the code the message came from and allows filtering of output using kdebugdialog * Remove explicit creation of singleton classes SessionManager,ColorSchemeManager and KeyboardTranslatorManager and automate it with K_GLOBAL_STATIC. This ensures that the singleton destructors are called appropriately by KPart clients when they unload the libkonsolepart library. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754334
-
Robert Knight authored
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754313
-
Jakob Petsovits authored
network -> network-workgroup, or whatever fits best. Plus some other icon name fixes. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754310
-