X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4b90e06ee5a62dd66170cdf83f2f44d12fa68434..508d12b2242e0d96c6fb5dc7d9c3ea2aac553603:/samples/widgets/widgets.h diff --git a/samples/widgets/widgets.h b/samples/widgets/widgets.h index 84fd2abc33..e717e5ad08 100644 --- a/samples/widgets/widgets.h +++ b/samples/widgets/widgets.h @@ -12,18 +12,22 @@ #ifndef _WX_SAMPLE_WIDGETS_H_ #define _WX_SAMPLE_WIDGETS_H_ -#if wxUSE_TREEBOOK && !defined(__WXHANDHELD__) && !defined(__WXPM__) +#if wxUSE_TREEBOOK && !defined(__WXHANDHELD__) #include "wx/treebook.h" #define USE_TREEBOOK 1 #define WidgetsBookCtrl wxTreebook #define WidgetsBookCtrlEvent wxTreebookEvent - #define EVT_WIDGETS_PAGE_CHANGED(id,func) EVT_TREEBOOK_PAGE_CHANGED(id,func) + #define EVT_WIDGETS_PAGE_CHANGING(id,func) EVT_TREEBOOK_PAGE_CHANGING(id,func) + #define wxEVT_COMMAND_WIDGETS_PAGE_CHANGED wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED + #define wxWidgetsbookEventHandler(func) wxTreebookEventHandler(func) #else #include "wx/bookctrl.h" #define USE_TREEBOOK 0 #define WidgetsBookCtrl wxBookCtrl #define WidgetsBookCtrlEvent wxBookCtrlEvent - #define EVT_WIDGETS_PAGE_CHANGED(id,func) EVT_BOOKCTRL_PAGE_CHANGED(id,func) + #define EVT_WIDGETS_PAGE_CHANGING(id,func) EVT_BOOKCTRL_PAGE_CHANGING(id,func) + #define wxEVT_COMMAND_WIDGETS_PAGE_CHANGED wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGED + #define wxWidgetsbookEventHandler(func) wxBookctrlEventHandler(func) #endif #if wxUSE_LOG && !defined(__WXHANDHELD__) @@ -36,6 +40,7 @@ #define USE_ICONS_IN_BOOK 0 #else #define USE_ICONS_IN_BOOK 1 + #define ICON_SIZE 16 #endif class WXDLLEXPORT wxCheckBox;