summaryrefslogtreecommitdiff
path: root/src/components/progressbar.hpp
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2022-07-07 03:09:54 -0400
committerouwou <26526779+ouwou@users.noreply.github.com>2022-07-07 03:09:54 -0400
commit41776fbd023df1c4a70ffa46e8f81c6aea9f7b7f (patch)
tree12529298666543801a0e46c1fa83099e69968ddc /src/components/progressbar.hpp
parent5c7631e71382b0c1727bd8e1487a7e41feaf2efc (diff)
downloadabaddon-portaudio-41776fbd023df1c4a70ffa46e8f81c6aea9f7b7f.tar.gz
abaddon-portaudio-41776fbd023df1c4a70ffa46e8f81c6aea9f7b7f.zip
add upload progress bar
Diffstat (limited to 'src/components/progressbar.hpp')
-rw-r--r--src/components/progressbar.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/progressbar.hpp b/src/components/progressbar.hpp
new file mode 100644
index 0000000..b73521b
--- /dev/null
+++ b/src/components/progressbar.hpp
@@ -0,0 +1,11 @@
+#pragma once
+#include <gtkmm/progressbar.h>
+#include <string>
+
+class MessageUploadProgressBar : public Gtk::ProgressBar {
+public:
+ MessageUploadProgressBar();
+
+private:
+ std::string m_last_nonce;
+};