]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/panelg.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxPanel: similar to wxWindows but is coloured as for a dialog
4 // Author: Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "panelg.h"
19 #include "wx/window.h"
21 WXDLLEXPORT_DATA(extern const char*) wxPanelNameStr
;
24 class WXDLLEXPORT wxPanel
: public wxWindow
29 // Old-style constructor (no default values for coordinates to avoid ambiguity
31 wxPanel(wxWindow
*parent
,
32 int x
, int y
, int width
, int height
,
33 long style
= wxTAB_TRAVERSAL
| wxNO_BORDER
,
34 const wxString
& name
= wxPanelNameStr
)
36 Create(parent
, -1, wxPoint(x
, y
), wxSize(width
, height
), style
, name
);
40 wxPanel(wxWindow
*parent
,
42 const wxPoint
& pos
= wxDefaultPosition
,
43 const wxSize
& size
= wxDefaultSize
,
44 long style
= wxTAB_TRAVERSAL
| wxNO_BORDER
,
45 const wxString
& name
= wxPanelNameStr
)
47 Create(parent
, id
, pos
, size
, style
, name
);
50 bool Create(wxWindow
*parent
, wxWindowID id
,
51 const wxPoint
& pos
= wxDefaultPosition
,
52 const wxSize
& size
= wxDefaultSize
,
53 long style
= wxTAB_TRAVERSAL
| wxNO_BORDER
,
54 const wxString
& name
= wxPanelNameStr
);
56 // Sends an OnInitDialog event, which in turns transfers data to
57 // to the dialog via validators.
58 virtual void InitDialog();
60 // Responds to colour changes
61 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
63 // Process a keyboard navigation message (Tab traversal)
64 void OnNavigationKey(wxNavigationKeyEvent
& event
);
66 // override base class virtuals
67 // we don't want focus for ourselves
68 virtual bool AcceptsFocus() const { return FALSE
; }
71 DECLARE_DYNAMIC_CLASS(wxPanel
)