21#ifndef __ANTARES_TOOLBOX_COMPONENTS_PROGRESSBAR_H__
22#define __ANTARES_TOOLBOX_COMPONENTS_PROGRESSBAR_H__
24#include <ui/common/component/panel.h>
67 void onDraw(wxPaintEvent& evt);
Panel implementation.
Definition panel.h:36
A simple panel with a caption.
Definition progressbar.h:34
ProgressBar(wxWindow *parent)
Default contructor.
Definition progressbar.cpp:34
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:101
double value() const
Get the progress value.
Definition progressbar.h:51
~ProgressBar()
Destructor.
Definition progressbar.cpp:41
void value(double v)
Set the progress value.
Definition progressbar.h:56