X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/4cbeb81b2b8e2d37c93cda4d88787e08e0658291..6e752f507a1dd82a40d4bd140457203842fc0c80:/src/dolphintabwidget.h diff --git a/src/dolphintabwidget.h b/src/dolphintabwidget.h index 5bc708b38..a28a6bea1 100644 --- a/src/dolphintabwidget.h +++ b/src/dolphintabwidget.h @@ -69,6 +69,11 @@ public: */ void refreshViews(); + /** + * Update the name of the tab with the index \a index. + */ + void updateTabName(int index); + /** * @return Whether any of the tab pages has @p url opened * in their primary or secondary view. @@ -106,6 +111,11 @@ Q_SIGNALS: */ void currentUrlChanged(const QUrl &url); + /** + * Is emitted when the url of any tab has been changed (including the current tab). + */ + void urlChanged(const QUrl &url); + public Q_SLOTS: /** * Opens a new view with the current URL that is part of a tab and activates @@ -198,6 +208,12 @@ private Q_SLOTS: */ void openNewActivatedTab(int index); + /** + * Is connected to the KTabBar signal receivedDragMoveEvent. + * Allows dragging and dropping files onto tabs. + */ + void tabDragMoveEvent(int tab, QDragMoveEvent *event); + /** * Is connected to the KTabBar signal receivedDropEvent. * Allows dragging and dropping files onto tabs.