diff options
| author | Mason Reed <mason@vector35.com> | 2026-03-03 09:42:14 -0800 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2026-03-24 18:46:48 -0700 |
| commit | cc5f4dfc9d970ccd21bbd6f13b7235bc21990031 (patch) | |
| tree | 5ba8514adfbcdadd9f8922a56cfe38d79b013033 /plugins/warp/ui/matches.h | |
| parent | f852785e4ae0eb9bd560566221e9f6d70c895b32 (diff) | |
[WARP] Add a spinner to the possible matches widget while fetching from network
A little extra pizzaz
Diffstat (limited to 'plugins/warp/ui/matches.h')
| -rw-r--r-- | plugins/warp/ui/matches.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/warp/ui/matches.h b/plugins/warp/ui/matches.h index 6a2061ef..1599dd54 100644 --- a/plugins/warp/ui/matches.h +++ b/plugins/warp/ui/matches.h @@ -1,6 +1,7 @@ #pragma once #include <QSplitter> +#include <QProgressBar> #include "filter.h" #include "render.h" @@ -13,6 +14,7 @@ class WarpCurrentFunctionWidget : public QWidget FunctionRef m_current; QSplitter* m_splitter; + QProgressBar* m_spinner; WarpFunctionTableWidget* m_tableWidget; WarpFunctionInfoWidget* m_infoWidget; @@ -22,7 +24,7 @@ class WarpCurrentFunctionWidget : public QWidget std::shared_ptr<WarpFetcher> m_fetcher; public: - explicit WarpCurrentFunctionWidget(); + explicit WarpCurrentFunctionWidget(QWidget* parent = nullptr); ~WarpCurrentFunctionWidget() override = default; |
