X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/e5eae108ca4511be9dae5f8bb4a4e1fbb0d89c7a..7eeb8dba6aeba09aa3dfa7fa5f0b00840d4d8317:/src/dolphinview.h diff --git a/src/dolphinview.h b/src/dolphinview.h index 6c2f9aaf2..cab9fa560 100644 --- a/src/dolphinview.h +++ b/src/dolphinview.h @@ -311,15 +311,6 @@ public: void setTabsForFilesEnabled(bool tabsForFiles); bool isTabsForFilesEnabled() const; - /** - * Marks the item \a url as active item as soon as it has - * been loaded by the directory lister. This is useful mark - * the previously visited directory as active when going - * back in history (the URL is known, but the item is not - * loaded yet). - */ - void activateItem(const KUrl& url); - /** * Returns true if the current view allows folders to be expanded, * i.e. presents a hierarchical view to the user. @@ -444,12 +435,6 @@ signals: /** Is emitted if URL of the view has been changed to \a url. */ void urlChanged(const KUrl& url); - /** - * Is emitted if the view requests a changing of the current - * URL to \a url (see DolphinController::triggerUrlChangeRequest()). - */ - void requestUrlChange(const KUrl& url); - /** * Is emitted when clicking on an item with the left mouse button. */ @@ -637,12 +622,6 @@ private slots: */ void slotDeleteFileFinished(KJob* job); - /** - * Is emitted if the controller requests a changing of the current - * URL to \a url - */ - void slotRequestUrlChange(const KUrl& url); - /** * Invoked when the directory lister has completed the loading of * items. Assures that pasted items and renamed items get seleced. @@ -768,7 +747,6 @@ private: QWidget* layoutTarget() const; KUrl rootUrl() const; - KDirLister* rootDirLister() const; bool supportsCategorizedSorting() const; bool itemsExpandable() const; @@ -797,7 +775,6 @@ private: bool m_active : 1; bool m_showPreview : 1; - bool m_loadingDirectory : 1; bool m_storedCategorizedSorting : 1; bool m_tabsForFiles : 1; bool m_isContextMenuOpen : 1; // TODO: workaround for Qt-issue 207192