]>
Commit | Line | Data |
---|---|---|
99d80019 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/panel.h | |
3 | // Purpose: Base header for wxPanel | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: | |
99d80019 | 7 | // Copyright: (c) Julian Smart |
5b87bd6c | 8 | // (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org> |
99d80019 JS |
9 | // Licence: wxWindows Licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_PANEL_H_BASE_ |
13 | #define _WX_PANEL_H_BASE_ | |
c801d85f | 14 | |
5b87bd6c VZ |
15 | // ---------------------------------------------------------------------------- |
16 | // headers and forward declarations | |
17 | // ---------------------------------------------------------------------------- | |
c801d85f | 18 | |
5b87bd6c VZ |
19 | #include "wx/window.h" |
20 | #include "wx/containr.h" | |
21 | ||
22 | class WXDLLIMPEXP_FWD_CORE wxControlContainer; | |
23 | ||
24 | extern WXDLLIMPEXP_DATA_CORE(const char) wxPanelNameStr[]; | |
25 | ||
26 | // ---------------------------------------------------------------------------- | |
27 | // wxPanel contains other controls and implements TAB traversal between them | |
28 | // ---------------------------------------------------------------------------- | |
29 | ||
90230407 | 30 | class WXDLLIMPEXP_CORE wxPanelBase : public wxNavigationEnabled<wxWindow> |
5b87bd6c VZ |
31 | { |
32 | public: | |
90230407 | 33 | wxPanelBase() { } |
5b87bd6c VZ |
34 | |
35 | // Derived classes should also provide this constructor: | |
36 | /* | |
37 | wxPanelBase(wxWindow *parent, | |
38 | wxWindowID winid = wxID_ANY, | |
39 | const wxPoint& pos = wxDefaultPosition, | |
40 | const wxSize& size = wxDefaultSize, | |
41 | long style = wxTAB_TRAVERSAL | wxNO_BORDER, | |
42 | const wxString& name = wxPanelNameStr); | |
43 | */ | |
44 | ||
45 | // Pseudo ctor | |
46 | bool Create(wxWindow *parent, | |
47 | wxWindowID winid = wxID_ANY, | |
48 | const wxPoint& pos = wxDefaultPosition, | |
49 | const wxSize& size = wxDefaultSize, | |
50 | long style = wxTAB_TRAVERSAL | wxNO_BORDER, | |
51 | const wxString& name = wxPanelNameStr); | |
52 | ||
53 | ||
54 | // implementation from now on | |
55 | // -------------------------- | |
56 | ||
57 | virtual void InitDialog(); | |
58 | ||
5b87bd6c | 59 | private: |
5b87bd6c VZ |
60 | wxDECLARE_NO_COPY_CLASS(wxPanelBase); |
61 | }; | |
62 | ||
63 | #if defined(__WXUNIVERSAL__) | |
64 | #include "wx/univ/panel.h" | |
65 | #elif defined(__WXMSW__) | |
66 | #include "wx/msw/panel.h" | |
67 | #else | |
cd95f7e6 | 68 | #define wxHAS_GENERIC_PANEL |
5b87bd6c | 69 | #include "wx/generic/panelg.h" |
c801d85f | 70 | #endif |
5b87bd6c VZ |
71 | |
72 | #endif // _WX_PANELH_BASE_ |