wxWindow *page,
const wxString& text,
bool bSelect = false,
- int imageId = -1);
+ int imageId = NO_IMAGE);
virtual int SetSelection(size_t n)
{ return DoSetSelection(n, SetSelection_SendEvent); }
virtual int ChangeSelection(size_t n) { return DoSetSelection(n); }
// returns the choice control
wxChoice* GetChoiceCtrl() const { return (wxChoice*)m_bookctrl; }
+ // Override this to return true because the part of parent window
+ // background between our controlling wxChoice and the page area should
+ // show through.
+ virtual bool HasTransparentBackground() { return true; }
+
protected:
virtual void DoSetWindowVariant(wxWindowVariant variant);
// ----------------------------------------------------------------------------
// wxChoicebookEvent is obsolete and defined for compatibility only
-typedef wxBookCtrlEvent wxChoicebookEvent;
+#define wxChoicebookEvent wxBookCtrlEvent
typedef wxBookCtrlEventFunction wxChoicebookEventFunction;
#define wxChoicebookEventHandler(func) wxBookCtrlEventHandler(func)