1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: MSW/GTK compatible notebook (a.k.a. property sheet)
4 // Author: David Webster
7 // Copyright: (c) David Webster
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_NOTEBOOK_H_
12 #define _WX_NOTEBOOK_H_
14 // ----------------------------------------------------------------------------
16 // ----------------------------------------------------------------------------
18 #include "wx/dynarray.h"
19 #include "wx/string.h"
20 #include "wx/control.h"
22 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
27 class WXDLLEXPORT wxImageList
;
28 class WXDLLEXPORT wxWindow
;
30 // array of notebook pages
31 typedef wxWindow WXDLLEXPORT wxNotebookPage
; // so far, any window can be a page
32 WX_DEFINE_ARRAY(wxNotebookPage
*, wxArrayNBPages
);
34 // ----------------------------------------------------------------------------
36 // ----------------------------------------------------------------------------
38 // FIXME this class should really derive from wxTabCtrl, but the interface is not
39 // exactly the same, so I can't do it right now and instead we reimplement
40 // part of wxTabCtrl here
41 class WXDLLEXPORT wxNotebook
: public wxControl
46 // default for dynamic class
48 // the same arguments as for wxControl (@@@ any special styles?)
49 wxNotebook(wxWindow
*parent
,
51 const wxPoint
& pos
= wxDefaultPosition
,
52 const wxSize
& size
= wxDefaultSize
,
54 const wxString
& name
= "notebook");
56 bool Create(wxWindow
*parent
,
58 const wxPoint
& pos
= wxDefaultPosition
,
59 const wxSize
& size
= wxDefaultSize
,
61 const wxString
& name
= "notebook");
67 // get number of pages in the dialog
68 int GetPageCount() const;
70 // set the currently selected page, return the index of the previously
71 // selected one (or -1 on error)
72 // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events
73 int SetSelection(int nPage
);
74 // cycle thru the tabs
75 void AdvanceSelection(bool bForward
= TRUE
);
76 // get the currently selected page
77 int GetSelection() const { return m_nSelection
; }
79 // set/get the title of a page
80 bool SetPageText(int nPage
, const wxString
& strText
);
81 wxString
GetPageText(int nPage
) const;
83 // image list stuff: each page may have an image associated with it. All
84 // the images belong to an image list, so you have to
85 // 1) create an image list
86 // 2) associate it with the notebook
87 // 3) set for each page it's image
88 // associate image list with a control
89 void SetImageList(wxImageList
* imageList
);
90 // get pointer (may be NULL) to the associated image list
91 wxImageList
* GetImageList() const { return m_pImageList
; }
93 // sets/returns item's image index in the current image list
94 int GetPageImage(int nPage
) const;
95 bool SetPageImage(int nPage
, int nImage
);
97 // currently it's always 1 because wxGTK doesn't support multi-row
99 int GetRowCount() const;
101 // control the appearance of the notebook pages
102 // set the size (the same for all pages)
103 void SetPageSize(const wxSize
& size
);
104 // set the padding between tabs (in pixels)
105 void SetPadding(const wxSize
& padding
);
109 // remove one page from the notebook
110 bool DeletePage(int nPage
);
111 // remove one page from the notebook, without deleting
112 bool RemovePage(int nPage
);
114 bool DeleteAllPages();
115 // adds a new page to the notebook (it will be deleted ny the notebook,
116 // don't delete it yourself). If bSelect, this page becomes active.
117 bool AddPage(wxNotebookPage
*pPage
,
118 const wxString
& strText
,
119 bool bSelect
= FALSE
,
121 // the same as AddPage(), but adds it at the specified position
122 bool InsertPage(int nPage
,
123 wxNotebookPage
*pPage
,
124 const wxString
& strText
,
125 bool bSelect
= FALSE
,
127 // get the panel which represents the given page
128 wxNotebookPage
*GetPage(int nPage
) { return m_aPages
[nPage
]; }
130 // Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
132 void SetTabSize(const wxSize
& sz
);
136 void OnSize(wxSizeEvent
& event
);
137 void OnSelChange(wxNotebookEvent
& event
);
138 void OnSetFocus(wxFocusEvent
& event
);
139 void OnNavigationKey(wxNavigationKeyEvent
& event
);
141 // base class virtuals
142 // -------------------
143 virtual bool OS2OnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
144 virtual void SetConstraintSizes(bool recurse
= TRUE
);
145 virtual bool DoPhase(int nPhase
);
148 // common part of all ctors
152 void ChangePage(int nOldSel
, int nSel
); // change pages
154 wxImageList
*m_pImageList
; // we can have an associated image list
155 wxArrayNBPages m_aPages
; // array of pages
157 int m_nSelection
; // the current selection (-1 if none)
159 DECLARE_DYNAMIC_CLASS(wxNotebook
)
160 DECLARE_EVENT_TABLE()
163 #endif // _WX_NOTEBOOK_H_