warning level 4 ("'this' : used in base member initializer list" is really
the stupidiest warning I've ever seen)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11315
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
public:
// ctors and such
{
public:
// ctors and such
- wxControlContainer(wxWindow *winParent);
+ wxControlContainer(wxWindow *winParent = NULL);
+ void SetContainerWindow(wxWindow *winParent) { m_winParent = winParent; }
wxWindow *GetDefaultItem() const { return m_winDefault; }
wxWindow *SetDefaultItem(wxWindow *win)
{ wxWindow *winOld = m_winDefault; m_winDefault = win; return winOld; }
wxWindow *GetDefaultItem() const { return m_winDefault; }
wxWindow *SetDefaultItem(wxWindow *win)
{ wxWindow *winOld = m_winDefault; m_winDefault = win; return winOld; }
- void SetLastFocus(wxWindow *win);
-
// the methods to be called from the window event handlers
void HandleOnNavigationKey(wxNavigationKeyEvent& event);
void HandleOnFocus(wxFocusEvent& event);
// the methods to be called from the window event handlers
void HandleOnNavigationKey(wxNavigationKeyEvent& event);
void HandleOnFocus(wxFocusEvent& event);
// the focus and the default processing should take place
bool DoSetFocus();
// the focus and the default processing should take place
bool DoSetFocus();
+ // called from OnChildFocus() handler, i.e. when one of our (grand)
+ // children gets the focus
+ void SetLastFocus(wxWindow *win);
+
protected:
// set the focus to the child which had it the last time
bool SetFocusToChild();
protected:
// set the focus to the child which had it the last time
bool SetFocusToChild();
class WXDLLEXPORT wxPanel : public wxWindow
{
public:
class WXDLLEXPORT wxPanel : public wxWindow
{
public:
- wxPanel() : m_container(this) { Init(); }
// Old-style constructor (no default values for coordinates to avoid
// ambiguity with the new one)
// Old-style constructor (no default values for coordinates to avoid
// ambiguity with the new one)
int x, int y, int width, int height,
long style = wxTAB_TRAVERSAL | wxNO_BORDER,
const wxString& name = wxPanelNameStr)
int x, int y, int width, int height,
long style = wxTAB_TRAVERSAL | wxNO_BORDER,
const wxString& name = wxPanelNameStr)
const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxNO_BORDER,
const wxString& name = wxPanelNameStr)
const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxNO_BORDER,
const wxString& name = wxPanelNameStr)
// Public API
// Default constructor
// Public API
// Default constructor
- wxSplitterWindow() : m_container(this)
const wxSize& size = wxDefaultSize,
long style = wxSP_3D,
const wxString& name = "splitter")
const wxSize& size = wxDefaultSize,
long style = wxSP_3D,
const wxString& name = "splitter")
{
Init();
Create(parent, id, pos, size, style, name);
{
Init();
Create(parent, id, pos, size, style, name);
+ m_container.SetContainerWindow(this);
}
bool wxPanel::Create(wxWindow *parent, wxWindowID id,
}
bool wxPanel::Create(wxWindow *parent, wxWindowID id,
void wxSplitterWindow::Init()
{
void wxSplitterWindow::Init()
{
+ m_container.SetContainerWindow(this);
+
m_splitMode = wxSPLIT_VERTICAL;
m_permitUnsplitAlways = TRUE;
m_windowOne = (wxWindow *) NULL;
m_splitMode = wxSPLIT_VERTICAL;
m_permitUnsplitAlways = TRUE;
m_windowOne = (wxWindow *) NULL;