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 // ----------------------------------------------------------------------------
26 // ----------------------------------------------------------------------------
28 class WXDLLEXPORT wxListbook
: public wxBookCtrlBase
36 wxListbook(wxWindow
*parent
,
38 const wxPoint
& pos
= wxDefaultPosition
,
39 const wxSize
& size
= wxDefaultSize
,
41 const wxString
& name
= wxEmptyString
)
45 (void)Create(parent
, id
, pos
, size
, style
, name
);
49 bool Create(wxWindow
*parent
,
51 const wxPoint
& pos
= wxDefaultPosition
,
52 const wxSize
& size
= wxDefaultSize
,
54 const wxString
& name
= wxEmptyString
);
57 virtual int GetSelection() const;
58 virtual bool SetPageText(size_t n
, const wxString
& strText
);
59 virtual wxString
GetPageText(size_t n
) const;
60 virtual int GetPageImage(size_t n
) const;
61 virtual bool SetPageImage(size_t n
, int imageId
);
62 virtual wxSize
CalcSizeFromPage(const wxSize
& sizePage
) const;
63 virtual bool InsertPage(size_t n
,
68 virtual int SetSelection(size_t n
);
69 virtual void SetImageList(wxImageList
*imageList
);
71 virtual bool DeleteAllPages();
73 wxListView
* GetListView() const { return (wxListView
*)m_bookctrl
; }
76 virtual wxWindow
*DoRemovePage(size_t page
);
78 // get the size which the list control should have
79 virtual wxSize
GetControllerSize() const;
81 // return the page corresponding to the tab at the specified position
82 virtual int HitTest(const wxPoint
& pt
, long *flags
= NULL
) const;
85 void OnListSelected(wxListEvent
& event
);
86 void OnSize(wxSizeEvent
& event
);
88 // the currently selected page or wxNOT_FOUND if none
92 // common part of all constructors
96 DECLARE_DYNAMIC_CLASS_NO_COPY(wxListbook
)
99 // ----------------------------------------------------------------------------
100 // listbook event class and related stuff
101 // ----------------------------------------------------------------------------
103 class WXDLLEXPORT wxListbookEvent
: public wxBookCtrlBaseEvent
106 wxListbookEvent(wxEventType commandType
= wxEVT_NULL
, int id
= 0,
107 int nSel
= wxNOT_FOUND
, int nOldSel
= wxNOT_FOUND
)
108 : wxBookCtrlBaseEvent(commandType
, id
, nSel
, nOldSel
)
112 wxListbookEvent(const wxListbookEvent
& event
)
113 : wxBookCtrlBaseEvent(event
)
117 virtual wxEvent
*Clone() const { return new wxListbookEvent(*this); }
120 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxListbookEvent
)
123 extern WXDLLIMPEXP_CORE
const wxEventType wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
;
124 extern WXDLLIMPEXP_CORE
const wxEventType wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
;
126 typedef void (wxEvtHandler::*wxListbookEventFunction
)(wxListbookEvent
&);
128 #define wxListbookEventHandler(func) \
129 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxListbookEventFunction, &func)
131 #define EVT_LISTBOOK_PAGE_CHANGED(winid, fn) \
132 wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, winid, wxListbookEventHandler(fn))
134 #define EVT_LISTBOOK_PAGE_CHANGING(winid, fn) \
135 wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, winid, wxListbookEventHandler(fn))
137 #endif // wxUSE_LISTBOOK
139 #endif // _WX_LISTBOOK_H_