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
, const wxString
&text
, bool selected
, int imageId
)
37 { m_page
= page
; m_text
= text
; m_selected
= selected
; m_imageId
= imageId
; }
38 wxNotebookPage
* GetPage() const { return m_page
; }
39 wxString
GetText() const { return m_text
; }
40 bool GetSelected() const { return m_selected
; }
41 int GetImageId() const { return m_imageId
; }
43 wxNotebookPage
*m_page
;
48 DECLARE_DYNAMIC_CLASS(wxNotebookPageInfo
) ;
52 WX_DECLARE_EXPORTED_LIST(wxNotebookPageInfo
, wxNotebookPageInfoList
);
54 class WXDLLEXPORT wxNotebook
: public wxNotebookBase
59 // default for dynamic class
61 // the same arguments as for wxControl (@@@ any special styles?)
62 wxNotebook(wxWindow
*parent
,
64 const wxPoint
& pos
= wxDefaultPosition
,
65 const wxSize
& size
= wxDefaultSize
,
67 const wxString
& name
= wxNOTEBOOK_NAME
);
69 bool Create(wxWindow
*parent
,
71 const wxPoint
& pos
= wxDefaultPosition
,
72 const wxSize
& size
= wxDefaultSize
,
74 const wxString
& name
= wxNOTEBOOK_NAME
);
75 virtual ~wxNotebook();
79 // get number of pages in the dialog
80 virtual size_t GetPageCount() const;
82 // set the currently selected page, return the index of the previously
83 // selected one (or -1 on error)
84 // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events
85 int SetSelection(size_t nPage
);
86 // get the currently selected page
87 int GetSelection() const { return m_nSelection
; }
89 // set/get the title of a page
90 bool SetPageText(size_t nPage
, const wxString
& strText
);
91 wxString
GetPageText(size_t nPage
) const;
93 // image list stuff: each page may have an image associated with it. All
94 // the images belong to an image list, so you have to
95 // 1) create an image list
96 // 2) associate it with the notebook
97 // 3) set for each page it's image
98 // associate image list with a control
99 void SetImageList(wxImageList
* imageList
);
101 // sets/returns item's image index in the current image list
102 int GetPageImage(size_t nPage
) const;
103 bool SetPageImage(size_t nPage
, int nImage
);
105 // currently it's always 1 because wxGTK doesn't support multi-row
107 int GetRowCount() const;
109 // control the appearance of the notebook pages
110 // set the size (the same for all pages)
111 void SetPageSize(const wxSize
& size
);
112 // set the padding between tabs (in pixels)
113 void SetPadding(const wxSize
& padding
);
118 bool DeleteAllPages();
120 // inserts a new page to the notebook (it will be deleted ny the notebook,
121 // don't delete it yourself). If bSelect, this page becomes active.
122 bool InsertPage(size_t nPage
,
123 wxNotebookPage
*pPage
,
124 const wxString
& strText
,
125 bool bSelect
= false,
128 void AddPageInfo( wxNotebookPageInfo
* info
) { AddPage( info
->GetPage() , info
->GetText() , info
->GetSelected() , info
->GetImageId() ) ; }
129 const wxNotebookPageInfoList
& GetPageInfos() const ;
131 // Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
133 void SetTabSize(const wxSize
& sz
);
136 virtual int HitTest(const wxPoint
& pt
, long *flags
= NULL
) const;
138 // calculate the size of the notebook from the size of its page
139 virtual wxSize
CalcSizeFromPage(const wxSize
& sizePage
) const;
143 void OnSize(wxSizeEvent
& event
);
144 void OnSelChange(wxNotebookEvent
& event
);
145 void OnNavigationKey(wxNavigationKeyEvent
& event
);
147 // base class virtuals
148 // -------------------
150 virtual bool MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
);
151 virtual bool MSWOnScroll(int orientation
, WXWORD nSBCode
,
152 WXWORD pos
, WXHWND control
);
153 virtual bool MSWTranslateMessage(WXMSG
*wxmsg
);
155 #if wxUSE_CONSTRAINTS
156 virtual void SetConstraintSizes(bool recurse
= true);
157 virtual bool DoPhase(int nPhase
);
158 #endif // wxUSE_CONSTRAINTS
161 // implementation only
162 // -------------------
165 virtual bool SetBackgroundColour(const wxColour
& colour
)
167 if ( !wxNotebookBase::SetBackgroundColour(colour
) )
175 virtual WXHBRUSH
MSWGetBgBrushForChild(WXHDC hDC
, wxWindow
*win
);
176 virtual wxColour
MSWGetBgColourForChild(wxWindow
*win
);
177 #endif // wxUSE_UXTHEME
180 // common part of all ctors
183 // translate wxWin styles to the Windows ones
184 virtual WXDWORD
MSWGetStyle(long flags
, WXDWORD
*exstyle
= NULL
) const;
186 // remove one page from the notebook, without deleting
187 virtual wxNotebookPage
*DoRemovePage(size_t nPage
);
189 // set the size of the given page to fit in the notebook
190 void AdjustPageSize(wxNotebookPage
*page
);
193 // this is a slightly ugly function which gets the bitmap of notebook
194 // background and either returns the colour under the specified window in it
195 // or creates a brush from it
197 // so if win == NULL, a brush is created and returned
198 // win != NULL, returns COLORREF of the pixel under its top left corner
199 WXHANDLE
QueryBgBitmap(wxWindow
*win
= NULL
);
201 // creates the brush to be used for drawing the tab control background
202 void UpdateBgBrush();
203 #endif // wxUSE_UXTHEME
205 // the current selection (-1 if none)
208 wxNotebookPageInfoList m_pageInfos
;
211 // background brush used to paint the tab control
212 WXHBRUSH m_hbrBackground
;
213 #endif // wxUSE_UXTHEME
216 DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebook
)
217 DECLARE_EVENT_TABLE()
220 #endif // wxUSE_NOTEBOOK
222 #endif // _NOTEBOOK_H