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 // handler for child pages erase background event
166 void DoEraseBackground(wxEraseEvent
& event
);
168 // real implementation of the above method
169 void DoEraseBackground(wxWindow
*win
, WXHDC hDC
);
171 // get the brush to be used for painting the background for the controls
172 // which need it in their MSWControlColor()
174 // the brush will be adjusted for use with the given window on this DC
175 WXHBRUSH
GetThemeBackgroundBrush(WXHDC hDC
, wxWindow
*win
) const;
176 #endif // wxUSE_UXTHEME
179 // common part of all ctors
182 // translate wxWin styles to the Windows ones
183 virtual WXDWORD
MSWGetStyle(long flags
, WXDWORD
*exstyle
= NULL
) const;
185 // remove one page from the notebook, without deleting
186 virtual wxNotebookPage
*DoRemovePage(size_t nPage
);
188 // set the size of the given page to fit in the notebook
189 void AdjustPageSize(wxNotebookPage
*page
);
192 // creates the brush to be used for drawing the tab control background
193 void UpdateBgBrush();
194 #endif // wxUSE_UXTHEME
196 // the current selection (-1 if none)
199 wxNotebookPageInfoList m_pageInfos
;
202 // background brush used to paint the tab control
203 WXHBRUSH m_hbrBackground
;
204 #endif // wxUSE_UXTHEME
207 DECLARE_DYNAMIC_CLASS_NO_COPY(wxNotebook
)
208 DECLARE_EVENT_TABLE()
211 #endif // wxUSE_NOTEBOOK
213 #endif // _NOTEBOOK_H