21 #ifndef __ANTARES_TOOLBOX_COMPONENTS_CAPTIONPANEL_H__
22 #define __ANTARES_TOOLBOX_COMPONENTS_CAPTIONPANEL_H__
24 #include <ui/common/component/panel.h>
26 namespace Antares::Component
62 void caption(
const wxString& s);
69 void onDraw(wxPaintEvent& evt);
A simple panel with a caption.
Definition: captionpanel.h:32
const wxString & caption() const
Get the caption of the panel.
Definition: captionpanel.h:56
void onResize(wxSizeEvent &evt)
Event: The panel is been resizing.
Definition: captionpanel.cpp:153
CaptionPanel(wxWindow *parent)
Default contructor.
Definition: captionpanel.cpp:49
void onDraw(wxPaintEvent &evt)
Event: The panel has to paint itself.
Definition: captionpanel.cpp:75
~CaptionPanel()
Destructor.
Definition: captionpanel.cpp:65
Panel implementation.
Definition: panel.h:34