1 /////////////////////////////////////////////////////////////////////////////
2 // Name: 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 /////////////////////////////////////////////////////////////////////////////
14 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
15 #pragma interface "notebook.h"
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
24 #include "wx/control.h"
26 // ----------------------------------------------------------------------------
28 // ----------------------------------------------------------------------------
30 class WXDLLEXPORT wxNotebookPageInfo
: public wxObject
33 wxNotebookPageInfo() { m_page
= NULL
; m_imageId
= -1; m_selected
= false; }
34 virtual ~wxNotebookPageInfo() { }
36 void Create(wxNotebookPage
*page
,
43 m_selected
= selected
;
47 wxNotebookPage
* GetPage() const { return m_page
; }
48 wxString
GetText() const { return m_text
; }
49 bool GetSelected() const { return m_selected
; }
50 int GetImageId() const { return m_imageId
; }
53 wxNotebookPage
*m_page
;
58 DECLARE_DYNAMIC_CLASS(wxNotebookPageInfo
)
62 WX_DECLARE_EXPORTED_LIST(wxNotebookPageInfo
, wxNotebookPageInfoList
);
64 class WXDLLEXPORT wxNotebook
: public wxNotebookBase
69 // default for dynamic class
71 // the same arguments as for wxControl (@@@ any special styles?)
72 wxNotebook(wxWindow
*parent
,
74 const wxPoint
& pos
= wxDefaultPosition
,
75 const wxSize
& size
= wxDefaultSize
,
77 const wxString
& name
= wxNotebookNameStr
);
79 bool Create(wxWindow
*parent
,
81 const wxPoint
& pos
= wxDefaultPosition
,
82 const wxSize
& size
= wxDefaultSize
,
84 const wxString
& name
= wxNotebookNameStr
);
85 virtual ~wxNotebook();
89 // get number of pages in the dialog
90 virtual size_t GetPageCount() const;
92 // set the currently selected page, return the index of the previously
93 // selected one (or -1 on error)
94 // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events
95 int SetSelection(size_t nPage
);
96 // get the currently selected page
97 int GetSelection() const { return m_nSelection
; }
99 // set/get the title of a page
100 bool SetPageText(size_t nPage
, const wxString
& strText
);
101 wxString
GetPageText(size_t nPage
) const;
103 // image list stuff: each page may have an image associated with it. All
104 // the images belong to an image list, so you have to
105 // 1) create an image list
106 // 2) associate it with the notebook
107 // 3) set for each page it's image
108 // associate image list with a control
109 void SetImageList(wxImageList
* imageList
);
111 // sets/returns item's image index in the current image list
112 int GetPageImage(size_t nPage
) const;
113 bool SetPageImage(size_t nPage
, int nImage
);
115 // currently it's always 1 because wxGTK doesn't support multi-row
117 int GetRowCount() const;
119 // control the appearance of the notebook pages
120 // set the size (the same for all pages)
121 void SetPageSize(const wxSize
& size
);
122 // set the padding between tabs (in pixels)
123 void SetPadding(const wxSize
& padding
);
128 bool DeleteAllPages();
130 // inserts a new page to the notebook (it will be deleted ny the notebook,
131 // don't delete it yourself). If bSelect, this page becomes active.
132 bool InsertPage(size_t nPage
,
133 wxNotebookPage
*pPage
,
134 const wxString
& strText
,
135 bool bSelect
= false,
138 void AddPageInfo( wxNotebookPageInfo
* info
) { AddPage( info
->GetPage() , info
->GetText() , info
->GetSelected() , info
->GetImageId() ); }
139 const wxNotebookPageInfoList
& GetPageInfos() const;
141 // Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
143 void SetTabSize(const wxSize
& sz
);
146 virtual int HitTest(const wxPoint
& pt
, long *flags
= NULL
) const;
148 // calculate the size of the notebook from the size of its page
149 virtual wxSize
CalcSizeFromPage(const wxSize
& sizePage
) const;
153 void OnSize(wxSizeEvent
& event
);
154 void OnSelChange(wxNotebookEvent
& event
);
155 void OnNavigationKey(wxNavigationKeyEvent
& event
);
157 // base class virtuals
158 // -------------------
160 virtual bool MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
161 virtual bool MSWOnScroll(int orientation
, WXWORD nSBCode
,
162 WXWORD pos
, WXHWND control
);
163 virtual bool MSWTranslateMessage(WXMSG
*wxmsg
);
165 #if wxUSE_CONSTRAINTS
166 virtual void SetConstraintSizes(bool recurse
= true);
167 virtual bool DoPhase(int nPhase
);
168 #endif // wxUSE_CONSTRAINTS
170 // Attempts to get colour for UX theme page background
171 wxColour
GetThemeBackgroundColour() const;
173 // implementation only
174 // -------------------
177 virtual bool SetBackgroundColour(const wxColour
& colour
)
179 if ( !wxNotebookBase::SetBackgroundColour(colour
) )
187 virtual WXHBRUSH
MSWGetBgBrushForChild(WXHDC hDC
, wxWindow
*win
);
188 virtual wxColour
MSWGetBgColourForChild(wxWindow
*win
);
189 #endif // wxUSE_UXTHEME
192 // common part of all ctors
195 // translate wxWin styles to the Windows ones
196 virtual WXDWORD
MSWGetStyle(long flags
, WXDWORD
*exstyle
= NULL
) const;
198 // remove one page from the notebook, without deleting
199 virtual wxNotebookPage
*DoRemovePage(size_t nPage
);
201 // set the size of the given page to fit in the notebook
202 void AdjustPageSize(wxNotebookPage
*page
);
205 // this is a slightly ugly function which gets the bitmap of notebook
206 // background and either returns the colour under the specified window in it
207 // or creates a brush from it
209 // so if win == NULL, a brush is created and returned
210 // win != NULL, returns COLORREF of the pixel under its top left corner
211 WXHANDLE
QueryBgBitmap(wxWindow
*win
= NULL
);
213 // creates the brush to be used for drawing the tab control background
214 void UpdateBgBrush();
216 // paint themed children background here
217 virtual bool MSWPrintChild(wxWindow
*win
, WXWPARAM wParam
, WXLPARAM lParam
);
218 #endif // wxUSE_UXTHEME
220 // the current selection (-1 if none)
223 wxNotebookPageInfoList m_pageInfos
;
226 // background brush used to paint the tab control
227 WXHBRUSH m_hbrBackground
;
228 #endif // wxUSE_UXTHEME
231 DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebook
)
232 DECLARE_EVENT_TABLE()
235 #endif // wxUSE_NOTEBOOK
237 #endif // _NOTEBOOK_H