┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
AgeCommit message (Collapse)Author
2011-06-13Add missing actions to report bug + switch language to Help menu in dolphin ↵Burkhard Lück
whithout menubar Using Dolphin in default mode in master/4.7 whithout menubar the user has no actions to report a bug or switch language. Add these missing actions the Help menu launched from the toolbar button Configure and control Dolphin. REVIEW: 101597
2011-06-10Fix position of toolbar-menuPeter Penz
CCBUG: 274495
2011-06-01Fix problems with commit 8d789f2626243dSebastian Dörner
- fix crash when Ctrl-D-ing in the terminal - don't respond to window manager actions, only when the dock itself is hidden Refers to commit 8d789f2626243ddc6c763c84e582e8e20afe7689
2011-05-30Fix position of Dolphin menu with multiple-screens setupPeter Penz
BUG: 274495 FIXED-IN: 4.7.0
2011-05-28Fix build failure if Nepomuk is not available.Frank Reininghaus
Thanks to Krzysztof Nowicki for the patch! BUG: 274297
2011-05-25Don't let hidden terminals prevent unmountingSebastian Dörner
Previous state: When the terminal is hidden, the cwd is not updated anymore. If it was on a removable device when hiding, the hidden terminal might prevent unmounting this device. This patch fixes that bug by changing the cwd to "/" when hiding the panel. REVIEW: 101387 BUG: 158264 FIXED-IN: 4.7.0
2011-04-20Fix enabled/disabled issue of Search PanelPeter Penz
2011-04-20Improve usability of Search PanelPeter Penz
If the Search Panel is shown outside the context of the "Find" mode it will be always enabled and does a global search. Only if the user is in the "Find" mode and the searching is restricted to the current directory the Search Panel might get disabled if the current directory is not indexed. This solves the major usability issue that it was not clear for the users whether a global or restricted search is done.
2011-04-15Assure that the startup-settings are applied immediatelyPeter Penz
2011-04-12Let each DolphinMainWindow run in a custom processPeter Penz
A possible crash in one Dolphin window should not result in crashing other Dolphin windows. Beside this it also prevents issues with modal dialogs or notifications. BUG: 269950 BUG: 206053 BUG: 196034 FIXED-IN: 4.7.0
2011-04-08Optimize alignment of toolbar menuPeter Penz
Try to align the toolbar menu within the Dolphin window to reduce the cases where the sub-menus overlap with the right screen border.
2011-04-06Add missing i18n callFrederik Schwarzer
2011-03-29Readd the "go home" actionPeter Penz
It got accidently lost during the menu-button changes. Also the clearStatusBar() calls have been removed as this is handled in the DolphinViewContainer internally since a long time already.
2011-03-27Update the size of the menu toolbar-itemPeter Penz
If the icon size of the toolbar has been changed, the manually added menu toolbar-item must be updated.
2011-03-27Minor optimizations for the menu toolbar-itemPeter Penz
2011-03-27Don't use a submenu for the settingsPeter Penz
If the toolbar-menu is used just put the settings-related entries directly to the root instead of collecting them in a sub-menu.
2011-03-26Provide toolbar-menu when the menubar is hiddenPeter Penz
Use a similar default UI like in Rekonq and other browsers: Hide the menubar and add access to all actions by a button in the toolbar. Of course it is still possible to show the menubar so that the same UI is given like before.
2011-03-26Show places selector of URL navigator only when requiredPeter Penz
The places selector of the URL navigator only needs to get shown if the Places panel is invisible.
2011-03-10Add search modes for the Search PanelPeter Penz
The search panel must get a hint whether clicking on the facets should result in searching everywhere or from the current folder. It is not sufficient to check the search-settings of the "Find:"-box, as when the "Find:"-box is invisible there is no hint for the user what kind of searching is done and the setting must be ignored.
2011-03-09Rename the "Filter Panel" to "Search Panel"Peter Penz
Bug reports indicate that users are confused by the term "filter" for this.
2011-03-08Prevent unnecessary reloading of KDirLister on startupPeter Penz
When Dolphin is started with a directory as argument unnecessary reload operations of KDirListers are done. The patch improves this by just letting the DolphinView internally do a loading as soon as it gets visible (and without reloading). Also in case if only one directory is passed as argument the current tab gets reused instead of creating new tabs and removing the current tab. Thanks a lot to David Faure for pointing out this unefficient handling.
2011-02-27Consistently use binary operators to connect QFlagsSebastian Dörner
2011-02-09Fix regression that creating a sub-folder is not possiblePeter Penz
CCBUG: 265714
2011-02-09Coding style update for pointer comparisonPeter Penz
Most developers seem to prefer if (ptr) ... if (!ptr) ... in comparison to if (ptr != 0) ... if (ptr == 0) ... Adjusted the Dolphin-code to use the "most-prefered style" to make contributors happy.
2011-02-09Use capitalized includes of recently committed kdelibs headersPeter Penz
2011-02-04Update e-mail address from [email protected] to [email protected]Peter Penz
2011-02-04Use capitalized KDE includesPeter Penz
2011-02-02Fix visibility- and enabled-issues for the filter-panelPeter Penz
The filter-panel should be disabled if the current folder is not indexed at all. Also when triggering a "Find" the filter-panel should stay invisible per default when the current folder is not indexed. CCBUG: 264969
2011-01-27Fix crash when detaching a tab with "Split View Mode" setting enabledSebastian Doerner
svn path=/trunk/KDE/kdebase/apps/; revision=1217560
2011-01-17Fix regression introduced by SVN commit 1214916: The navigator should get ↵Peter Penz
the focus when "Replace Location" is invoked. CCMAIL: [email protected] svn path=/trunk/KDE/kdebase/apps/; revision=1215110
2011-01-16Simplify DolphinMainWindow::replaceLocation()Sebastian Doerner
svn path=/trunk/KDE/kdebase/apps/; revision=1214916
2011-01-08SVN_SILENT: Remove unused methodPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1212992
2011-01-08Fix sanity check in toggleViews()Sebastian Doerner
svn path=/trunk/KDE/kdebase/apps/; revision=1212950
2011-01-04Add the "Lock Panels"/"Unlock Panels"-action to the context-menu of the ↵Peter Penz
Places Panel. svn path=/trunk/KDE/kdebase/apps/; revision=1211709
2010-12-31SVN_SILENT: Don't connect to non-existing signal/slotPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1210426
2010-12-31Lock panels per default and allow to unlock them like in Amarok.Peter Penz
BUG: 229811 FIXED-IN: 4.7.0 svn path=/trunk/KDE/kdebase/apps/; revision=1210424
2010-12-19Fix regression introduced in 4.5 and allow to add the menu actions "Show ↵Peter Penz
Information Panel", "Show Folders Panel", "Show Terminal Panel", "Show Places Panel" and "Show Places Panel" to the toolbar like in KDE SC 4.4. BUG: 250847 FIXED-IN: 4.6.0 svn path=/trunk/KDE/kdebase/apps/; revision=1207728
2010-11-12Fix build-issue if no Nepomuk is availablePeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1196022
2010-11-11Currently the Filter Panel does only work with enabled Nepomuk. Don't show ↵Peter Penz
it when Nepomuk is disabled. svn path=/trunk/KDE/kdebase/apps/; revision=1195652
2010-11-10Also allow to show/hide the Filter Panel if Nepomuk is disabledPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1195360
2010-11-09Revert "showMenuBar is deprecated, use showHideMenuBar instead."Aurélien Gâteau
This reverts commit f20cd7fd1836d0f16bc1dec2204bd4356a9f2802. svn path=/trunk/KDE/kdebase/apps/; revision=1194446
2010-11-07Make the filter-behavior similar to applications like Kate, where activating ↵Peter Penz
the filter lets focus it again. BUG: 256160 FIXED-IN: 4.6.0 svn path=/trunk/KDE/kdebase/apps/; revision=1193912
2010-11-06Disable the filter-dock if Nepomuk is not active.Peter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1193611
2010-11-05Rename the setter showFilterBar() to setFilterBarVisible().Peter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1193348
2010-11-05SVN_SILENT: fix typoPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1193345
2010-11-05If the user has changed the startup settings, they should also get applied ↵Peter Penz
to the current views. BUG: 254947 FIXED-IN: 4.6.0 svn path=/trunk/KDE/kdebase/apps/; revision=1193344
2010-10-29Fix build-issue if Nepomuk is not available.Peter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1191041
2010-10-27Postpone the initialization of the filter-panel until it is shown. This ↵Peter Penz
prevents overhead if the filter-panel is disabled. svn path=/trunk/KDE/kdebase/apps/; revision=1190460
2010-10-27Move "Filter"-action to the bottom and apply icon + shortcutPeter Penz
svn path=/trunk/KDE/kdebase/apps/; revision=1190446
2010-10-27- Automatically show the filter-panel when a searching is donePeter Penz
- Remove filter-prototypes that conflict with the filterpanel svn path=/trunk/KDE/kdebase/apps/; revision=1190445