The unknown control container should always have the wxTAB_TRAVERSAL

and wxNO_BORDER styles


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2003-09-12 21:38:41 +00:00
parent 4b289591ff
commit d1cc09bb6f
2 changed files with 10 additions and 8 deletions

View File

@ -34,8 +34,10 @@ public:
wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxNO_BORDER)
: wxPanel(parent, id, pos, size, style,
long style = 0)
// Always add the wxTAB_TRAVERSAL and wxNO_BORDER styles to what comes
// from the XRC if anything.
: wxPanel(parent, id, pos, size, style | wxTAB_TRAVERSAL | wxNO_BORDER,
controlName + wxT("_container")),
m_controlName(controlName), m_controlAdded(false)
{
@ -92,8 +94,7 @@ wxObject *wxUnknownWidgetXmlHandler::DoCreateResource()
new wxUnknownControlContainer(m_parentAsWindow,
GetName(), -1,
GetPosition(), GetSize(),
GetStyle(wxT("style"),
wxTAB_TRAVERSAL | wxNO_BORDER));
GetStyle(wxT("style")));
SetupWindow(panel);
return panel;
}

View File

@ -34,8 +34,10 @@ public:
wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxNO_BORDER)
: wxPanel(parent, id, pos, size, style,
long style = 0)
// Always add the wxTAB_TRAVERSAL and wxNO_BORDER styles to what comes
// from the XRC if anything.
: wxPanel(parent, id, pos, size, style | wxTAB_TRAVERSAL | wxNO_BORDER,
controlName + wxT("_container")),
m_controlName(controlName), m_controlAdded(false)
{
@ -92,8 +94,7 @@ wxObject *wxUnknownWidgetXmlHandler::DoCreateResource()
new wxUnknownControlContainer(m_parentAsWindow,
GetName(), -1,
GetPosition(), GetSize(),
GetStyle(wxT("style"),
wxTAB_TRAVERSAL | wxNO_BORDER));
GetStyle(wxT("style")));
SetupWindow(panel);
return panel;
}