make wxGenericCollapsiblePane a wxControlContainer to allow keyboard navigation to and inside it
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51649 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -19,6 +19,8 @@ class WXDLLIMPEXP_FWD_CORE wxStaticLine;
|
|||||||
class WXDLLIMPEXP_FWD_CORE wxDisclosureTriangle;
|
class WXDLLIMPEXP_FWD_CORE wxDisclosureTriangle;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "wx/containr.h"
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// wxGenericCollapsiblePane
|
// wxGenericCollapsiblePane
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
@@ -42,15 +44,7 @@ public:
|
|||||||
Create(parent, winid, label, pos, size, style, val, name);
|
Create(parent, winid, label, pos, size, style, val, name);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Init()
|
virtual ~wxGenericCollapsiblePane();
|
||||||
{
|
|
||||||
m_pButton = NULL;
|
|
||||||
m_pPane = NULL;
|
|
||||||
m_pStaticLine = NULL;
|
|
||||||
m_sz = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
~wxGenericCollapsiblePane();
|
|
||||||
|
|
||||||
bool Create(wxWindow *parent,
|
bool Create(wxWindow *parent,
|
||||||
wxWindowID winid,
|
wxWindowID winid,
|
||||||
@@ -98,10 +92,13 @@ protected:
|
|||||||
wxString m_strLabel;
|
wxString m_strLabel;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
void Init();
|
||||||
|
|
||||||
// event handlers
|
// event handlers
|
||||||
void OnButton(wxCommandEvent &ev);
|
void OnButton(wxCommandEvent &ev);
|
||||||
void OnSize(wxSizeEvent &ev);
|
void OnSize(wxSizeEvent &ev);
|
||||||
|
|
||||||
|
WX_DECLARE_CONTROL_CONTAINER();
|
||||||
DECLARE_DYNAMIC_CLASS(wxGenericCollapsiblePane)
|
DECLARE_DYNAMIC_CLASS(wxGenericCollapsiblePane)
|
||||||
DECLARE_EVENT_TABLE()
|
DECLARE_EVENT_TABLE()
|
||||||
};
|
};
|
||||||
|
@@ -52,8 +52,21 @@ IMPLEMENT_DYNAMIC_CLASS(wxCollapsiblePaneEvent, wxCommandEvent)
|
|||||||
BEGIN_EVENT_TABLE(wxGenericCollapsiblePane, wxControl)
|
BEGIN_EVENT_TABLE(wxGenericCollapsiblePane, wxControl)
|
||||||
EVT_BUTTON(wxID_ANY, wxGenericCollapsiblePane::OnButton)
|
EVT_BUTTON(wxID_ANY, wxGenericCollapsiblePane::OnButton)
|
||||||
EVT_SIZE(wxGenericCollapsiblePane::OnSize)
|
EVT_SIZE(wxGenericCollapsiblePane::OnSize)
|
||||||
|
|
||||||
|
WX_EVENT_TABLE_CONTROL_CONTAINER(wxGenericCollapsiblePane)
|
||||||
END_EVENT_TABLE()
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
|
WX_DELEGATE_TO_CONTROL_CONTAINER(wxGenericCollapsiblePane, wxControl)
|
||||||
|
|
||||||
|
void wxGenericCollapsiblePane::Init()
|
||||||
|
{
|
||||||
|
WX_INIT_CONTROL_CONTAINER();
|
||||||
|
|
||||||
|
m_pButton = NULL;
|
||||||
|
m_pPane = NULL;
|
||||||
|
m_pStaticLine = NULL;
|
||||||
|
m_sz = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
bool wxGenericCollapsiblePane::Create(wxWindow *parent,
|
bool wxGenericCollapsiblePane::Create(wxWindow *parent,
|
||||||
wxWindowID id,
|
wxWindowID id,
|
||||||
|
Reference in New Issue
Block a user