┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
AgeCommit message (Collapse)Author
2008-11-13* show an error message instead of an information message when an invalid ↵Peter Penz
dragging is done * show an error message if a folder is dropped on to itself svn path=/trunk/KDE/kdebase/apps/; revision=883836
2008-11-08* implement the DragAndDropHelper as singleton derived from QObject, so that ↵Peter Penz
emitting of signals is possible * show an information message in the statusbar, if items are dragged into the same directory TODO: although the signal seems to get connected correctly, the slot DolphinMainWindow::showInformationMessage() is not invoked when the signal is emitted -> will debug this later, it is important that the new string is added before the message freeze svn path=/trunk/KDE/kdebase/apps/; revision=881627
2008-10-25If the context menu is opened above a directory, add the actions "Open in ↵Peter Penz
New Window" and "Open in New Tab" to the context menu. Thanks to Mathias Soeken for the patch! CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=875711
2008-10-25* renamed "[x] Show Full Location" to "[x] Editable Location"Peter Penz
* renamed "Edit Location" to "Replace Location" svn path=/trunk/KDE/kdebase/apps/; revision=875699
2008-10-25SVN_SILENT: minor coding style fixesPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=875696
2008-10-25You can now switch the tabs in dolphin via keyboard shortcuts like in konquerorMathias Soeken
svn path=/trunk/KDE/kdebase/apps/; revision=875689
2008-10-24* Move code from DolphinDropController to DragAndDropHelper.Peter Penz
* Move code which checks whether the dragging of a MIME type is supported to DragAndDropHelper. This allows adding an improved support for dropping compressed files from Ark to Dolphin later... CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=875611
2008-10-15Assure that the docks get informed about an URL change before the GUI is ↵Peter Penz
setup (thanks to Frank Reininghaus for the patch!). This prevents that slots from the docks are called with invalid URLs. BUG: 169103 CCMAIL: [email protected]> svn path=/trunk/KDE/kdebase/apps/; revision=871525
2008-10-07improvement to previous commit: check whether the URL can be listed by ↵Peter Penz
asking the protocol manager (thanks to David Faure for the hint) svn path=/trunk/KDE/kdebase/apps/; revision=869022
2008-10-07If an URL cannot be listed, just let the view and the panels show the last ↵Peter Penz
listable URL. This prevents having an empty view and empty panels when typing a wrong URL. BUG: 170695 svn path=/trunk/KDE/kdebase/apps/; revision=868984
2008-10-07when changing the settings it is necessary to refresh all tabs, not only the ↵Peter Penz
active tab svn path=/trunk/KDE/kdebase/apps/; revision=868952
2008-10-06allow to configure whether the zoom slider and/or the space information ↵Peter Penz
should be shown in the statusbar svn path=/trunk/KDE/kdebase/apps/; revision=868596
2008-10-01* adjusted Dolphin to use KonqOperations::doDrop() instead of using a custom ↵Peter Penz
implementation * used new signals jobRecordingStarted() and jobRecordingFinished from FileUndoManager to inform the user in the statusbar when a recorded command has been finished svn path=/trunk/KDE/kdebase/apps/; revision=866777
2008-09-29Fix connect.David Faure
But the one in dolphinviewcontainer (connecting to the kurlnavigator slot urlsDropped) still fails, since it has no QDropEvent. Not sure what's the plan there. CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=866046
2008-09-28Use KonqOperations::doDrop() instead of a custom dropping code. Still some ↵Peter Penz
minor issues are open (Dolphin currently gets no feedback anymore when the operations have been finished), but they will be solved during the next week. BUG: 168154 svn path=/trunk/KDE/kdebase/apps/; revision=865708
2008-09-23Fixed issue that the "Show Menu Bar" state is not updated correctly ↵Peter Penz
(workaround for bug #171080). Patch has been provided by Laurens Vanhove. svn path=/trunk/KDE/kdebase/apps/; revision=863909
2008-09-04don't use SPACE as shortcut for Quick View, as this conflicts with the ↵Peter Penz
Terminal Panel svn path=/trunk/KDE/kdebase/apps/; revision=857151
2008-08-26Booo... false alarm. After going to the XMLGUI code this is perfect. I also ↵Rafael Fernández López
wonder why call to setAutoSaveSettings when using Save flag, and why createGUI when using Create flag, is what setupGUI internally is doing indeed. So nah, going back and removing those unnecessary calls. Now user preferences on toolbar places and sizes of icons are obeyed. CCMAIL: [email protected] CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=853002
2008-08-26Do not create with Save flag. OMG, this is a very bad problem of XMLGUI... ↵Rafael Fernández López
if you set that flag (which needs to be done before createGUI, it will go to setAutoSaveSettings from KMainWindow, which will apply the personal preferences of toolbars etc... of a NON EXISTANT GUI !. So take out this parameter from here... since we are calling anyway setAutoSaveSettings couple lines after. I wonder if we should encourage people to not use Save flag, or we should fix this into XMLGUI. CCMAIL: [email protected] CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=852998
2008-08-14Fix for show_filter_bar action of tools-menu, which is not correctly set ↵Sascha Peilicke
(when the corresponding option is checked in the startupsettingsview) at application start-up. svn path=/trunk/KDE/kdebase/apps/; revision=846896
2008-08-12Activate the tab when an item is dragged above an inactive tab. Thanks to ↵Peter Penz
Dmitry Khlystov for the patch! BUG: 164312 svn path=/trunk/KDE/kdebase/apps/; revision=846009
2008-08-12Assure that the "Close Tab" action gets disabled when only one tab is open.Peter Penz
BUG: 168904 svn path=/trunk/KDE/kdebase/apps/; revision=845995
2008-07-31We want to change the tab, not just the view.Alex Merry
Fixes the issue: open three tabs. Select the second one and close it. Now right tab is active, but content for left tab is shown. Will backport to 4.1. CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=839877
2008-07-26forgot to remove unused variable in last commitPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=838119
2008-07-26use DBus interface instead of KRun::runCommand()Peter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=838112
2008-07-26Provide a "Quick View" in the Tools menu, which uses the Previewer plasmoid.Peter Penz
TODO 1: use the D-Bus interface directly instead of using KRun::runCommand() as workaround. TODO 2: a new icon would be necessary CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=838039
2008-07-22fixed issue that the close-action for the split view has been applied to the ↵Peter Penz
inactive view instead of the active view BUG: 167209 svn path=/trunk/KDE/kdebase/apps/; revision=836643
2008-07-11Code factorization: move "properties" action and slot to ↵David Faure
DolphinViewActionHandler. svn path=/trunk/KDE/kdebase/apps/; revision=831148
2008-06-30Move the "Find File..." action from DolphinMainWindow to ↵Peter Penz
DolphinViewActionHandler, so that is used in DolphinPart and hence also in Konqueror. Thanks to Bram for the patch! CCMAIL: [email protected] CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=826383
2008-06-29Don't disable the "Properties" action when no file is selected, just use the ↵Peter Penz
current folder as source. TODO: the code in DolphinPart::slotProperties() and DolphinMainWindow::properties() is quite similar -> move to DolphinViewActionHandler? CCMAIL: [email protected] BUG: 165311 svn path=/trunk/KDE/kdebase/apps/; revision=825846
2008-06-29provide Ctrl+T as alternative shortcut to Ctrl+Shift+N for "New Tab" like ↵Peter Penz
Konqueror BUG: 165309 svn path=/trunk/KDE/kdebase/apps/; revision=825833
2008-06-28Don't check for "kompare" each time 2 items are selected (thanks to Andreas ↵Peter Penz
Scherf). As Albert Astals Cid pointed out it might be nicer to use a menu plugin instead of hardcoding "kompare" (> KDE 4.1). CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=825587
2008-06-10Move code for disabling the paste action into DolphinView::pasteInfo() -> ↵Peter Penz
Dolphin KPart now also is aware about the disabled paste action. @David: Konqueror hides the paste action in the context menu now, but still the action in the edit menu stays enabled CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=819116
2008-06-08disable the paste action if no writing is supported for the paste-destinationPeter Penz
BUG: 161639 svn path=/trunk/KDE/kdebase/apps/; revision=818445
2008-06-05When "move_to_trash" is disabled and "delete" is enabled (e.g. non-local files),David Faure
enable a hidden action with Key_Del as shortcut, so that the user can press Del to delete the file. BUG: 76016 svn path=/trunk/KDE/kdebase/apps/; revision=817389
2008-06-02Fix the edit-menu action disabling/enabling bug in dolphinpart finally! ↵George Goldberg
Also, move FileItemCapabilities from dolphin to KonqFileItemCapabilities at dfaure's request (making it implicitly shared along the way). BUGS:161594 svn path=/trunk/KDE/kdebase/apps/; revision=815584
2008-06-01increase the readability of the codePeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=815420
2008-06-01Fix dolphin to only enable the Cut context menu option if the file ↵George Goldberg
capabilites supportsMoving(). CCBUGS: 161594 Still need to fix Send to trash Context Option in Konqueror svn path=/trunk/KDE/kdebase/apps/; revision=815362
2008-05-28Assure that tabs always have a text. If the file name is empty, use the ↵Peter Penz
protocol instead. This fixes the issue that for "trash://" no text is shown in the tab. svn path=/trunk/KDE/kdebase/apps/; revision=813844
2008-05-18Adding icon name "tab-close-other" to replace "tab-close" where the action ↵James Richard Tyrer
is to close other tabs. svn path=/trunk/KDE/kdebase/apps/; revision=809235
2008-05-11A middle click on an item of the tree view panel should open the URL inside ↵Peter Penz
a new tab. TODO: cleanup some obsolete signals/structure inside SidebarPage and TreeviewSidebarPage. svn path=/trunk/KDE/kdebase/apps/; revision=806635
2008-05-11If the middle mouse button is pressed above an item of the places panel, ↵Peter Penz
open the URL inside a new tab. svn path=/trunk/KDE/kdebase/apps/; revision=806606
2008-05-04Move "Adjust view properties" to dolphinviewactionhandler so that it's ↵David Faure
available in dolphinpart (konqueror) too. Bug reported by kde-bug-hunter "lemma". svn path=/trunk/KDE/kdebase/apps/; revision=804037
2008-05-04Assure that after "Split View" has been executed, that the second view gets ↵Peter Penz
the focus instead of the first view. BUG: 161365 svn path=/trunk/KDE/kdebase/apps/; revision=803984
2008-04-30KonqFileUndoManager moved to kdelibs, as KIO::FileUndoManager. Ported the ↵David Faure
code in libkonq+dolphin+konqueror. svn path=/trunk/KDE/kdebase/apps/; revision=802881
2008-04-23let a double-click on the empty tab-area open a new tab (-> consistent with ↵Peter Penz
konsole behavior) svn path=/trunk/KDE/kdebase/apps/; revision=800241
2008-04-20Fix bug with the UndoUiInterface usage: if more than one mainwindow was ↵David Faure
used, the statusbar of the wrong window could be used for displaying error messages from the undo manager. svn path=/trunk/KDE/kdebase/apps/; revision=799250
2008-04-18fixed some stupid bugs I did not see in the previous commit -> after 9 hours ↵Peter Penz
in the office and 3 hours Dolphin it seems I'm too tired :-( svn path=/trunk/KDE/kdebase/apps/; revision=798677
2008-04-18consider the protocol and directory capabilities for file actions like ↵Peter Penz
Rename, Delete and Move To Trash svn path=/trunk/KDE/kdebase/apps/; revision=798674
2008-04-16fix possible crash when selecting "New Tab" from the tab context menu of an ↵Peter Penz
inactive tab svn path=/trunk/KDE/kdebase/apps/; revision=797843