1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: msw/notebook.cpp
3 // Purpose: implementation of wxNotebook
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #pragma implementation "notebook.h"
23 // For compilers that support precompilation, includes "wx.h".
24 #include "wx/wxprec.h"
32 #include <wx/string.h>
36 #include <wx/imaglist.h>
37 #include <wx/notebook.h>
39 #include <wx/msw/private.h>
41 // Windows standard headers
43 #error "wxNotebook is not supported under Windows 3.1"
46 #include <windowsx.h> // for SetWindowFont
49 #include "wx/msw/gnuwin32/extra.h"
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 // check that the page index is valid
59 #define IS_VALID_PAGE(nPage) (((nPage) >= 0) && ((nPage) < GetPageCount()))
62 #define m_hwnd (HWND)GetHWND()
64 // ----------------------------------------------------------------------------
66 // ----------------------------------------------------------------------------
68 #if !USE_SHARED_LIBRARIES
69 BEGIN_EVENT_TABLE(wxNotebook
, wxControl
)
70 EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange
)
72 EVT_SIZE(wxNotebook::OnSize
)
73 EVT_SET_FOCUS(wxNotebook::OnSetFocus
)
74 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
77 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
, wxControl
)
78 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxCommandEvent
)
81 // ============================================================================
83 // ============================================================================
85 // ----------------------------------------------------------------------------
86 // wxNotebook construction
87 // ----------------------------------------------------------------------------
89 // common part of all ctors
90 void wxNotebook::Init()
96 // default for dynamic class
97 wxNotebook::wxNotebook()
102 // the same arguments as for wxControl
103 wxNotebook::wxNotebook(wxWindow
*parent
,
108 const wxString
& name
)
112 Create(parent
, id
, pos
, size
, style
, name
);
116 bool wxNotebook::Create(wxWindow
*parent
,
121 const wxString
& name
)
127 m_windowId
= id
== -1 ? NewControlId() : id
;
130 m_backgroundColour
= wxColour(GetSysColor(COLOR_BTNFACE
));
131 m_foregroundColour
= *wxBLACK
;
134 m_windowStyle
= style
| wxTAB_TRAVERSAL
;
136 long tabStyle
= WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
| TCS_TABS
;
137 if ( m_windowStyle
& wxTC_MULTILINE
)
138 tabStyle
|= TCS_MULTILINE
;
139 if ( m_windowStyle
& wxBORDER
)
140 tabStyle
&= WS_BORDER
;
142 // create the tab control.
143 m_hWnd
= (WXHWND
)CreateWindowEx
146 WC_TABCONTROL
, // class name for the tab control
149 pos
.x
, pos
.y
, size
.x
, size
.y
, // size and position
150 (HWND
)parent
->GetHWND(), // parent window
151 (HMENU
)m_windowId
, // child id
152 wxGetInstance(), // current instance
153 NULL
// no class data
157 wxLogSysError("Can't create the notebook control");
161 // Not all compilers recognise SetWindowFont
162 // SetWindowFont((HWND)m_hwnd, ::GetStockObject(DEFAULT_GUI_FONT), FALSE);
163 ::SendMessage((HWND
) m_hwnd
, WM_SETFONT
,
164 (WPARAM
)::GetStockObject(DEFAULT_GUI_FONT
),TRUE
);
167 if ( parent
!= NULL
)
168 parent
->AddChild(this);
176 wxNotebook::~wxNotebook()
180 // ----------------------------------------------------------------------------
181 // wxNotebook accessors
182 // ----------------------------------------------------------------------------
183 int wxNotebook::GetPageCount() const
186 wxASSERT( (int)m_aPages
.Count() == TabCtrl_GetItemCount(m_hwnd
) );
188 return m_aPages
.Count();
191 int wxNotebook::GetRowCount() const
193 return TabCtrl_GetRowCount(m_hwnd
);
196 int wxNotebook::SetSelection(int nPage
)
198 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, "notebook page out of range" );
200 ChangePage(m_nSelection
, nPage
);
202 return TabCtrl_SetCurSel(m_hwnd
, nPage
);
205 void wxNotebook::AdvanceSelection(bool bForward
)
207 int nSel
= GetSelection();
208 int nMax
= GetPageCount() - 1;
210 SetSelection(nSel
== nMax
? 0 : nSel
+ 1);
212 SetSelection(nSel
== 0 ? nMax
: nSel
- 1);
215 bool wxNotebook::SetPageText(int nPage
, const wxString
& strText
)
217 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, "notebook page out of range" );
220 tcItem
.mask
= TCIF_TEXT
;
221 tcItem
.pszText
= (char *)strText
.c_str();
223 return TabCtrl_SetItem(m_hwnd
, nPage
, &tcItem
) != 0;
226 wxString
wxNotebook::GetPageText(int nPage
) const
228 wxCHECK_MSG( IS_VALID_PAGE(nPage
), "", "notebook page out of range" );
232 tcItem
.mask
= TCIF_TEXT
;
233 tcItem
.pszText
= buf
;
234 tcItem
.cchTextMax
= WXSIZEOF(buf
);
237 if ( TabCtrl_GetItem(m_hwnd
, nPage
, &tcItem
) )
238 str
= tcItem
.pszText
;
243 int wxNotebook::GetPageImage(int nPage
) const
245 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, "notebook page out of range" );
248 tcItem
.mask
= TCIF_IMAGE
;
250 return TabCtrl_GetItem(m_hwnd
, nPage
, &tcItem
) ? tcItem
.iImage
: -1;
253 bool wxNotebook::SetPageImage(int nPage
, int nImage
)
255 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, "notebook page out of range" );
258 tcItem
.mask
= TCIF_IMAGE
;
259 tcItem
.iImage
= nImage
;
261 return TabCtrl_SetItem(m_hwnd
, nPage
, &tcItem
) != 0;
264 void wxNotebook::SetImageList(wxImageList
* imageList
)
266 m_pImageList
= imageList
;
267 TabCtrl_SetImageList(m_hwnd
, (HIMAGELIST
)imageList
->GetHIMAGELIST());
270 // ----------------------------------------------------------------------------
271 // wxNotebook operations
272 // ----------------------------------------------------------------------------
274 // remove one page from the notebook
275 bool wxNotebook::DeletePage(int nPage
)
277 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, "notebook page out of range" );
279 TabCtrl_DeleteItem(m_hwnd
, nPage
);
281 delete m_aPages
[nPage
];
282 m_aPages
.Remove(nPage
);
288 bool wxNotebook::DeleteAllPages()
290 TabCtrl_DeleteAllItems(m_hwnd
);
292 int nPageCount
= GetPageCount();
294 for ( nPage
= 0; nPage
< nPageCount
; nPage
++ )
295 delete m_aPages
[nPage
];
302 // add a page to the notebook
303 bool wxNotebook::AddPage(wxNotebookPage
*pPage
,
304 const wxString
& strText
,
308 return InsertPage(GetPageCount(), pPage
, strText
, bSelect
, imageId
);
311 // same as AddPage() but does it at given position
312 bool wxNotebook::InsertPage(int nPage
,
313 wxNotebookPage
*pPage
,
314 const wxString
& strText
,
318 wxASSERT( pPage
!= NULL
);
319 wxCHECK( IS_VALID_PAGE(nPage
) || nPage
== GetPageCount(), FALSE
);
321 // add the tab to the control
323 tcItem
.mask
= TCIF_TEXT
| TCIF_IMAGE
;
324 tcItem
.pszText
= (char *)strText
.c_str();
325 tcItem
.iImage
= imageId
;
327 if ( TabCtrl_InsertItem(m_hwnd
, nPage
, &tcItem
) == -1 ) {
328 wxLogError("Can't create the notebook page '%s'.", strText
.c_str());
332 // save the pointer to the page
333 m_aPages
.Insert(pPage
, nPage
);
335 // some page must be selected: either this one or the first one if there is
336 // still no selection
338 m_nSelection
= nPage
;
339 else if ( m_nSelection
== -1 )
342 // don't show pages by default (we'll need to adjust their size first)
343 HWND hwnd
= (HWND
)pPage
->GetHWND();
344 SetWindowLong(hwnd
, GWL_STYLE
, GetWindowLong(hwnd
, GWL_STYLE
) & ~WS_VISIBLE
);
349 // ----------------------------------------------------------------------------
350 // wxNotebook callbacks
351 // ----------------------------------------------------------------------------
353 void wxNotebook::OnSize(wxSizeEvent
& event
)
355 // emulate page change (it's esp. important to do it first time because
356 // otherwise our page would stay invisible)
357 int nSel
= m_nSelection
;
361 // fit the notebook page to the tab control's display area
363 rc
.left
= rc
.top
= 0;
364 GetSize((int *)&rc
.right
, (int *)&rc
.bottom
);
366 TabCtrl_AdjustRect(m_hwnd
, FALSE
, &rc
);
367 size_t nCount
= m_aPages
.Count();
368 for ( size_t nPage
= 0; nPage
< nCount
; nPage
++ ) {
369 wxNotebookPage
*pPage
= m_aPages
[nPage
];
370 pPage
->SetSize(rc
.left
, rc
.top
, rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
371 if ( pPage
->GetAutoLayout() )
378 void wxNotebook::OnSelChange(wxNotebookEvent
& event
)
380 // is it our tab control?
381 if ( event
.GetEventObject() == this )
382 ChangePage(event
.GetOldSelection(), event
.GetSelection());
384 // we want to give others a chance to process this message as well
388 void wxNotebook::OnSetFocus(wxFocusEvent
& event
)
390 // set focus to the currently selected page if any
391 if ( m_nSelection
!= -1 )
392 m_aPages
[m_nSelection
]->SetFocus();
397 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
399 if ( event
.IsWindowChange() ) {
401 AdvanceSelection(event
.GetDirection());
404 // pass to the parent
406 event
.SetCurrentFocus(this);
407 GetParent()->ProcessEvent(event
);
412 // ----------------------------------------------------------------------------
413 // wxNotebook base class virtuals
414 // ----------------------------------------------------------------------------
416 // override these 2 functions to do nothing: everything is done in OnSize
418 void wxNotebook::SetConstraintSizes(bool /* recurse */)
420 // don't set the sizes of the pages - their correct size is not yet known
421 wxControl::SetConstraintSizes(FALSE
);
424 bool wxNotebook::DoPhase(int /* nPhase */)
429 void wxNotebook::Command(wxCommandEvent
& event
)
431 wxFAIL_MSG("wxNotebook::Command not implemented");
434 bool wxNotebook::MSWNotify(WXWPARAM wParam
, WXLPARAM lParam
)
436 wxNotebookEvent
event(wxEVT_NULL
, m_windowId
);
438 NMHDR
* hdr
= (NMHDR
*)lParam
;
439 switch ( hdr
->code
) {
441 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
444 case TCN_SELCHANGING
:
445 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
);
448 // prevent this msg from being passed to wxControl::MSWNotify which would
449 // retrun FALSE disabling the change of page
454 return wxControl::MSWNotify(wParam
, lParam
);
457 event
.SetSelection(TabCtrl_GetCurSel(m_hwnd
));
458 event
.SetOldSelection(m_nSelection
);
459 event
.SetEventObject(this);
460 event
.SetInt(LOWORD(wParam
));
462 return ProcessEvent(event
);
465 // ----------------------------------------------------------------------------
466 // wxNotebook helper functions
467 // ----------------------------------------------------------------------------
469 // hide the currently active panel and show the new one
470 void wxNotebook::ChangePage(int nOldSel
, int nSel
)
472 // it's not an error (the message may be generated by the tab control itself)
473 // and it may happen - just do nothing
474 if ( nSel
== nOldSel
)
478 m_aPages
[nOldSel
]->Show(FALSE
);
480 wxNotebookPage
*pPage
= m_aPages
[nSel
];