┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
AgeCommit message (Collapse)Author
2008-03-12remove unused signalPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=784855
2008-03-12menu actions have not been updated correctly when changing between the split ↵Peter Penz
views (regression from KDE 4.0.1 to KDE 4.0.2) BUG: 158317 svn path=/trunk/KDE/kdebase/apps/; revision=784853
2008-03-10Don't try to show the terminal in dolphin when in WindowsJeff Mitchell
svn path=/trunk/KDE/kdebase/apps/; revision=784126
2008-02-23minor cleanup: no need to create a slot which just invokes another method, ↵Peter Penz
just use the other method as slot svn path=/trunk/KDE/kdebase/apps/; revision=778423
2008-02-16let F6 also select the whole text of the URL navigator to stay consistent ↵Peter Penz
with Konqueror and Firefox BUG: 157589 svn path=/trunk/KDE/kdebase/apps/; revision=775977
2008-02-15Initially I thought it's better not having code as default value inside ↵Peter Penz
dolphin_generalsettings.kcfg. But the check for an empty home URL in DolphinMainWindow::init() must also be done when invoking GeneralSettings::setDefaults() in StartupSettingsPage, otherwise the home URL would get empty... Using QDir::homePath() as default-value inside the *.kcfg file prevents such issues. CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=775494
2008-02-14minor code cleanupPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=775094
2008-02-14~ is no useful home folder in a Windows environment (thanks to Michael ↵Peter Penz
O'Shea for the patch!) BUG: 156463 CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=775056
2008-02-13Provide the "sort by" actions in dolphinpart (konqueror); share and simplify ↵David Faure
the code by connecting to the actiongroup's signal. svn path=/trunk/KDE/kdebase/apps/; revision=774699
2008-02-13Provide the dolphinpart view modes (Icons, Details, Columns) in konqueror's ↵David Faure
View Modes menu. (this is done using a Q_PROPERTY in the dolphin part and a signal; the available view modes for creating the menu in the first place are listed in dolphinpart.desktop) Konqueror: cleaned up the old (complex) handling of view modes as N toolbar buttons from M services grouped by library (240 lines less!). Dolphin: moved view mode handling to DolphinViewActionHandler, removes duplication between part and mainwindow. svn path=/trunk/KDE/kdebase/apps/; revision=774646
2008-02-11Forwardport 773570:David Faure
Factorize all the view-related action handling to DolphinViewActionHandler, to remove code duplication between mainwindow and part, and to remove my code-splitting with the static createFooAction methods in the view. svn path=/trunk/KDE/kdebase/apps/; revision=773572
2008-02-11Factorize all the view-related action handling to DolphinViewActionHandler, ↵David Faure
to remove code duplication between mainwindow and part, and to remove my code-splitting with the static createFooAction methods in the view. svn path=/branches/KDE/4.0/kdebase/apps/; revision=773570
2008-02-07Fixed issue that the "Show Full Location" action is not synchronized with ↵Peter Penz
the editable state of the URL navigator (thanks to David Benjamin for the patch). BUG: 156891 svn path=/trunk/KDE/kdebase/apps/; revision=771918
2008-01-30allow dropping items above a place inside the Places panelPeter Penz
BUG: 154014 svn path=/trunk/KDE/kdebase/apps/; revision=768921
2008-01-28keep in sync with 4.0 branch (767566)David Faure
svn path=/trunk/KDE/kdebase/apps/; revision=767567
2008-01-28Centralize three more actions so that they are available in DolphinPart: ↵David Faure
'Show preview' 'Show hidden files' 'Categorized sorting' Found a way of sharing the actions with even less code duplication, discussed it with Peter, but this will be for after 4.0.1 svn path=/branches/KDE/4.0/kdebase/apps/; revision=767566
2008-01-27- Fix some compiler warnings.Bill Egert
- Switched depricated stdName() to name() svn path=/trunk/KDE/kdebase/apps/; revision=767204
2008-01-22svn merge -r764536:HEAD from 4.0 branch: refactor "additional info" actions ↵David Faure
and provide them in the part svn path=/trunk/KDE/kdebase/apps/; revision=764550
2008-01-22Move the code handling the additional-info-actions to DolphinView; simplify ↵David Faure
signal from DolphinView (it has the info anyway). The fact that the last additional-info doesn't show up in the icon view is in fact a KFileItemDelegate bug, not a bug in this code :) svn path=/branches/KDE/4.0/kdebase/apps/; revision=764544
2008-01-22Use a QActionGroup and save 6 slots (and the duplication of the action names ↵David Faure
in the code). svn path=/branches/KDE/4.0/kdebase/apps/; revision=764537
2008-01-21Make sort/descending available in dolphinpartDavid Faure
svn path=/trunk/KDE/kdebase/apps/; revision=764445
2008-01-21Make sort/descending available in dolphinpartDavid Faure
svn path=/branches/KDE/4.0/kdebase/apps/; revision=764444
2008-01-21forwardport 764429:David Faure
Revert the moving of the action to the DolphinView instance, this doesn't work with splitted views. (Each view would need its own action collection, but then DolphinView would have to become a KXMLGUIClient, and the GUI would flicker when switching views). Instead, use the same solution as the other shared actions: static method in DolphinView (for now), slot in the mainwindow (and for the more complex actions than this one, shared code in DolphinView) svn path=/trunk/KDE/kdebase/apps/; revision=764436
2008-01-21Revert the moving of the action to the DolphinView instance, this doesn't ↵David Faure
work with splitted views. (Each view would need its own action collection, but then DolphinView would have to become a KXMLGUIClient, and the GUI would flicker when switching views). Instead, use the same solution as the other shared actions: static method in DolphinView (for now), slot in the mainwindow (and for the more complex actions than this one, shared code in DolphinView) svn path=/branches/KDE/4.0/kdebase/apps/; revision=764429
2008-01-21Cleanup: let the DolphinView be aware about the used action collection. This ↵Peter Penz
will allow us cleaning up some code in DolphinMainWindow and will make it easier sharing code with DolphinPart. CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=764347
2008-01-19stay consistent with Konqueror: F10 creates a new directoryPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=763500
2008-01-10use F3 for "Split View" instead of F10, as F10 is used for "new directory" ↵Peter Penz
since KDE 3... (thanks to Aaron for the hint) svn path=/trunk/KDE/kdebase/apps/; revision=759633
2008-01-10Backport: use F3 for "Split View" instead of F10Peter Penz
svn path=/branches/KDE/4.0/kdebase/apps/; revision=759573
2008-01-07Backport of bugfix 154434 (trunk revision 757791): Remember the ↵Peter Penz
additional-info property (size, date, type, ...) for each view mode (icons view, details view, column view) individually. svn path=/branches/KDE/4.0/kdebase/apps/; revision=758210
2008-01-05Remember the additional-info property (size, date, type, ...) for each view ↵Peter Penz
mode (icons view, details view, column view) individually. BUG: 154434 CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=757791
2008-01-01Icon renaming (code changes - KDE/):Jakob Petsovits
consolidate the fileview-* icons to view-* svn path=/trunk/KDE/kdebase/apps/; revision=755384
2007-12-19Now the konsole part is autodestructed when no tabs do exist. This makes the ↵Rafael Fernández López
desired effect on dolphin when typing "exit" on the terminal, the dock will be hidden. BUG: 153648 svn path=/trunk/KDE/kdebase/apps/; revision=750276
2007-12-18Disable the action that launches kompare if kompare is not installed.David Faure
svn path=/trunk/KDE/kdebase/apps/; revision=750038
2007-12-16If the URL navigator is editable and has the focus, Ctrl+A should select the ↵Peter Penz
URL and not all items (thanks to Morton O. Hansen for the patch!) BUG: 153697 svn path=/trunk/KDE/kdebase/apps/; revision=749188
2007-12-14Moving code around in dolphin fixes DnD support in konqueror :)David Faure
svn path=/trunk/KDE/kdebase/apps/; revision=748476
2007-12-04Allow turning off the feature that additional information might be shown in ↵Peter Penz
the icons view. Per default the setting is still on, but for people who prefer browsing with the details view and only temporary switch to the icons view (e. g. for having a larger preview), this feature gets a showstopper (discussed with Eike Hein). Got the OK from the translator team for adding the new string. CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=744901
2007-12-01Make file properties dialog box non-modalJohn Tapsell
svn path=/trunk/KDE/kdebase/apps/; revision=743617
2007-11-30Hide the "Sort by Rating" and "Sort by Tags" menu entries for KDE 4.0, as ↵Peter Penz
currently the performance is too slow. Nepomuk will support caching in future versions, so hopefully we can provide those entries again in KDE 4.1. svn path=/trunk/KDE/kdebase/apps/; revision=743363
2007-11-30enable session managementPeter Penz
CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=743357
2007-11-25there's no need having 2-liners inside their own method when this method is ↵Peter Penz
only invoked once... svn path=/trunk/KDE/kdebase/apps/; revision=741371
2007-11-18allow to show/hide the menubarPeter Penz
BUG: 152463 svn path=/trunk/KDE/kdebase/apps/; revision=738282
2007-11-18Check whether the shift key is pressed when the "Move to Trash" action is ↵Peter Penz
executed. If this is the case, perform the "Delete" action instead (-> works like in Konqi now, thanks to David for the hint) CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=738259
2007-11-17Fix "delete" and "move to trash" actions in dolphinpart; moved all logic for ↵David Faure
those out of konqueror. Inside dolphin, the usual: moving code to DolphinView. Pressing shift while clicking on "Move to Trash" in konq (dolphinpart) offers to delete, as in kde3 (this bit of logic might be good for dolphin itself too? see DolphinPart::slotTrashActivated) CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=737682
2007-11-15Implement cut/copy/paste in dolphinpart.David Faure
Had to move more code to DolphinView, to use it from the part. svn path=/trunk/KDE/kdebase/apps/; revision=737203
2007-11-15Implement renaming in dolphinpart.David Faure
No more rename action provided by konqueror, the part provides it now. Had to move a bit of code around in dolphin, as discussed with Peter. svn path=/trunk/KDE/kdebase/apps/; revision=737121
2007-11-15KonqUndoManager -> KonqFileUndoManager, to prepare for a KonqUndoManager in ↵David Faure
konqueror, Taking this opportunity for filename==classname and a .cpp extension, as well. svn path=/trunk/KDE/kdebase/apps/; revision=737032
2007-11-04Replace file-find icon by edit-findFathi Boudra
svn path=/trunk/KDE/kdebase/apps/; revision=732843
2007-11-04KrushDays-fix: fixed issue that F6 does not apply the focus to the URL ↵Peter Penz
navigator when the navigator is already in the editable mode svn path=/trunk/KDE/kdebase/apps/; revision=732773
2007-11-02Fix the conflict between cut and delete shortcutsAndreas Pakulat
BUG:151601 svn path=/trunk/KDE/kdebase/apps/; revision=732119
2007-10-29Results of setShortcut() auditing (QAction::setShortcut() gets called ↵Hamish Rodda
without this patch) svn path=/trunk/KDE/kdebase/apps/; revision=730698