summaryrefslogtreecommitdiff
path: root/plugins/warp/ui/matches.h
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2026-03-03 09:42:14 -0800
committerMason Reed <35282038+emesare@users.noreply.github.com>2026-03-24 18:46:48 -0700
commitcc5f4dfc9d970ccd21bbd6f13b7235bc21990031 (patch)
tree5ba8514adfbcdadd9f8922a56cfe38d79b013033 /plugins/warp/ui/matches.h
parentf852785e4ae0eb9bd560566221e9f6d70c895b32 (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.h4
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;