Add wxRTTI info for the event class
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40041 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
febb39df07
commit
af672b5ae8
2 changed files with 12 additions and 2 deletions
|
|
@ -382,6 +382,9 @@ public:
|
|||
void SetFrame(wxFrame* frame);
|
||||
wxFrame* GetFrame() const;
|
||||
|
||||
#ifdef SWIG
|
||||
%disownarg( wxDockArt* art_provider );
|
||||
#endif
|
||||
void SetArtProvider(wxDockArt* art_provider);
|
||||
wxDockArt* GetArtProvider() const;
|
||||
|
||||
|
|
@ -397,7 +400,7 @@ public:
|
|||
const wxString& caption = wxEmptyString);
|
||||
|
||||
bool InsertPane(wxWindow* window,
|
||||
const wxPaneInfo& pane_info,
|
||||
const wxPaneInfo& insert_location,
|
||||
int insert_level = wxAUI_INSERT_PANE);
|
||||
|
||||
bool DetachPane(wxWindow* window);
|
||||
|
|
@ -524,7 +527,7 @@ protected:
|
|||
class WXDLLIMPEXP_AUI wxFrameManagerEvent : public wxEvent
|
||||
{
|
||||
public:
|
||||
wxFrameManagerEvent(wxEventType type) : wxEvent(0, type)
|
||||
wxFrameManagerEvent(wxEventType type=wxEVT_NULL) : wxEvent(0, type)
|
||||
{
|
||||
pane = NULL;
|
||||
button = 0;
|
||||
|
|
@ -557,6 +560,11 @@ public:
|
|||
int button;
|
||||
bool veto_flag;
|
||||
bool canveto_flag;
|
||||
|
||||
#ifndef SWIG
|
||||
private:
|
||||
DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxFrameManagerEvent)
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -61,6 +61,8 @@ DEFINE_EVENT_TYPE(wxEVT_AUI_PANECLOSE)
|
|||
#include "wx/mac/private.h"
|
||||
#endif
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxFrameManagerEvent, wxEvent)
|
||||
|
||||
|
||||
// -- static utility functions --
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue