diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-02-26 14:51:34 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-02-27 22:19:31 +0100 |
commit | 4c3e0b2400c6b101a89f21e2268d5b696770fb9c (patch) | |
tree | 8c81a01051da8d5894bb73a4b0e5f4b487dcd411 /include | |
parent | 627b46de426a9a44ee3297136b98c503b915ca37 (diff) |
weld UpdateDialog
Change-Id: Ieca75774925a8766162481713f6e8a6ba0e9feb0
Reviewed-on: https://gerrit.libreoffice.org/68396
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/weld.hxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx index 4673da099fd6..4802713bb086 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -832,6 +832,13 @@ public: void connect_value_changed(const Link<Scale&, void>& rLink) { m_aValueChangedHdl = rLink; } }; +class VCL_DLLPUBLIC Spinner : virtual public Widget +{ +public: + virtual void start() = 0; + virtual void stop() = 0; +}; + class VCL_DLLPUBLIC ProgressBar : virtual public Widget { public: @@ -1533,6 +1540,8 @@ public: virtual std::unique_ptr<ProgressBar> weld_progress_bar(const OString& id, bool bTakeOwnership = false) = 0; + virtual std::unique_ptr<Spinner> weld_spinner(const OString& id, bool bTakeOwnership = false) + = 0; virtual std::unique_ptr<Image> weld_image(const OString& id, bool bTakeOwnership = false) = 0; virtual std::unique_ptr<Calendar> weld_calendar(const OString& id, bool bTakeOwnership = false) = 0; |