Contents Up Previous Next

wxPanel

A panel is a window on which controls are placed. It is usually placed within a frame. It contains minimal extra functionality over and above its parent class wxWindow; its main purpose is to be similar in appearance and functionality to a dialog, but with the flexibility of having any window as a parent.

Note: if not all characters are being intercepted by your OnKeyDown or OnChar handler, it may be because you are using the wxTAB_TRAVERSAL style, which grabs some keypresses for use by child controls.

Derived from

wxWindow
wxEvtHandler
wxObject

Include files

<wx/panel.h>

Window styles

There are no specific styles for this window.

See also window styles overview.

Remarks

By default, a panel has the same colouring as a dialog.

See also

wxDialog

Members

wxPanel::wxPanel
wxPanel::~wxPanel
wxPanel::Create
wxPanel::InitDialog
wxPanel::OnSysColourChanged
wxPanel::SetFocus
wxPanel::SetFocusIgnoringChildren


wxPanel::wxPanel

wxPanel()

Default constructor.

wxPanel(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxTAB_TRAVERSAL, const wxString& name = "panel")

Constructor.

Parameters

parent

id

pos

size

style

name

See also

wxPanel::Create


wxPanel::~wxPanel

~wxPanel()

Destructor. Deletes any child windows before deleting the physical window.


wxPanel::Create

bool Create(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxTAB_TRAVERSAL, const wxString& name = "panel")

Used for two-step panel construction. See wxPanel::wxPanel for details.


wxPanel::InitDialog

void InitDialog()

Sends a wxInitDialogEvent, which in turn transfers data to the dialog via validators.

See also

wxInitDialogEvent


wxPanel::OnSysColourChanged

void OnSysColourChanged(wxSysColourChangedEvent& event)

The default handler for wxEVT_SYS_COLOUR_CHANGED.

Parameters

event

Remarks

Changes the panel's colour to conform to the current settings (Windows only). Add an event table entry for your panel class if you wish the behaviour to be different (such as keeping a user-defined background colour). If you do override this function, call wxEvent::Skip to propagate the notification to child windows and controls.

See also

wxSysColourChangedEvent


wxPanel::SetFocus

virtual void SetFocus()

Overrides wxWindow::SetFocus. This method uses the (undocumented) mix-in class wxControlContainer which manages the focus and TAB logic for controls which usually have child controls. In practice, if you call this method and the control has at least one child window, the focus will be given to the child window.

See also

wxFocusEvent wxWindow::SetFocus


wxPanel::SetFocusIgnoringChildren

virtual void SetFocusIgnoringChildren()

In contrast to wxPanel::SetFocus (see above) this will set the focus to the panel even of there are child windows in the panel. This is only rarely needed.

See also

wxFocusEvent wxPanel::SetFocus