Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions wxLua/bindings/wxwidgets/wxadv_grid.i
Original file line number Diff line number Diff line change
Expand Up @@ -453,8 +453,10 @@ class %delete wxGridStringTable : public wxGridTableBase

enum wxGridTableRequest
{
#if WXWIN_COMPATIBILITY_3_0
wxGRIDTABLE_REQUEST_VIEW_GET_VALUES,
wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES,
#endif
wxGRIDTABLE_NOTIFY_ROWS_INSERTED,
wxGRIDTABLE_NOTIFY_ROWS_APPENDED,
wxGRIDTABLE_NOTIFY_ROWS_DELETED,
Expand Down
8 changes: 7 additions & 1 deletion wxLua/bindings/wxwidgets/wxaui_aui.i
Original file line number Diff line number Diff line change
Expand Up @@ -370,10 +370,16 @@ class %delete wxAuiNotebookPageArray
wxAuiNotebookPageArray();
wxAuiNotebookPageArray(const wxAuiNotebookPageArray& array);

#if WXWIN_COMPATIBILITY_3_0
void Add(wxAuiNotebookPage* page);
void Insert(wxAuiNotebookPage* page, int nIndex);
#endif
#if !WXWIN_COMPATIBILITY_3_0
void Add(wxAuiNotebookPage& page);
void Insert(wxAuiNotebookPage& page, int nIndex);
#endif
void Clear();
int GetCount() const;
void Insert(wxAuiNotebookPage* page, int nIndex);
bool IsEmpty();
wxAuiNotebookPage Item(size_t nIndex) const;
void RemoveAt(size_t nIndex);
Expand Down
6 changes: 5 additions & 1 deletion wxLua/bindings/wxwidgets/wxcore_gdi.i
Original file line number Diff line number Diff line change
Expand Up @@ -1052,9 +1052,11 @@ class %delete wxIcon : public wxGDIObject
int GetWidth();
%wxchkver_2_9_5 bool IsOk() const;
%wxchkver_2_9_5 bool LoadFile(const wxString& name, wxBitmapType type = wxICON_DEFAULT_TYPE, int desiredWidth = -1, int desiredHeight = -1);
#if WXWIN_COMPATIBILITY_3_0
void SetDepth(int d);
void SetHeight(int h);
void SetWidth(int w);
#endif
wxIcon& operator=(const wxIcon& i) const;
!%wxchkver_2_9_5 bool LoadFile(const wxString& name, wxBitmapType flag);
bool Ok(); // %add for compatibility with earlier versions of wxlua
Expand Down Expand Up @@ -1149,11 +1151,13 @@ class %delete wxBitmap : public wxGDIObject
%wxchkver_3_0_0 static wxBitmap NewFromPNGData(const void* data, size_t size);
// %win static bool RemoveHandler(const wxString& name); // no support for wxBitmapHandler
%wxchkver_3_0_0 bool SaveFile(const wxString& name, wxBitmapType type, const wxPalette* palette = NULL) const;
#if WXWIN_COMPATIBILITY_3_0
void SetDepth(int depth);
void SetHeight(int height);
void SetWidth(int width);
#endif
void SetMask(%ungc wxMask* mask);
%win void SetPalette(const wxPalette& palette);
void SetWidth(int width);
!%wxchkver_3_0_0 bool SaveFile(const wxString& name, wxBitmapType type, wxPalette* palette = NULL);
!%wxchkver_3_0_0 wxBitmap& operator=(const wxBitmap& b) const;
!%wxchkver_3_1_2 wxBitmap(const wxImage &image, int depth = wxBITMAP_SCREEN_DEPTH);
Expand Down
5 changes: 4 additions & 1 deletion wxLua/bindings/wxwidgets/wxcore_image.i
Original file line number Diff line number Diff line change
Expand Up @@ -665,8 +665,11 @@ class wxArtProvider : public wxObject

static wxBitmap GetBitmap(const wxString& id, const wxString& client = wxART_OTHER, const wxSize& size = wxDefaultSize);
static wxIcon GetIcon(const wxString& id, const wxString& client = wxART_OTHER, const wxSize& size = wxDefaultSize);
static wxSize GetSizeHint(const wxString& client, bool platform_dependent = false);
!%wxchkver_3_1_6 static wxSize GetSizeHint(const wxString& client, bool platform_dependent = false);
%wxchkver_3_1_6 static wxSize GetSizeHint(const wxString& client, wxWindow *win = nullptr);
#if WXWIN_COMPATIBILITY_3_0
%wxchkver_3_1 static void RescaleBitmap(wxBitmap& bmp, const wxSize& sizeNeeded);
#endif
};

class %delete wxLuaArtProvider : public wxArtProvider
Expand Down
5 changes: 4 additions & 1 deletion wxLua/modules/wxbind/src/wxadv_bind.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27296,9 +27296,12 @@ wxLuaBindNumber* wxLuaGetDefineList_wxadv(size_t &count)
{ "wxGRIDTABLE_NOTIFY_ROWS_APPENDED", wxGRIDTABLE_NOTIFY_ROWS_APPENDED },
{ "wxGRIDTABLE_NOTIFY_ROWS_DELETED", wxGRIDTABLE_NOTIFY_ROWS_DELETED },
{ "wxGRIDTABLE_NOTIFY_ROWS_INSERTED", wxGRIDTABLE_NOTIFY_ROWS_INSERTED },
#endif // wxLUA_USE_wxGrid && wxUSE_GRID

#if (WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxGrid && wxUSE_GRID)
{ "wxGRIDTABLE_REQUEST_VIEW_GET_VALUES", wxGRIDTABLE_REQUEST_VIEW_GET_VALUES },
{ "wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES", wxGRIDTABLE_REQUEST_VIEW_SEND_VALUES },
#endif // wxLUA_USE_wxGrid && wxUSE_GRID
#endif // (WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxGrid && wxUSE_GRID)

#if (wxCHECK_VERSION(2,8,8)) && (wxLUA_USE_wxGrid && wxUSE_GRID)
{ "wxGRID_AUTOSIZE", wxGRID_AUTOSIZE },
Expand Down
93 changes: 89 additions & 4 deletions wxLua/modules/wxbind/src/wxaui_bind.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4161,9 +4161,29 @@ int wxAuiNotebookPage_methodCount = sizeof(wxAuiNotebookPage_methods)/sizeof(wxL
// Lua MetaTable Tag for Class 'wxAuiNotebookPageArray'
int wxluatype_wxAuiNotebookPageArray = WXLUA_TUNKNOWN;

#if ((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)
static wxLuaArgType s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Add1[] = { &wxluatype_wxAuiNotebookPageArray, &wxluatype_wxAuiNotebookPage, NULL };
static int LUACALL wxLua_wxAuiNotebookPageArray_Add1(lua_State *L);
// static wxLuaBindCFunc s_wxluafunc_wxLua_wxAuiNotebookPageArray_Add1[1] = {{ wxLua_wxAuiNotebookPageArray_Add1, WXLUAMETHOD_METHOD, 2, 2, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Add1 }};
// void Add(wxAuiNotebookPage& page);
static int LUACALL wxLua_wxAuiNotebookPageArray_Add1(lua_State *L)
{
// wxAuiNotebookPage page
wxAuiNotebookPage * page = (wxAuiNotebookPage *)wxluaT_getuserdatatype(L, 2, wxluatype_wxAuiNotebookPage);
// get this
wxAuiNotebookPageArray * self = (wxAuiNotebookPageArray *)wxluaT_getuserdatatype(L, 1, wxluatype_wxAuiNotebookPageArray);
// call Add
self->Add(*page);

return 0;
}

#endif // ((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)

#if ((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)
static wxLuaArgType s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Add[] = { &wxluatype_wxAuiNotebookPageArray, &wxluatype_wxAuiNotebookPage, NULL };
static int LUACALL wxLua_wxAuiNotebookPageArray_Add(lua_State *L);
static wxLuaBindCFunc s_wxluafunc_wxLua_wxAuiNotebookPageArray_Add[1] = {{ wxLua_wxAuiNotebookPageArray_Add, WXLUAMETHOD_METHOD, 2, 2, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Add }};
// static wxLuaBindCFunc s_wxluafunc_wxLua_wxAuiNotebookPageArray_Add[1] = {{ wxLua_wxAuiNotebookPageArray_Add, WXLUAMETHOD_METHOD, 2, 2, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Add }};
// void Add(wxAuiNotebookPage* page);
static int LUACALL wxLua_wxAuiNotebookPageArray_Add(lua_State *L)
{
Expand All @@ -4177,6 +4197,8 @@ static int LUACALL wxLua_wxAuiNotebookPageArray_Add(lua_State *L)
return 0;
}

#endif // ((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)

static wxLuaArgType s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Clear[] = { &wxluatype_wxAuiNotebookPageArray, NULL };
static int LUACALL wxLua_wxAuiNotebookPageArray_Clear(lua_State *L);
static wxLuaBindCFunc s_wxluafunc_wxLua_wxAuiNotebookPageArray_Clear[1] = {{ wxLua_wxAuiNotebookPageArray_Clear, WXLUAMETHOD_METHOD, 1, 1, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Clear }};
Expand Down Expand Up @@ -4215,9 +4237,32 @@ if ((double)(lua_Integer)returns == (double)returns) {
return 1;
}


#if ((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)
static wxLuaArgType s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Insert1[] = { &wxluatype_wxAuiNotebookPageArray, &wxluatype_wxAuiNotebookPage, &wxluatype_TNUMBER, NULL };
static int LUACALL wxLua_wxAuiNotebookPageArray_Insert1(lua_State *L);
// static wxLuaBindCFunc s_wxluafunc_wxLua_wxAuiNotebookPageArray_Insert1[1] = {{ wxLua_wxAuiNotebookPageArray_Insert1, WXLUAMETHOD_METHOD, 3, 3, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Insert1 }};
// void Insert(wxAuiNotebookPage& page, int nIndex);
static int LUACALL wxLua_wxAuiNotebookPageArray_Insert1(lua_State *L)
{
// int nIndex
int nIndex = (int)wxlua_getnumbertype(L, 3);
// wxAuiNotebookPage page
wxAuiNotebookPage * page = (wxAuiNotebookPage *)wxluaT_getuserdatatype(L, 2, wxluatype_wxAuiNotebookPage);
// get this
wxAuiNotebookPageArray * self = (wxAuiNotebookPageArray *)wxluaT_getuserdatatype(L, 1, wxluatype_wxAuiNotebookPageArray);
// call Insert
self->Insert(*page, nIndex);

return 0;
}

#endif // ((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)

#if ((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)
static wxLuaArgType s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Insert[] = { &wxluatype_wxAuiNotebookPageArray, &wxluatype_wxAuiNotebookPage, &wxluatype_TNUMBER, NULL };
static int LUACALL wxLua_wxAuiNotebookPageArray_Insert(lua_State *L);
static wxLuaBindCFunc s_wxluafunc_wxLua_wxAuiNotebookPageArray_Insert[1] = {{ wxLua_wxAuiNotebookPageArray_Insert, WXLUAMETHOD_METHOD, 3, 3, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Insert }};
// static wxLuaBindCFunc s_wxluafunc_wxLua_wxAuiNotebookPageArray_Insert[1] = {{ wxLua_wxAuiNotebookPageArray_Insert, WXLUAMETHOD_METHOD, 3, 3, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Insert }};
// void Insert(wxAuiNotebookPage* page, int nIndex);
static int LUACALL wxLua_wxAuiNotebookPageArray_Insert(lua_State *L)
{
Expand All @@ -4233,6 +4278,8 @@ static int LUACALL wxLua_wxAuiNotebookPageArray_Insert(lua_State *L)
return 0;
}

#endif // ((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)

static wxLuaArgType s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_IsEmpty[] = { &wxluatype_wxAuiNotebookPageArray, NULL };
static int LUACALL wxLua_wxAuiNotebookPageArray_IsEmpty(lua_State *L);
static wxLuaBindCFunc s_wxluafunc_wxLua_wxAuiNotebookPageArray_IsEmpty[1] = {{ wxLua_wxAuiNotebookPageArray_IsEmpty, WXLUAMETHOD_METHOD, 1, 1, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_IsEmpty }};
Expand Down Expand Up @@ -4325,6 +4372,37 @@ static int LUACALL wxLua_wxAuiNotebookPageArray_constructor(lua_State *L)



#if (((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))||(((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))
// function overload table
static wxLuaBindCFunc s_wxluafunc_wxLua_wxAuiNotebookPageArray_Add_overload[] =
{

#if ((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)
{ wxLua_wxAuiNotebookPageArray_Add1, WXLUAMETHOD_METHOD, 2, 2, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Add1 },
#endif // ((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)

#if ((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)
{ wxLua_wxAuiNotebookPageArray_Add, WXLUAMETHOD_METHOD, 2, 2, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Add },
#endif // ((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)
};
static int s_wxluafunc_wxLua_wxAuiNotebookPageArray_Add_overload_count = sizeof(s_wxluafunc_wxLua_wxAuiNotebookPageArray_Add_overload)/sizeof(wxLuaBindCFunc);

// function overload table
static wxLuaBindCFunc s_wxluafunc_wxLua_wxAuiNotebookPageArray_Insert_overload[] =
{

#if ((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)
{ wxLua_wxAuiNotebookPageArray_Insert1, WXLUAMETHOD_METHOD, 3, 3, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Insert1 },
#endif // ((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)

#if ((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)
{ wxLua_wxAuiNotebookPageArray_Insert, WXLUAMETHOD_METHOD, 3, 3, s_wxluatypeArray_wxLua_wxAuiNotebookPageArray_Insert },
#endif // ((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)
};
static int s_wxluafunc_wxLua_wxAuiNotebookPageArray_Insert_overload_count = sizeof(s_wxluafunc_wxLua_wxAuiNotebookPageArray_Insert_overload)/sizeof(wxLuaBindCFunc);

#endif // (((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))||(((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))

#if (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)
// function overload table
static wxLuaBindCFunc s_wxluafunc_wxLua_wxAuiNotebookPageArray_constructor_overload[] =
Expand All @@ -4344,10 +4422,17 @@ void wxLua_wxAuiNotebookPageArray_delete_function(void** p)

// Map Lua Class Methods to C Binding Functions
wxLuaBindMethod wxAuiNotebookPageArray_methods[] = {
{ "Add", WXLUAMETHOD_METHOD, s_wxluafunc_wxLua_wxAuiNotebookPageArray_Add, 1, NULL },
#if (((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))||(((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))
{ "Add", WXLUAMETHOD_METHOD, s_wxluafunc_wxLua_wxAuiNotebookPageArray_Add_overload, s_wxluafunc_wxLua_wxAuiNotebookPageArray_Add_overload_count, 0 },
#endif // (((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))||(((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))

{ "Clear", WXLUAMETHOD_METHOD, s_wxluafunc_wxLua_wxAuiNotebookPageArray_Clear, 1, NULL },
{ "GetCount", WXLUAMETHOD_METHOD, s_wxluafunc_wxLua_wxAuiNotebookPageArray_GetCount, 1, NULL },
{ "Insert", WXLUAMETHOD_METHOD, s_wxluafunc_wxLua_wxAuiNotebookPageArray_Insert, 1, NULL },

#if (((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))||(((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))
{ "Insert", WXLUAMETHOD_METHOD, s_wxluafunc_wxLua_wxAuiNotebookPageArray_Insert_overload, s_wxluafunc_wxLua_wxAuiNotebookPageArray_Insert_overload_count, 0 },
#endif // (((!WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))||(((WXWIN_COMPATIBILITY_3_0) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI)) && (wxLUA_USE_wxAUI && wxCHECK_VERSION(2,8,0) && wxUSE_AUI))

{ "IsEmpty", WXLUAMETHOD_METHOD, s_wxluafunc_wxLua_wxAuiNotebookPageArray_IsEmpty, 1, NULL },
{ "Item", WXLUAMETHOD_METHOD, s_wxluafunc_wxLua_wxAuiNotebookPageArray_Item, 1, NULL },
{ "RemoveAt", WXLUAMETHOD_METHOD, s_wxluafunc_wxLua_wxAuiNotebookPageArray_RemoveAt, 1, NULL },
Expand Down
Loading