21 #ifndef __ANTARES_TOOLBOX_COMPONENTS_PROGRESSBAR_H__
22 #define __ANTARES_TOOLBOX_COMPONENTS_PROGRESSBAR_H__
24 #include <ui/common/component/panel.h>
26 namespace Antares::Component
68 void onDraw(wxPaintEvent& evt);
Panel implementation.
Definition: panel.h:34
A simple panel with a caption.
Definition: progressbar.h:32
ProgressBar(wxWindow *parent)
Default contructor.
Definition: progressbar.cpp:32
void onDraw(wxPaintEvent &evt)
Event: The panel has to paint itself.
Definition: progressbar.cpp:45
void onResize(wxSizeEvent &evt)
Event: The panel is been resizing.
Definition: progressbar.cpp:102
double value() const
Get the progress value.
Definition: progressbar.h:50
~ProgressBar()
Destructor.
Definition: progressbar.cpp:41
void value(double v)
Set the progress value.
Definition: progressbar.h:56