summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
86110e1)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34972
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
applied to the wxCaptionBar in question, meaning it will be created using the default internals. When setting i.e
the color, font or panel style, these styles become active to be used.
*/
applied to the wxCaptionBar in question, meaning it will be created using the default internals. When setting i.e
the color, font or panel style, these styles become active to be used.
*/
+class WXDLLIMPEXP_FOLDBAR wxCaptionBarStyle
{
private:
// boolean flags for default transparency on styles
{
private:
// boolean flags for default transparency on styles
};
#include <wx/dynarray.h>
};
#include <wx/dynarray.h>
-WX_DEFINE_ARRAY_PTR(wxFoldPanelItem *, wxFoldPanelItemArray);
+WX_DEFINE_ARRAY_WITH_DECL_PTR(wxFoldPanelItem *, wxFoldPanelItemArray, class WXDLLIMPEXP_FOLDBAR);
/** \class wxFoldPanelBar
The wxFoldPanelBar is a class which can maintain a list of collapsable panels. Once a panel is collapsed, only
/** \class wxFoldPanelBar
The wxFoldPanelBar is a class which can maintain a list of collapsable panels. Once a panel is collapsed, only
class WXDLLIMPEXP_FOLDBAR wxFoldPanelBar: public wxPanel
{
private:
class WXDLLIMPEXP_FOLDBAR wxFoldPanelBar: public wxPanel
{
private:
- DECLARE_CLASS( wxFoldPanelBar )
+ DECLARE_DYNAMIC_CLASS( wxFoldPanelBar )
DECLARE_EVENT_TABLE()
wxImageList *m_images;
DECLARE_EVENT_TABLE()
wxImageList *m_images;
};
#include <wx/dynarray.h>
};
#include <wx/dynarray.h>
-WX_DECLARE_OBJARRAY(wxFoldWindowItem, wxFoldWindowItemArray);
+WX_DECLARE_OBJARRAY_WITH_DECL(wxFoldWindowItem, wxFoldWindowItemArray, class WXDLLIMPEXP_FOLDBAR);
// wxFoldPanelBar
//----------------------------------------------------------------------------
// wxFoldPanelBar
//----------------------------------------------------------------------------
-IMPLEMENT_CLASS( wxFoldPanelBar, wxPanel )
+IMPLEMENT_DYNAMIC_CLASS( wxFoldPanelBar, wxPanel )
BEGIN_EVENT_TABLE(wxFoldPanelBar,wxPanel)
EVT_SIZE(wxFoldPanelBar::OnSizePanel)
BEGIN_EVENT_TABLE(wxFoldPanelBar,wxPanel)
EVT_SIZE(wxFoldPanelBar::OnSizePanel)
END_EVENT_TABLE()
wxFoldPanelBar::wxFoldPanelBar()
END_EVENT_TABLE()
wxFoldPanelBar::wxFoldPanelBar()
+ : wxPanel()
+ , m_foldPanel(NULL)
+ , m_bottomPanel(NULL)
+ , m_controlCreated(false)
{
}
wxFoldPanelBar::wxFoldPanelBar( wxWindow *parent, wxWindowID id, const wxPoint &position,
const wxSize& size, long style, long extraStyle)
{
}
wxFoldPanelBar::wxFoldPanelBar( wxWindow *parent, wxWindowID id, const wxPoint &position,
const wxSize& size, long style, long extraStyle)
+ : wxPanel()
+ , m_foldPanel(NULL)
, m_bottomPanel(NULL)
, m_controlCreated(false)
{
, m_bottomPanel(NULL)
, m_controlCreated(false)
{