]>
cloud.milkyroute.net Git - dolphin.git/blob - src/dolphinmainwindow.h
1 /***************************************************************************
2 * Copyright (C) 2006 by Peter Penz <peter.penz19@gmail.com> *
3 * Copyright (C) 2006 by Stefan Monov <logixoul@gmail.com> *
4 * Copyright (C) 2006 by Cvetoslav Ludmiloff <ludmiloff@gmail.com> *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the *
18 * Free Software Foundation, Inc., *
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
20 ***************************************************************************/
22 #ifndef DOLPHIN_MAINWINDOW_H
23 #define DOLPHIN_MAINWINDOW_H
25 #include <config-baloo.h>
27 #include <kio/fileundomanager.h>
28 #include <ksortablelist.h>
29 #include <kxmlguiwindow.h>
34 #include <QWeakPointer>
36 typedef KIO::FileUndoManager::CommandType CommandType
;
38 class DolphinViewActionHandler
;
39 class DolphinSettingsDialog
;
40 class DolphinViewContainer
;
41 class DolphinRemoteEncoding
;
42 class DolphinTabWidget
;
51 * @short Main window for Dolphin.
53 * Handles the menus, toolbars and Dolphin views.
55 class DolphinMainWindow
: public KXmlGuiWindow
58 Q_CLASSINFO("D-Bus Interface", "org.kde.dolphin.MainWindow")
59 Q_PROPERTY(int id READ getId SCRIPTABLE
true)
63 virtual ~DolphinMainWindow();
66 * Returns the currently active view.
67 * All menu actions are applied to this view. When
68 * having a split view setup, the nonactive view
69 * is usually shown in darker colors.
71 DolphinViewContainer
* activeViewContainer() const;
74 * Opens each directory in \p dirs in a separate tab. If the "split view"
75 * option is enabled, 2 directories are collected within one tab.
77 void openDirectories(const QList
<QUrl
> &dirs
);
80 * Opens the directory which contains the files \p files
81 * and selects all files (implements the --select option
84 void openFiles(const QList
<QUrl
>& files
);
87 * Returns the 'Create New...' sub menu which also can be shared
88 * with other menus (e. g. a context menu).
90 KNewFileMenu
* newFileMenu() const;
94 * Pastes the clipboard data into the currently selected folder
95 * of the active view. If not exactly one folder is selected,
96 * no pasting is done at all.
98 void pasteIntoFolder();
101 * Returns the main window ID used through DBus.
106 * Implementation of the MainWindowAdaptor/QDBusAbstractAdaptor interface.
107 * Inform all affected dolphin components (panels, views) of an URL
110 void changeUrl(const QUrl
& url
);
113 * The current directory of the Terminal Panel has changed, probably because
114 * the user entered a 'cd' command. This slot calls changeUrl(url) and makes
115 * sure that the panel keeps the keyboard focus.
117 void slotTerminalDirectoryChanged(const QUrl
& url
);
119 /** Stores all settings and quits Dolphin. */
123 * Opens a new tab showing the URL \a url and activates the tab.
125 void openNewActivatedTab(const QUrl
& url
);
129 * Is sent if the selection of the currently active view has
132 void selectionChanged(const KFileItemList
& selection
);
135 * Is sent if the url of the currently active view has
138 void urlChanged(const QUrl
& url
);
141 * Is emitted if information of an item is requested to be shown e. g. in the panel.
142 * If item is null, no item information request is pending.
144 void requestItemInfo(const KFileItem
& item
);
147 * Is emitted if the settings have been changed.
149 void settingsChanged();
152 /** @see QWidget::showEvent() */
153 virtual void showEvent(QShowEvent
* event
) Q_DECL_OVERRIDE
;
155 /** @see QMainWindow::closeEvent() */
156 virtual void closeEvent(QCloseEvent
* event
) Q_DECL_OVERRIDE
;
158 /** @see KMainWindow::saveProperties() */
159 virtual void saveProperties(KConfigGroup
& group
) Q_DECL_OVERRIDE
;
161 /** @see KMainWindow::readProperties() */
162 virtual void readProperties(const KConfigGroup
& group
) Q_DECL_OVERRIDE
;
166 * Refreshes the views of the main window by recreating them according to
167 * the given Dolphin settings.
171 void clearStatusBar();
173 /** Updates the 'Create New...' sub menu. */
174 void updateNewMenu();
176 void createDirectory();
178 /** Shows the error message in the status bar of the active view. */
179 void showErrorMessage(const QString
& message
);
182 * Updates the state of the 'Undo' menu action dependent
183 * on the parameter \a available.
185 void slotUndoAvailable(bool available
);
187 /** Sets the text of the 'Undo' menu action to \a text. */
188 void slotUndoTextChanged(const QString
& text
);
190 /** Performs the current undo operation. */
194 * Copies all selected items to the clipboard and marks
199 /** Copies all selected items to the clipboard. */
202 /** Pastes the clipboard data to the active view. */
205 /** Replaces the URL navigator by a search box to find files. */
209 * Updates the text of the paste action dependent on
210 * the number of items which are in the clipboard.
212 void updatePasteAction();
214 /** Selects all items from the active view. */
218 * Inverts the selection of all items of the active view:
219 * Selected items get nonselected and nonselected items get
222 void invertSelection();
225 * Switches between one and two views:
226 * If one view is visible, it will get split into two views.
227 * If already two views are visible, the active view gets closed.
229 void toggleSplitView();
231 /** Reloads the currently active view. */
234 /** Stops the loading process for the currently active view. */
237 void enableStopAction();
238 void disableStopAction();
240 void showFilterBar();
243 * Toggles between edit and browse mode of the navigation bar.
245 void toggleEditLocation();
248 * Switches to the edit mode of the navigation bar and selects
249 * the whole URL, so that it can be replaced by the user. If the edit mode is
250 * already active, it is assured that the navigation bar get focused.
252 void replaceLocation();
255 * Toggles the state of the panels between a locked and unlocked layout.
257 void togglePanelLockState();
259 /** Goes back one step of the URL history. */
262 /** Goes forward one step of the URL history. */
265 /** Goes up one hierarchy of the current URL. */
268 /** Changes the location to the home URL. */
272 * Open the previous URL in the URL history in a new tab
273 * if the middle mouse button is clicked.
275 void goBack(Qt::MouseButtons buttons
);
278 * Open the next URL in the URL history in a new tab
279 * if the middle mouse button is clicked.
281 void goForward(Qt::MouseButtons buttons
);
284 * Open the URL one hierarchy above the current URL in a new tab
285 * if the middle mouse button is clicked.
287 void goUp(Qt::MouseButtons buttons
);
290 * Open the home URL in a new tab
292 void goHome(Qt::MouseButtons buttons
);
294 /** Opens Kompare for 2 selected files. */
298 * Hides the menu bar if it is visible, makes the menu bar
299 * visible if it is hidden.
301 void toggleShowMenuBar();
303 /** Opens a terminal window for the current location. */
306 /** Opens the settings dialog for Dolphin. */
309 /** Updates the state of the 'Show Full Location' action. */
310 void slotEditableStateChanged(bool editable
);
313 * Updates the state of the 'Edit' menu actions and emits
314 * the signal selectionChanged().
316 void slotSelectionChanged(const KFileItemList
& selection
);
319 * Updates the state of the 'Back' and 'Forward' menu
320 * actions corresponding to the current history.
322 void updateHistory();
324 /** Updates the state of the 'Show filter bar' menu action. */
325 void updateFilterBarAction(bool show
);
327 /** Open a new main window. */
328 void openNewMainWindow();
331 * Opens a new view with the current URL that is part of a tab and
334 void openNewActivatedTab();
337 * Opens a new tab in the background showing the URL \a url.
339 void openNewTab(const QUrl
& url
);
342 * Opens the selected folder in a new tab.
347 * Opens the selected folder in a new window.
349 void openInNewWindow();
352 * Indicates in the statusbar that the execution of the command \a command
355 void showCommand(CommandType command
);
358 * If the URL can be listed, open it in the current view, otherwise
359 * run it through KRun.
361 void handleUrl(const QUrl
& url
);
364 * handleUrl() can trigger a stat job to see if the url can actually
367 void slotHandleUrlStatFinished(KJob
* job
);
370 * Is invoked when the write state of a folder has been changed and
371 * enables/disables the "Create New..." menu entry.
373 void slotWriteStateChanged(bool isFolderWritable
);
376 * Opens the context menu on the current mouse position.
377 * @pos Position in screen coordinates.
378 * @item File item context. If item is null, the context menu
379 * should be applied to \a url.
380 * @url URL which contains \a item.
381 * @customActions Actions that should be added to the context menu,
382 * if the file item is null.
384 void openContextMenu(const QPoint
& pos
,
385 const KFileItem
& item
,
387 const QList
<QAction
*>& customActions
);
389 void updateControlMenu();
390 void updateToolBar();
391 void slotControlButtonDeleted();
394 * Is called if the user clicked an item in the Places Panel.
395 * Reloads the view if \a url is the current URL already, and changes the
396 * current URL otherwise.
398 void slotPlaceActivated(const QUrl
& url
);
401 * Is called if the another view has been activated by changing the current
402 * tab or activating another view in split-view mode.
404 * Activates the given view, which means that all menu actions are applied
405 * to this view. When having a split view setup, the nonactive view is
406 * usually shown in darker colors.
408 void activeViewChanged(DolphinViewContainer
* viewContainer
);
410 void closedTabsCountChanged(unsigned int count
);
413 * Is called if a new tab has been opened or a tab has been closed to
414 * enable/disable the tab actions.
416 void tabCountChanged(int count
);
419 * Sets the window caption to url.fileName() if this is non-empty,
420 * "/" if the URL is "file:///", and url.protocol() otherwise.
422 void setUrlAsCaption(const QUrl
& url
);
425 * Is called when the view has finished loading the directory.
427 void slotDirectoryLoadingCompleted();
431 void setupDockWidgets();
432 void updateEditActions();
433 void updateViewActions();
434 void updateGoActions();
436 void createControlButton();
437 void deleteControlButton();
440 * Adds the action \p action to the menu \p menu in
441 * case if it has not added already to the toolbar.
442 * @return True if the action has been added to the menu.
444 bool addActionToMenu(QAction
* action
, QMenu
* menu
);
447 * Connects the signals from the created DolphinView with
448 * the DolphinViewContainer \a container with the corresponding slots of
449 * the DolphinMainWindow. This method must be invoked each
450 * time a DolphinView has been created.
452 void connectViewSignals(DolphinViewContainer
* container
);
455 * Updates the text of the split action:
456 * If two views are shown, the text is set to "Split",
457 * otherwise the text is set to "Join". The icon
458 * is updated to match with the text and the currently active view.
460 void updateSplitAction();
462 bool isKompareInstalled() const;
465 * Creates an action for showing/hiding a panel, that is accessible
466 * in "Configure toolbars..." and "Configure shortcuts...". This is necessary
467 * as the action for toggling the dock visibility is done by Qt which
468 * is no KAction instance.
470 void createPanelAction(const QIcon
&icon
,
471 const QKeySequence
& shortcut
,
473 const QString
& actionName
);
477 * Implements a custom error handling for the undo manager. This
478 * assures that all errors are shown in the status bar of Dolphin
479 * instead as modal error dialog with an OK button.
481 class UndoUiInterface
: public KIO::FileUndoManager::UiInterface
485 virtual ~UndoUiInterface();
486 virtual void jobError(KIO::Job
* job
) Q_DECL_OVERRIDE
;
489 KNewFileMenu
* m_newFileMenu
;
490 DolphinTabWidget
* m_tabWidget
;
491 DolphinViewContainer
* m_activeViewContainer
;
494 DolphinViewActionHandler
* m_actionHandler
;
495 DolphinRemoteEncoding
* m_remoteEncoding
;
496 QWeakPointer
<DolphinSettingsDialog
> m_settingsDialog
;
498 // Members for the toolbar menu that is shown when the menubar is hidden:
499 QToolButton
* m_controlButton
;
500 QTimer
* m_updateToolBarTimer
;
502 KIO::Job
* m_lastHandleUrlStatJob
;
505 inline DolphinViewContainer
* DolphinMainWindow::activeViewContainer() const
507 return m_activeViewContainer
;
510 inline KNewFileMenu
* DolphinMainWindow::newFileMenu() const
512 return m_newFileMenu
;
515 inline int DolphinMainWindow::getId() const
520 #endif // DOLPHIN_MAINWINDOW_H