1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/notebook.h
3 // Purpose: MSW/GTK compatible notebook (a.k.a. property sheet)
4 // Author: Robert Roebling
5 // Modified by: Vadim Zeitlin for Windows version
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #include "wx/control.h"
22 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
26 class WXDLLIMPEXP_CORE wxNotebookPageInfo
: public wxObject
29 wxNotebookPageInfo() { m_page
= NULL
; m_imageId
= -1; m_selected
= false; }
30 virtual ~wxNotebookPageInfo() { }
32 void Create(wxNotebookPage
*page
,
39 m_selected
= selected
;
43 wxNotebookPage
* GetPage() const { return m_page
; }
44 wxString
GetText() const { return m_text
; }
45 bool GetSelected() const { return m_selected
; }
46 int GetImageId() const { return m_imageId
; }
49 wxNotebookPage
*m_page
;
54 DECLARE_DYNAMIC_CLASS(wxNotebookPageInfo
)
58 WX_DECLARE_EXPORTED_LIST(wxNotebookPageInfo
, wxNotebookPageInfoList
);
60 class WXDLLIMPEXP_CORE wxNotebook
: public wxNotebookBase
65 // default for dynamic class
67 // the same arguments as for wxControl (@@@ any special styles?)
68 wxNotebook(wxWindow
*parent
,
70 const wxPoint
& pos
= wxDefaultPosition
,
71 const wxSize
& size
= wxDefaultSize
,
73 const wxString
& name
= wxNotebookNameStr
);
75 bool Create(wxWindow
*parent
,
77 const wxPoint
& pos
= wxDefaultPosition
,
78 const wxSize
& size
= wxDefaultSize
,
80 const wxString
& name
= wxNotebookNameStr
);
81 virtual ~wxNotebook();
85 // get number of pages in the dialog
86 virtual size_t GetPageCount() const;
88 // set the currently selected page, return the index of the previously
89 // selected one (or wxNOT_FOUND on error)
90 // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events
91 int SetSelection(size_t nPage
);
93 // changes selected page without sending events
94 int ChangeSelection(size_t nPage
);
96 // set/get the title of a page
97 bool SetPageText(size_t nPage
, const wxString
& strText
);
98 wxString
GetPageText(size_t nPage
) const;
100 // image list stuff: each page may have an image associated with it. All
101 // the images belong to an image list, so you have to
102 // 1) create an image list
103 // 2) associate it with the notebook
104 // 3) set for each page it's image
105 // associate image list with a control
106 void SetImageList(wxImageList
* imageList
);
108 // sets/returns item's image index in the current image list
109 int GetPageImage(size_t nPage
) const;
110 bool SetPageImage(size_t nPage
, int nImage
);
112 // currently it's always 1 because wxGTK doesn't support multi-row
114 int GetRowCount() const;
116 // control the appearance of the notebook pages
117 // set the size (the same for all pages)
118 void SetPageSize(const wxSize
& size
);
119 // set the padding between tabs (in pixels)
120 void SetPadding(const wxSize
& padding
);
125 bool DeleteAllPages();
127 // inserts a new page to the notebook (it will be deleted ny the notebook,
128 // don't delete it yourself). If bSelect, this page becomes active.
129 bool InsertPage(size_t nPage
,
130 wxNotebookPage
*pPage
,
131 const wxString
& strText
,
132 bool bSelect
= false,
135 void AddPageInfo( wxNotebookPageInfo
* info
) { AddPage( info
->GetPage() , info
->GetText() , info
->GetSelected() , info
->GetImageId() ); }
136 const wxNotebookPageInfoList
& GetPageInfos() const;
138 // Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
140 void SetTabSize(const wxSize
& sz
);
143 virtual int HitTest(const wxPoint
& pt
, long *flags
= NULL
) const;
145 // calculate the size of the notebook from the size of its page
146 virtual wxSize
CalcSizeFromPage(const wxSize
& sizePage
) const;
150 void OnSize(wxSizeEvent
& event
);
151 void OnNavigationKey(wxNavigationKeyEvent
& event
);
153 // base class virtuals
154 // -------------------
156 virtual bool MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
157 virtual bool MSWOnScroll(int orientation
, WXWORD nSBCode
,
158 WXWORD pos
, WXHWND control
);
160 #if wxUSE_CONSTRAINTS
161 virtual void SetConstraintSizes(bool recurse
= true);
162 virtual bool DoPhase(int nPhase
);
163 #endif // wxUSE_CONSTRAINTS
165 // Attempts to get colour for UX theme page background
166 wxColour
GetThemeBackgroundColour() const;
168 // implementation only
169 // -------------------
172 virtual bool SetBackgroundColour(const wxColour
& colour
)
174 if ( !wxNotebookBase::SetBackgroundColour(colour
) )
182 // return the themed brush for painting our children
183 virtual WXHBRUSH
MSWGetBgBrushForChild(WXHDC hDC
, wxWindow
*child
);
185 // draw child background
186 virtual bool MSWPrintChild(WXHDC hDC
, wxWindow
*win
);
188 virtual bool MSWHasInheritableBackground() const { return true; }
189 #endif // wxUSE_UXTHEME
191 // translate wxWin styles to the Windows ones
192 virtual WXDWORD
MSWGetStyle(long flags
, WXDWORD
*exstyle
= NULL
) const;
195 // common part of all ctors
198 // hides the currently shown page and shows the given one (if not -1) and
199 // updates m_selection accordingly
200 void UpdateSelection(int selNew
);
202 // remove one page from the notebook, without deleting
203 virtual wxNotebookPage
*DoRemovePage(size_t nPage
);
205 // get the page rectangle for the current notebook size
207 // returns empty rectangle if an error occurs, do test for it
208 wxRect
GetPageSize() const;
210 // set the size of the given page to fit in the notebook
211 void AdjustPageSize(wxNotebookPage
*page
);
214 // gets the bitmap of notebook background and returns a brush from it
215 WXHBRUSH
QueryBgBitmap();
217 // creates the brush to be used for drawing the tab control background
218 void UpdateBgBrush();
220 // common part of QueryBgBitmap() and MSWPrintChild()
222 // if child == NULL, draw background for the entire notebook itself
223 bool DoDrawBackground(WXHDC hDC
, wxWindow
*child
= NULL
);
224 #endif // wxUSE_UXTHEME
226 // these function are only used for reducing flicker on notebook resize and
227 // we don't need to do this for WinCE
229 void OnEraseBackground(wxEraseEvent
& event
);
230 void OnPaint(wxPaintEvent
& event
);
232 // true if we have already subclassed our updown control
233 bool m_hasSubclassedUpdown
;
234 #endif // __WXWINCE__
237 wxNotebookPageInfoList m_pageInfos
;
240 // background brush used to paint the tab control
241 WXHBRUSH m_hbrBackground
;
242 #endif // wxUSE_UXTHEME
245 DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebook
)
246 DECLARE_EVENT_TABLE()
249 #endif // wxUSE_NOTEBOOK
251 #endif // _NOTEBOOK_H