diff options
| author | Josh Ferrell <josh@vector35.com> | 2026-04-10 11:50:51 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2026-04-14 17:09:53 -0400 |
| commit | 5bd3e607140dfcf6e3b08ca28749015e629c16c3 (patch) | |
| tree | dde66ccbe3cbf12336823418974d5402c095406d /ui/projectbrowser.h | |
| parent | 9fddd2a54eaa640888c656cdfb490690ec6f519b (diff) | |
Allow project browser columns to be hidden
Diffstat (limited to 'ui/projectbrowser.h')
| -rw-r--r-- | ui/projectbrowser.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/projectbrowser.h b/ui/projectbrowser.h index 5de52713..a34ef937 100644 --- a/ui/projectbrowser.h +++ b/ui/projectbrowser.h @@ -6,6 +6,7 @@ #include <qfilesystemwatcher.h> #include <qlabel.h> #include <qlineedit.h> +#include <qmenu.h> #include <qmimedatabase.h> #include <qnamespace.h> #include <qplaintextedit.h> @@ -234,6 +235,8 @@ protected: public: ProjectTable(QWidget* parent = nullptr); + QMenu* createHeaderContextMenu(); + Q_SIGNALS: void filterChanged(const QString& filter, FilterOptions options); }; @@ -268,6 +271,8 @@ protected: public: ProjectTree(QWidget* parent = nullptr); + QMenu* createHeaderContextMenu(); + Q_SIGNALS: void filterChanged(const QString& filter, FilterOptions options); }; |
