]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/listbook.h
Enable variadic macros for VC9 and later.
[wxWidgets.git] / include / wx / listbook.h
... / ...
CommitLineData
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/listbook.h
3// Purpose: wxListbook: wxListCtrl and wxNotebook combination
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 19.08.03
7// RCS-ID: $Id$
8// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_LISTBOOK_H_
13#define _WX_LISTBOOK_H_
14
15#include "wx/defs.h"
16
17#if wxUSE_LISTBOOK
18
19#include "wx/bookctrl.h"
20#include "wx/containr.h"
21
22class WXDLLIMPEXP_FWD_CORE wxListView;
23class WXDLLIMPEXP_FWD_CORE wxListEvent;
24
25wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, wxBookCtrlEvent );
26wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, wxBookCtrlEvent );
27
28// wxListbook flags
29#define wxLB_DEFAULT wxBK_DEFAULT
30#define wxLB_TOP wxBK_TOP
31#define wxLB_BOTTOM wxBK_BOTTOM
32#define wxLB_LEFT wxBK_LEFT
33#define wxLB_RIGHT wxBK_RIGHT
34#define wxLB_ALIGN_MASK wxBK_ALIGN_MASK
35
36// ----------------------------------------------------------------------------
37// wxListbook
38// ----------------------------------------------------------------------------
39
40class WXDLLIMPEXP_CORE wxListbook : public wxNavigationEnabled<wxBookCtrlBase>
41{
42public:
43 wxListbook() { }
44
45 wxListbook(wxWindow *parent,
46 wxWindowID id,
47 const wxPoint& pos = wxDefaultPosition,
48 const wxSize& size = wxDefaultSize,
49 long style = 0,
50 const wxString& name = wxEmptyString)
51 {
52 (void)Create(parent, id, pos, size, style, name);
53 }
54
55 // quasi ctor
56 bool Create(wxWindow *parent,
57 wxWindowID id,
58 const wxPoint& pos = wxDefaultPosition,
59 const wxSize& size = wxDefaultSize,
60 long style = 0,
61 const wxString& name = wxEmptyString);
62
63
64 // overridden base class methods
65 virtual bool SetPageText(size_t n, const wxString& strText);
66 virtual wxString GetPageText(size_t n) const;
67 virtual int GetPageImage(size_t n) const;
68 virtual bool SetPageImage(size_t n, int imageId);
69 virtual bool InsertPage(size_t n,
70 wxWindow *page,
71 const wxString& text,
72 bool bSelect = false,
73 int imageId = NO_IMAGE);
74 virtual int SetSelection(size_t n) { return DoSetSelection(n, SetSelection_SendEvent); }
75 virtual int ChangeSelection(size_t n) { return DoSetSelection(n); }
76 virtual int HitTest(const wxPoint& pt, long *flags = NULL) const;
77 virtual void SetImageList(wxImageList *imageList);
78
79 virtual bool DeleteAllPages();
80
81 wxListView* GetListView() const { return (wxListView*)m_bookctrl; }
82
83protected:
84 virtual wxWindow *DoRemovePage(size_t page);
85
86 void UpdateSelectedPage(size_t newsel);
87
88 wxBookCtrlEvent* CreatePageChangingEvent() const;
89 void MakeChangedEvent(wxBookCtrlEvent &event);
90
91 // get flags for different list control modes
92 long GetListCtrlIconViewFlags() const;
93 long GetListCtrlReportViewFlags() const;
94
95 // event handlers
96 void OnListSelected(wxListEvent& event);
97 void OnSize(wxSizeEvent& event);
98
99private:
100 // this should be called when we need to be relaid out
101 void UpdateSize();
102
103
104 DECLARE_EVENT_TABLE()
105 DECLARE_DYNAMIC_CLASS_NO_COPY(wxListbook)
106};
107
108// ----------------------------------------------------------------------------
109// listbook event class and related stuff
110// ----------------------------------------------------------------------------
111
112// wxListbookEvent is obsolete and defined for compatibility only (notice that
113// we use #define and not typedef to also keep compatibility with the existing
114// code which forward declares it)
115#define wxListbookEvent wxBookCtrlEvent
116typedef wxBookCtrlEventFunction wxListbookEventFunction;
117#define wxListbookEventHandler(func) wxBookCtrlEventHandler(func)
118
119#define EVT_LISTBOOK_PAGE_CHANGED(winid, fn) \
120 wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, winid, wxBookCtrlEventHandler(fn))
121
122#define EVT_LISTBOOK_PAGE_CHANGING(winid, fn) \
123 wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, winid, wxBookCtrlEventHandler(fn))
124
125#endif // wxUSE_LISTBOOK
126
127#endif // _WX_LISTBOOK_H_