]> git.saurik.com Git - wxWidgets.git/blame - include/wx/listbook.h
add wxPosixPermissions enumeration; it provides more readable synonims for wxS_I...
[wxWidgets.git] / include / wx / listbook.h
CommitLineData
e9c0df38
VZ
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$
77ffb593 8// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
65571936 9// Licence: wxWindows licence
e9c0df38
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_LISTBOOK_H_
13#define _WX_LISTBOOK_H_
14
e9c0df38
VZ
15#include "wx/defs.h"
16
17#if wxUSE_LISTBOOK
18
19#include "wx/bookctrl.h"
20
b5dbe15d
VS
21class WXDLLIMPEXP_FWD_CORE wxListView;
22class WXDLLIMPEXP_FWD_CORE wxListEvent;
ef0120c1 23
1d6fcbcc
VZ
24extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED;
25extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING;
26
90c0f63a
VZ
27// wxListbook flags
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
34
e9c0df38
VZ
35// ----------------------------------------------------------------------------
36// wxListbook
37// ----------------------------------------------------------------------------
38
53a2db12 39class WXDLLIMPEXP_CORE wxListbook : public wxBookCtrlBase
e9c0df38
VZ
40{
41public:
42 wxListbook()
43 {
44 Init();
45 }
46
47 wxListbook(wxWindow *parent,
48 wxWindowID id,
49 const wxPoint& pos = wxDefaultPosition,
50 const wxSize& size = wxDefaultSize,
51 long style = 0,
52 const wxString& name = wxEmptyString)
53 {
54 Init();
55
56 (void)Create(parent, id, pos, size, style, name);
57 }
58
59 // quasi ctor
60 bool Create(wxWindow *parent,
61 wxWindowID id,
62 const wxPoint& pos = wxDefaultPosition,
63 const wxSize& size = wxDefaultSize,
64 long style = 0,
65 const wxString& name = wxEmptyString);
66
67
bcbec865 68 // overridden base class methods
e9c0df38
VZ
69 virtual int GetSelection() const;
70 virtual bool SetPageText(size_t n, const wxString& strText);
71 virtual wxString GetPageText(size_t n) const;
72 virtual int GetPageImage(size_t n) const;
73 virtual bool SetPageImage(size_t n, int imageId);
74 virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
75 virtual bool InsertPage(size_t n,
76 wxWindow *page,
77 const wxString& text,
78 bool bSelect = false,
79 int imageId = -1);
1d6fcbcc
VZ
80 virtual int SetSelection(size_t n) { return DoSetSelection(n, SetSelection_SendEvent); }
81 virtual int ChangeSelection(size_t n) { return DoSetSelection(n); }
bcbec865 82 virtual int HitTest(const wxPoint& pt, long *flags = NULL) const;
e9c0df38
VZ
83 virtual void SetImageList(wxImageList *imageList);
84
fbd11d30
RD
85 virtual bool DeleteAllPages();
86
d8fd7acb 87 wxListView* GetListView() const { return (wxListView*)m_bookctrl; }
e572631f 88
e9c0df38
VZ
89protected:
90 virtual wxWindow *DoRemovePage(size_t page);
91
e9c0df38 92 // get the size which the list control should have
d8fd7acb 93 virtual wxSize GetControllerSize() const;
e9c0df38 94
1d6fcbcc
VZ
95 void UpdateSelectedPage(size_t newsel);
96
3e97a905
VZ
97 wxBookCtrlEvent* CreatePageChangingEvent() const;
98 void MakeChangedEvent(wxBookCtrlEvent &event);
1d6fcbcc 99
1a9a6eed
VZ
100 // get flags for different list control modes
101 long GetListCtrlIconViewFlags() const;
102 long GetListCtrlReportViewFlags() const;
103
e9c0df38 104 // event handlers
e9c0df38 105 void OnListSelected(wxListEvent& event);
d8fd7acb 106 void OnSize(wxSizeEvent& event);
e9c0df38
VZ
107
108 // the currently selected page or wxNOT_FOUND if none
109 int m_selection;
110
33ebfc3b
VZ
111private:
112 // common part of all constructors
113 void Init();
e9c0df38 114
eaad096e
VZ
115 // this should be called when we need to be relaid out
116 void UpdateSize();
117
118
e9c0df38
VZ
119 DECLARE_EVENT_TABLE()
120 DECLARE_DYNAMIC_CLASS_NO_COPY(wxListbook)
121};
122
123// ----------------------------------------------------------------------------
124// listbook event class and related stuff
125// ----------------------------------------------------------------------------
126
856b41f9
VZ
127// wxListbookEvent is obsolete and defined for compatibility only (notice that
128// we use #define and not typedef to also keep compatibility with the existing
129// code which forward declares it)
130#define wxListbookEvent wxBookCtrlEvent
3e97a905
VZ
131typedef wxBookCtrlEventFunction wxListbookEventFunction;
132#define wxListbookEventHandler(func) wxBookCtrlEventHandler(func)
8bc3ec1f
WS
133
134#define EVT_LISTBOOK_PAGE_CHANGED(winid, fn) \
3e97a905 135 wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, winid, wxBookCtrlEventHandler(fn))
8bc3ec1f
WS
136
137#define EVT_LISTBOOK_PAGE_CHANGING(winid, fn) \
3e97a905 138 wx__DECLARE_EVT1(wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, winid, wxBookCtrlEventHandler(fn))
e9c0df38
VZ
139
140#endif // wxUSE_LISTBOOK
141
142#endif // _WX_LISTBOOK_H_