diff options
| author | ambar chakravartty <[email protected]> | 2025-01-27 16:50:13 +0530 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2025-02-06 14:32:35 +0000 |
| commit | 625599462a8ec82f0e43267d333b3ed74a4401bf (patch) | |
| tree | fea1bf6d046daa53c7e96940cb23ed7d6d2a7f1f /src/dolphintabpage.h | |
| parent | 529df26a3f99f186ffc8848d32d6ec8f2a4b2f5c (diff) | |
Added code for a "Rename Tab" feature.
BUG: 197009
Diffstat (limited to 'src/dolphintabpage.h')
| -rw-r--r-- | src/dolphintabpage.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/dolphintabpage.h b/src/dolphintabpage.h index 4a8bd365a..5dafcd5dc 100644 --- a/src/dolphintabpage.h +++ b/src/dolphintabpage.h @@ -13,7 +13,9 @@ #include <QPointer> #include <QSplitter> #include <QUrl> +#include <QUuid> #include <QWidget> +#include <quuid.h> class DolphinNavigatorsWidgetAction; class DolphinViewContainer; @@ -140,6 +142,10 @@ public: void switchActiveView(); + void setTitle(const QString &name); + + QString title(); + Q_SIGNALS: void activeViewChanged(DolphinViewContainer *viewContainer); void activeViewUrlChanged(const QUrl &url); @@ -201,6 +207,7 @@ private: bool m_primaryViewActive; bool m_splitViewEnabled; bool m_active; + QString m_title; }; class DolphinTabPageSplitterHandle : public QSplitterHandle |
