diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-01-22 03:29:40 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-02-04 03:33:22 -0500 |
| commit | 412165fcfbbd27d679a7400ebdef75ff3a9d6aa7 (patch) | |
| tree | 2237075dd6d2023b9a180c2295133d759d36de64 /src/envshell.h | |
| parent | 2a0e78e3cf0c1106a1fb7e470148f6e0b093b2b1 (diff) | |
show file counts when there are discrepancies
Diffstat (limited to 'src/envshell.h')
| -rw-r--r-- | src/envshell.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/envshell.h b/src/envshell.h index 52125a5c..f9245a37 100644 --- a/src/envshell.h +++ b/src/envshell.h @@ -20,6 +20,7 @@ public: ShellMenu& operator=(ShellMenu&&) = default; void addFile(QFileInfo fi); + int fileCount() const; void exec(const QPoint& pos); HMENU getMenu(); @@ -57,7 +58,9 @@ class ShellMenuCollection public: ShellMenuCollection(QMainWindow* mw); + void addDetails(QString s); void add(QString name, ShellMenu m); + void exec(const QPoint& pos); private: @@ -68,6 +71,7 @@ private: }; QMainWindow* m_mw; + std::vector<QString> m_details; std::vector<MenuInfo> m_menus; MenuInfo* m_active; |
