summaryrefslogtreecommitdiff
path: root/src/plugins/coreplugin/editormanager/editorview.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Long live the king!hjk2010-03-051-1/+1
|
* * Use prev/next icons from coreplugin resourceNadeem Hasan2010-02-231-9/+11
| | | | | | | | | * Disable close button when there is no editor active * Hide lock button when there is no editor active * Hide the info bar when the editor is closed and no editors are left Merge-request: 114 Reviewed-by: mae <qt-info@nokia.com>
* Removed static QIcon instances.Friedemann Kleint2010-02-101-5/+2
| | | | | | | thus fixing the exit warning: "~QX11PixmapData(): QPixmap objects must be destroyed..." Acked-by: con
* Removed two no longer used variablesThorbjørn Lindeijer2010-02-011-2/+0
|
* Make method naming more consistent.Tobias Hunger2010-01-071-21/+21
| | | | | | | | | | | | * Use id() for methods returning a string used to represent some type of object. * Use displayName() for strings that are meant to be user visible. * Quieten some warnings while touching the files anyway. * Move Factories to their products in the plugins where that was not done before. Reviewed-by: dt
* suppress useless warningmae2009-12-011-2/+2
|
* Fix combobox tooltip and lock-button visibility for empty editor viewsmae2009-11-101-0/+8
| | | | Reviewed-by: con
* Fix tr()/compiler warningsFriedemann Kleint2009-10-281-1/+1
|
* Rename namespace Core::Utils into UtilsFriedemann Kleint2009-10-051-1/+1
| | | | | Also move Designer::Internal::FormWindowEditor -> Designer::FormWindowEditor.
* Purge out include files in exported headersFriedemann Kleint2009-10-011-0/+1
|
* Fixed painting glitch visible on WindowsThorbjørn Lindeijer2009-09-021-3/+6
| | | | | | | | | Creator would get darker and darker when dragging or clicking the mouse. Don't paint the editor indicator when there is no view or the view has editors. Reviewed-by: mae Reviewed-by: Daniel Molkentin
* Fixed crash in combination with splits (some spuriousmae2009-09-011-5/+6
| | | | focus in events resulted in currentEditorView() being 0)
* long live the kinghjk2009-08-141-1/+1
|
* fix alt-tab navigation in the original splitmae2009-08-051-0/+2
|
* Back to the bottom.con2009-07-211-3/+2
|
* Making the find tool bar be more connected to the searched text.con2009-07-211-0/+4
|
* small code cleanupmae2009-07-201-1/+1
|
* visible next/previous navigation buttons for the editor view.mae2009-07-201-0/+47
| | | | | This commit makes the uglyness of our current default arrow icons visible. The toolbuttons are also too wide.
* Fixes: When copying a path to the clipboard, use the native separatorsAndy Shaw2009-07-201-1/+1
| | | | RevBy: dt
* make ctrl-tab navigation view specificmae2009-07-201-22/+55
|
* imlemented per-view edit location navigationmae2009-07-201-13/+128
|
* Unify tool button appearance in "panelWidgets".con2009-07-171-2/+0
| | | | Reviewed-by: Jens Bache-Wiig
* Less QToolBars in editor tool bar.con2009-07-161-23/+12
|
* Make split view configuration persistent in a sessionmae2009-07-081-2/+67
| | | | Task: 254011
* Fix non matching connect, disconnect in editorviewKai Koehne2009-07-031-1/+1
|
* Renamed Core::Internal::EditorModel to Core::OpenEditorsModelKai Koehne2009-07-031-255/+3
| | | | | | | also moved into own header/cpp file. The renaming + export allow us to reuse the model in the bauhaus plugin. Reviewed-by: thorbjorn
* Add a copy full path to clipboard to open edtiors comboboxdt2009-06-181-1/+17
| | | | | | | | As requested on irc, and another common IDE has it at the same place. I wonder whether we should have more options in that context menu. I mainly put this in, because we don't have a good way to copy that full path and I don't see a particular nice way to add it. Though I dislike that it is only available in the context menu.
* Update license headers and sales contact details.Jason McDonald2009-06-171-2/+2
| | | | Reviewed-by: Trust Me
* Make the editormanager robuster in handling editors wihtout filenamesdt2009-06-101-13/+4
| | | | | Show all files without names in the open documents list/combobox. Discussed with mae.
* more editor manager cleanupmae2009-06-091-43/+6
|
* go back to emacs-like splitting behaviour after popular requestsmae2009-06-091-8/+5
|
* small improvement to the split view: indicate in the editor viewmae2009-05-081-6/+53
| | | | combobox which documents are inside this view.
* Add "Close all except 'foo.bar'" action.con2009-05-041-0/+11
|
* experiment with splitted views based on karsten's input.mae2009-04-301-3/+27
| | | | | | | | | | | The goal is to support both the emacs usecase and the usecase with fixed views for certain sets of files. The changes gives the user more control where the files are. Effectively it should be easy now to put your cpp files in the left pane, and the header files in the right pane, and use F4 to toggle between them. Also make the 'x' in the toolbar close the document, and not the view.
* Don't crash when unsplitting more complicated editor splits.con2009-04-081-4/+20
| | | | | Whenever we want to re-use widgets from the former child SplitterOrView, we must make sure that this doesn't delete it later on.
* Make sure the frame at the bottom is hidden by defaultThorbjørn Lindeijer2009-04-071-1/+1
| | | | | Showed up as a double horizontal line at the bottom that only disappeared after entering and exiting the FakeVim mode.
* emacs functionality, but more creator-style namesmae2009-04-031-1/+0
|
* Make emacs-like splitting more emacs like. Introduction of Ctrl+E,1 formae2009-04-031-14/+27
| | | | delete-other-windows
* sort open editors based on displayName() not full file pathmae2009-04-021-1/+2
|
* fakevim: minibuffer cosmeticshjk2009-03-301-3/+10
| | | | Insert a separator line, remove the tooltip-style background.
* small tweaks to the open editors view, and an attempt to implement a down ↵mae2009-03-261-1/+1
| | | | | | | state for the close button. Why isn't pressedIndex in QAbstractItemView accessible, or at least a state flag in the delegate to indicate that this item is pressed down?
* Merge branch 'master' of git@scm.dev.nokia.troll.no:creator/mainlinehjk2009-03-261-2/+15
|\
| * Add close-document functionality to the "Open Documents" view. The close ↵mae2009-03-261-2/+15
| | | | | | | | | | | | button is enabled with mouse-over. The change makes the list behave more like tabs.
* | fakevim: fix quitting using the status barhjk2009-03-261-12/+4
|/
* track modification changes for restored editors (in the open editors model)mae2009-03-231-2/+1
|
* make "close all" work with fake-restored editorsmae2009-03-101-0/+11
|
* when closing a document, auto-load "restored" editors if requiredmae2009-03-091-0/+8
|
* fake session restored editors in the open documents widget and the tab history.mae2009-03-061-27/+101
| | | | | This makes restoring sessions faster, but switching to restored documents for the first time a bit slower.
* --warningsThorbjørn Lindeijer2009-03-051-2/+2
| | | | Small bugfix for column to jump to.
* Fixes: fakevim/editorview: move the 'minibuffer' to the bottom of thehjk2009-03-051-7/+58
| | | | editor