// get the size which the list control should have
virtual wxSize GetControllerSize() const;
+ // return the page corresponding to the tab at the specified position
+ virtual int HitTest(const wxPoint& pt, long *flags = NULL) const;
+
// event handlers
void OnListSelected(wxListEvent& event);
void OnSize(wxSizeEvent& event);
{
}
+ wxListbookEvent(const wxListbookEvent& event)
+ : wxBookCtrlBaseEvent(event)
+ {
+ }
+
+ virtual wxEvent *Clone() const { return new wxListbookEvent(*this); }
+
private:
- DECLARE_DYNAMIC_CLASS_NO_COPY(wxListbookEvent)
+ DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxListbookEvent)
};
extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED;