1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxListbook: wxListCtrl and wxNotebook combination
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_LISTBOOK_H_
13 #define _WX_LISTBOOK_H_
19 #include "wx/bookctrl.h"
21 class WXDLLEXPORT wxListView
;
22 class WXDLLEXPORT wxListEvent
;
24 extern WXDLLIMPEXP_CORE
const wxEventType wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
;
25 extern WXDLLIMPEXP_CORE
const wxEventType wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
;
27 // ----------------------------------------------------------------------------
29 // ----------------------------------------------------------------------------
31 class WXDLLEXPORT wxListbook
: public wxBookCtrlBase
39 wxListbook(wxWindow
*parent
,
41 const wxPoint
& pos
= wxDefaultPosition
,
42 const wxSize
& size
= wxDefaultSize
,
44 const wxString
& name
= wxEmptyString
)
48 (void)Create(parent
, id
, pos
, size
, style
, name
);
52 bool Create(wxWindow
*parent
,
54 const wxPoint
& pos
= wxDefaultPosition
,
55 const wxSize
& size
= wxDefaultSize
,
57 const wxString
& name
= wxEmptyString
);
60 virtual int GetSelection() const;
61 virtual bool SetPageText(size_t n
, const wxString
& strText
);
62 virtual wxString
GetPageText(size_t n
) const;
63 virtual int GetPageImage(size_t n
) const;
64 virtual bool SetPageImage(size_t n
, int imageId
);
65 virtual wxSize
CalcSizeFromPage(const wxSize
& sizePage
) const;
66 virtual bool InsertPage(size_t n
,
71 virtual int SetSelection(size_t n
) { return DoSetSelection(n
, SetSelection_SendEvent
); }
72 virtual int ChangeSelection(size_t n
) { return DoSetSelection(n
); }
73 virtual void SetImageList(wxImageList
*imageList
);
75 virtual bool DeleteAllPages();
77 wxListView
* GetListView() const { return (wxListView
*)m_bookctrl
; }
80 virtual wxWindow
*DoRemovePage(size_t page
);
82 // get the size which the list control should have
83 virtual wxSize
GetControllerSize() const;
85 // return the page corresponding to the tab at the specified position
86 virtual int HitTest(const wxPoint
& pt
, long *flags
= NULL
) const;
88 void UpdateSelectedPage(size_t newsel
);
90 wxBookCtrlBaseEvent
* CreatePageChangingEvent() const;
91 void MakeChangedEvent(wxBookCtrlBaseEvent
&event
);
94 void OnListSelected(wxListEvent
& event
);
95 void OnSize(wxSizeEvent
& event
);
97 // the currently selected page or wxNOT_FOUND if none
101 // common part of all constructors
104 DECLARE_EVENT_TABLE()
105 DECLARE_DYNAMIC_CLASS_NO_COPY(wxListbook
)
108 // ----------------------------------------------------------------------------
109 // listbook event class and related stuff
110 // ----------------------------------------------------------------------------
112 class WXDLLEXPORT wxListbookEvent
: public wxBookCtrlBaseEvent
115 wxListbookEvent(wxEventType commandType
= wxEVT_NULL
, int id
= 0,
116 int nSel
= wxNOT_FOUND
, int nOldSel
= wxNOT_FOUND
)
117 : wxBookCtrlBaseEvent(commandType
, id
, nSel
, nOldSel
)
121 wxListbookEvent(const wxListbookEvent
& event
)
122 : wxBookCtrlBaseEvent(event
)
126 virtual wxEvent
*Clone() const { return new wxListbookEvent(*this); }
129 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxListbookEvent
)
132 typedef void (wxEvtHandler::*wxListbookEventFunction
)(wxListbookEvent
&);
134 #define wxListbookEventHandler(func) \
135 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxListbookEventFunction, &func)
137 #define EVT_LISTBOOK_PAGE_CHANGED(winid, fn) \
138 wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, winid, wxListbookEventHandler(fn))
140 #define EVT_LISTBOOK_PAGE_CHANGING(winid, fn) \
141 wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, winid, wxListbookEventHandler(fn))
143 #endif // wxUSE_LISTBOOK
145 #endif // _WX_LISTBOOK_H_