]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/panelg.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/panelg.cpp
3 // Purpose: wxPanel and the keyboard handling code
4 // Author: Julian Smart, Robert Roebling, Vadim Zeitlin
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/object.h"
30 #include "wx/colour.h"
31 #include "wx/settings.h"
34 #include "wx/containr.h"
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
41 #if wxUSE_EXTENDED_RTTI
42 WX_DEFINE_FLAGS( wxPanelStyle
)
44 wxBEGIN_FLAGS( wxPanelStyle
)
45 // new style border flags, we put them first to
46 // use them for streaming out
47 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
48 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
49 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
50 wxFLAGS_MEMBER(wxBORDER_RAISED
)
51 wxFLAGS_MEMBER(wxBORDER_STATIC
)
52 wxFLAGS_MEMBER(wxBORDER_NONE
)
54 // old style border flags
55 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
56 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
57 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
58 wxFLAGS_MEMBER(wxRAISED_BORDER
)
59 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
60 wxFLAGS_MEMBER(wxBORDER
)
62 // standard window styles
63 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
64 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
65 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
66 wxFLAGS_MEMBER(wxWANTS_CHARS
)
67 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
68 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
69 wxFLAGS_MEMBER(wxVSCROLL
)
70 wxFLAGS_MEMBER(wxHSCROLL
)
72 wxEND_FLAGS( wxPanelStyle
)
74 IMPLEMENT_DYNAMIC_CLASS_XTI(wxPanel
, wxWindow
,"wx/panel.h")
76 wxBEGIN_PROPERTIES_TABLE(wxPanel
)
77 wxPROPERTY_FLAGS( WindowStyle
, wxPanelStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
78 // style wxTAB_TRAVERSAL
79 wxEND_PROPERTIES_TABLE()
81 wxBEGIN_HANDLERS_TABLE(wxPanel
)
82 wxEND_HANDLERS_TABLE()
84 wxCONSTRUCTOR_5( wxPanel
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
87 IMPLEMENT_DYNAMIC_CLASS(wxPanel
, wxWindow
)
90 BEGIN_EVENT_TABLE(wxPanel
, wxWindow
)
91 WX_EVENT_TABLE_CONTROL_CONTAINER(wxPanel
)
94 // ============================================================================
96 // ============================================================================
98 WX_DELEGATE_TO_CONTROL_CONTAINER(wxPanel
, wxWindow
)
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
106 WX_INIT_CONTROL_CONTAINER();
109 m_isTransparent
= false;
113 bool wxPanel::Create(wxWindow
*parent
, wxWindowID id
,
117 const wxString
& name
)
119 if ( !wxWindow::Create(parent
, id
, pos
, size
, style
, name
) )
122 // so that non-solid background renders correctly under GTK+:
123 SetThemeEnabled(true);
125 #if defined(__WXWINCE__) && (defined(__POCKETPC__) || defined(__SMARTPHONE__))
126 // Required to get solid control backgrounds under WinCE
127 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
137 void wxPanel::InitDialog()
139 wxInitDialogEvent
event(GetId());
140 event
.SetEventObject(this);
141 GetEventHandler()->ProcessEvent(event
);