- 02 May, 2007 6 commits
-
-
Robert Knight authored
Executable and directory completion for Command and Initial Directory options. Show clear buttons in tab title format dialog line edit and initial directory line edit. svn path=/branches/work/konsole-split-view/; revision=660378
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=660367
-
Robert Knight authored
Add sub-menu to change character encoding using KCodecAction. Currently in the View menu next to the menu items to change the text size, although I am not sure if that is the most appropriate place for it. svn path=/branches/work/konsole-split-view/; revision=660233
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=660232
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=660230
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=660228
-
- 01 May, 2007 1 commit
-
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=659904
-
- 30 Apr, 2007 9 commits
-
-
Robert Knight authored
Implement saving, loading and deleting of profiles in the Konsole (KDE 4) .profile format. Only the basic options are saved and loaded at present. svn path=/branches/work/konsole-split-view/; revision=659852
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=659744
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=659735
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=659647
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=659615
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=659595
-
Robert Knight authored
Beginning of code to listen for changes made to profiles and apply them to existing sessions and views. svn path=/branches/work/konsole-split-view/; revision=659579
-
Robert Knight authored
Fall back to value of SHELL environment variable if no command or arguments are specified for a process. Continue work on Profile class.w svn path=/branches/work/konsole-split-view/; revision=659346
-
Robert Knight authored
More Session -> Profile renaming. Make default profile bold in 'Manage Profiles' dialog. Show KDE directory selection dialog when clicking on initial directory edit button in profile edit dialog. svn path=/branches/work/konsole-split-view/; revision=659341
-
- 29 Apr, 2007 1 commit
-
-
Robert Knight authored
Changed the naming scheme used in Konsole. Several survey respondants said that they didn't understand what a 'Session' was or how it was different from a 'Profile'. Under the new scheme, a 'Profile' is a saved set of terminal options which can be used to create a new tab, or which can be applied to an existing tab. Internally, a 'Session' is a running terminal process and emulation created from a particular profile. svn path=/branches/work/konsole-split-view/; revision=659297
-
- 28 Apr, 2007 7 commits
-
-
Robert Knight authored
Private member field naming consistancy. Replace various #includes with forward class declarations. svn path=/branches/work/konsole-split-view/; revision=658805
-
Robert Knight authored
API cleanup in Session class. Remove un-needed methods and duplicates. Avoid need to call setListenToKeyPress on new Session instances before they can receive input. svn path=/branches/work/konsole-split-view/; revision=658772
-
Robert Knight authored
Disable Find Next/Previous when search bar is not active. Use QPointer<T*> for SessionController members which it does not own. ++Q_ASSERT. svn path=/branches/work/konsole-split-view/; revision=658746
-
Robert Knight authored
Abort filter processing if the filter regexp matches the empty string. Fixes filter getting stuck in infinite loop. Use a static const QRegExp for the URL filter regexp since it never changes. svn path=/branches/work/konsole-split-view/; revision=658740
-
Robert Knight authored
Add an imaginary new-line character at the end of each line given to the filter to process. This prevents a link at the end of one line being treated as part of a link at the end of the next line and fixes problems with links at the end of the output. Downside is that links spread over more than one line are missed. svn path=/branches/work/konsole-split-view/; revision=658657
-
Robert Knight authored
Use a shared buffer between all filters in a chain. Should improve efficiency by reducing memory allocations. More to the point it prevents accidental deep copying of strings which can happen if not careful with QStrings. Most of the processing time is taken up by the regular expression parsing itself. svn path=/branches/work/konsole-split-view/; revision=658652
-
Robert Knight authored
Implement popup menu when right-clicking on URLs. Display appropriate actions for normal URLs and email addresses. Accept '@' character in URLs - for use when a URL includes a username. eg. ssh://user@host svn path=/branches/work/konsole-split-view/; revision=658642
-
- 27 Apr, 2007 8 commits
-
-
Robert Knight authored
Avoid trying to remove a widget from a view container twice. Use deleteLater() as a safer way to delete certain widgets. svn path=/branches/work/konsole-split-view/; revision=658433
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=658419
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=658418
-
Robert Knight authored
Fix crash when detaching the view. Calling delete on a QWidget is not safe when lots of signals involving it are flying around. svn path=/branches/work/konsole-split-view/; revision=658414
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=658411
-
Robert Knight authored
Make URL highlighting work again. Watch for mouse events on the view and process URL filters as necessary. Adapt filters to recognise email addresses as well. svn path=/branches/work/konsole-split-view/; revision=658409
-
Robert Knight authored
Live tab titles. These update dynamically to include the current working directory, process name etc. The format is currently hardcoded, will be a customisable setting soon. svn path=/branches/work/konsole-split-view/; revision=658406
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=658405
-
- 24 Apr, 2007 5 commits
-
-
Robert Knight authored
Clear selection if no search result found. Emit appropriate signals when switching tabs in the new tabbed view container class. svn path=/branches/work/konsole-split-view/; revision=657457
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=657455
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=657453
-
Robert Knight authored
Make history search work again. Add a delay after changing the search box text before performing the search, makes the operation feel slicker. Move searching code from Emulation to SessionController class. svn path=/branches/work/konsole-split-view/; revision=657444
-
Robert Knight authored
svn path=/branches/work/konsole-split-view/; revision=657423
-
- 23 Apr, 2007 1 commit
-
-
Robert Knight authored
Focus newly opened views. Enable/disable 'Close Active/Other Views' menu items as appropriate. Rename 'Edit Current Session...' to 'Terminal Options...' svn path=/branches/work/konsole-split-view/; revision=657385
-
- 22 Apr, 2007 1 commit
-
-
Robert Knight authored
Use a guarded pointer to reference active controller in main window - fixes crash in case there is no active view/session. Make the view manager responsible for setting up the destruction of the controller instead of the controller itself. svn path=/branches/work/konsole-split-view/; revision=657026
-
- 21 Apr, 2007 1 commit
-
-
Robert Knight authored
Hash table to store unicode character sequences with hash keys the same size as a unicode character point. This can be used in future to get around the limitation in Konsole of one unicode point per character space on screen. svn path=/branches/work/konsole-split-view/; revision=656590
-