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
;
28 #define wxLB_DEFAULT wxBK_DEFAULT
29 #define wxLB_TOP wxBK_TOP
30 #define wxLB_BOTTOM wxBK_BOTTOM
31 #define wxLB_LEFT wxBK_LEFT
32 #define wxLB_RIGHT wxBK_RIGHT
33 #define wxLB_ALIGN_MASK wxBK_ALIGN_MASK
35 // ----------------------------------------------------------------------------
37 // ----------------------------------------------------------------------------
39 class WXDLLEXPORT wxListbook
: public wxBookCtrlBase
47 wxListbook(wxWindow
*parent
,
49 const wxPoint
& pos
= wxDefaultPosition
,
50 const wxSize
& size
= wxDefaultSize
,
52 const wxString
& name
= wxEmptyString
)
56 (void)Create(parent
, id
, pos
, size
, style
, name
);
60 bool Create(wxWindow
*parent
,
62 const wxPoint
& pos
= wxDefaultPosition
,
63 const wxSize
& size
= wxDefaultSize
,
65 const wxString
& name
= wxEmptyString
);
68 virtual int GetSelection() const;
69 virtual bool SetPageText(size_t n
, const wxString
& strText
);
70 virtual wxString
GetPageText(size_t n
) const;
71 virtual int GetPageImage(size_t n
) const;
72 virtual bool SetPageImage(size_t n
, int imageId
);
73 virtual wxSize
CalcSizeFromPage(const wxSize
& sizePage
) const;
74 virtual bool InsertPage(size_t n
,
79 virtual int SetSelection(size_t n
) { return DoSetSelection(n
, SetSelection_SendEvent
); }
80 virtual int ChangeSelection(size_t n
) { return DoSetSelection(n
); }
81 virtual void SetImageList(wxImageList
*imageList
);
83 virtual bool DeleteAllPages();
85 wxListView
* GetListView() const { return (wxListView
*)m_bookctrl
; }
88 virtual wxWindow
*DoRemovePage(size_t page
);
90 // get the size which the list control should have
91 virtual wxSize
GetControllerSize() const;
93 // return the page corresponding to the tab at the specified position
94 virtual int HitTest(const wxPoint
& pt
, long *flags
= NULL
) const;
96 void UpdateSelectedPage(size_t newsel
);
98 wxBookCtrlBaseEvent
* CreatePageChangingEvent() const;
99 void MakeChangedEvent(wxBookCtrlBaseEvent
&event
);
102 void OnListSelected(wxListEvent
& event
);
103 void OnSize(wxSizeEvent
& event
);
105 // the currently selected page or wxNOT_FOUND if none
109 // common part of all constructors
112 DECLARE_EVENT_TABLE()
113 DECLARE_DYNAMIC_CLASS_NO_COPY(wxListbook
)
116 // ----------------------------------------------------------------------------
117 // listbook event class and related stuff
118 // ----------------------------------------------------------------------------
120 class WXDLLEXPORT wxListbookEvent
: public wxBookCtrlBaseEvent
123 wxListbookEvent(wxEventType commandType
= wxEVT_NULL
, int id
= 0,
124 int nSel
= wxNOT_FOUND
, int nOldSel
= wxNOT_FOUND
)
125 : wxBookCtrlBaseEvent(commandType
, id
, nSel
, nOldSel
)
129 wxListbookEvent(const wxListbookEvent
& event
)
130 : wxBookCtrlBaseEvent(event
)
134 virtual wxEvent
*Clone() const { return new wxListbookEvent(*this); }
137 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxListbookEvent
)
140 typedef void (wxEvtHandler::*wxListbookEventFunction
)(wxListbookEvent
&);
142 #define wxListbookEventHandler(func) \
143 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxListbookEventFunction, &func)
145 #define EVT_LISTBOOK_PAGE_CHANGED(winid, fn) \
146 wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, winid, wxListbookEventHandler(fn))
148 #define EVT_LISTBOOK_PAGE_CHANGING(winid, fn) \
149 wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, winid, wxListbookEventHandler(fn))
151 #endif // wxUSE_LISTBOOK
153 #endif // _WX_LISTBOOK_H_