]>
Commit | Line | Data |
---|---|---|
f5e0b4bc WS |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/choicebk.h | |
3 | // Purpose: wxChoicebook: wxChoice and wxNotebook combination | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: Wlodzimierz ABX Skiba from wx/listbook.h | |
6 | // Created: 15.09.04 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin, Wlodzimierz Skiba | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_CHOICEBOOK_H_ | |
13 | #define _WX_CHOICEBOOK_H_ | |
14 | ||
f5e0b4bc WS |
15 | #include "wx/defs.h" |
16 | ||
17 | #if wxUSE_CHOICEBOOK | |
18 | ||
19 | #include "wx/bookctrl.h" | |
cc66bf5a | 20 | #include "wx/choice.h" |
f5e0b4bc | 21 | |
b5dbe15d | 22 | class WXDLLIMPEXP_FWD_CORE wxChoice; |
f5e0b4bc | 23 | |
9b11752c VZ |
24 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED, wxBookCtrlEvent ); |
25 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING, wxBookCtrlEvent ); | |
1d6fcbcc | 26 | |
90c0f63a VZ |
27 | // wxChoicebook flags |
28 | #define wxCHB_DEFAULT wxBK_DEFAULT | |
29 | #define wxCHB_TOP wxBK_TOP | |
30 | #define wxCHB_BOTTOM wxBK_BOTTOM | |
31 | #define wxCHB_LEFT wxBK_LEFT | |
32 | #define wxCHB_RIGHT wxBK_RIGHT | |
33 | #define wxCHB_ALIGN_MASK wxBK_ALIGN_MASK | |
1d6fcbcc | 34 | |
f5e0b4bc WS |
35 | // ---------------------------------------------------------------------------- |
36 | // wxChoicebook | |
37 | // ---------------------------------------------------------------------------- | |
38 | ||
53a2db12 | 39 | class WXDLLIMPEXP_CORE wxChoicebook : public wxBookCtrlBase |
f5e0b4bc WS |
40 | { |
41 | public: | |
42 | wxChoicebook() | |
43 | { | |
44 | Init(); | |
45 | } | |
46 | ||
47 | wxChoicebook(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 | ||
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, | |
75 | wxWindow *page, | |
76 | const wxString& text, | |
77 | bool bSelect = false, | |
78 | int imageId = -1); | |
64c38b4b VZ |
79 | virtual int SetSelection(size_t n) |
80 | { return DoSetSelection(n, SetSelection_SendEvent); } | |
1d6fcbcc | 81 | virtual int ChangeSelection(size_t n) { return DoSetSelection(n); } |
f5e0b4bc WS |
82 | virtual void SetImageList(wxImageList *imageList); |
83 | ||
f5e0b4bc WS |
84 | virtual bool DeleteAllPages(); |
85 | ||
c9ab63f4 | 86 | // returns the choice control |
d8fd7acb | 87 | wxChoice* GetChoiceCtrl() const { return (wxChoice*)m_bookctrl; } |
c9ab63f4 | 88 | |
f5e0b4bc | 89 | protected: |
64c38b4b VZ |
90 | virtual void DoSetWindowVariant(wxWindowVariant variant); |
91 | ||
f5e0b4bc WS |
92 | virtual wxWindow *DoRemovePage(size_t page); |
93 | ||
f5e0b4bc | 94 | // get the size which the choice control should have |
d8fd7acb | 95 | virtual wxSize GetControllerSize() const; |
f5e0b4bc | 96 | |
1d6fcbcc VZ |
97 | void UpdateSelectedPage(size_t newsel) |
98 | { | |
e79d4945 | 99 | m_selection = static_cast<int>(newsel); |
c2566575 | 100 | GetChoiceCtrl()->Select(m_selection); |
1d6fcbcc VZ |
101 | } |
102 | ||
3e97a905 VZ |
103 | wxBookCtrlEvent* CreatePageChangingEvent() const; |
104 | void MakeChangedEvent(wxBookCtrlEvent &event); | |
1d6fcbcc | 105 | |
f5e0b4bc | 106 | // event handlers |
f5e0b4bc WS |
107 | void OnChoiceSelected(wxCommandEvent& event); |
108 | ||
f5e0b4bc WS |
109 | // the currently selected page or wxNOT_FOUND if none |
110 | int m_selection; | |
111 | ||
bb08a4a1 WS |
112 | private: |
113 | // common part of all constructors | |
114 | void Init(); | |
f5e0b4bc WS |
115 | |
116 | DECLARE_EVENT_TABLE() | |
117 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxChoicebook) | |
118 | }; | |
119 | ||
120 | // ---------------------------------------------------------------------------- | |
121 | // choicebook event class and related stuff | |
122 | // ---------------------------------------------------------------------------- | |
123 | ||
3e97a905 VZ |
124 | // wxChoicebookEvent is obsolete and defined for compatibility only |
125 | typedef wxBookCtrlEvent wxChoicebookEvent; | |
126 | typedef wxBookCtrlEventFunction wxChoicebookEventFunction; | |
127 | #define wxChoicebookEventHandler(func) wxBookCtrlEventHandler(func) | |
7fa03f04 | 128 | |
d94c09cd | 129 | #define EVT_CHOICEBOOK_PAGE_CHANGED(winid, fn) \ |
3e97a905 | 130 | wx__DECLARE_EVT1(wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED, winid, wxBookCtrlEventHandler(fn)) |
7fa03f04 | 131 | |
d94c09cd | 132 | #define EVT_CHOICEBOOK_PAGE_CHANGING(winid, fn) \ |
3e97a905 | 133 | wx__DECLARE_EVT1(wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING, winid, wxBookCtrlEventHandler(fn)) |
f5e0b4bc WS |
134 | |
135 | #endif // wxUSE_CHOICEBOOK | |
136 | ||
137 | #endif // _WX_CHOICEBOOK_H_ |