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 licence
10 ///////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "notebook.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 #include "wx/string.h"
31 #include "wx/imaglist.h"
33 #include "wx/control.h"
34 #include "wx/notebook.h"
36 #include "wx/msw/private.h"
38 // Windows standard headers
40 #error "wxNotebook is only supported Windows 95 and above"
43 #include <windowsx.h> // for SetWindowFont
46 #ifdef __GNUWIN32_OLD__
47 #include "wx/msw/gnuwin32/extra.h"
51 #if defined(__WIN95__) && !((defined(__GNUWIN32_OLD__) || defined(__TWIN32__)) && !defined(__CYGWIN10__))
55 // ----------------------------------------------------------------------------
57 // ----------------------------------------------------------------------------
59 // check that the page index is valid
60 #define IS_VALID_PAGE(nPage) (((nPage) >= 0) && ((nPage) < GetPageCount()))
63 #define m_hwnd (HWND)GetHWND()
65 // ----------------------------------------------------------------------------
67 // ----------------------------------------------------------------------------
69 // This is a work-around for missing defines in gcc-2.95 headers
71 #define TCS_RIGHT 0x0002
75 #define TCS_VERTICAL 0x0080
79 #define TCS_BOTTOM TCS_RIGHT
82 // ----------------------------------------------------------------------------
84 // ----------------------------------------------------------------------------
86 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
)
87 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
)
89 BEGIN_EVENT_TABLE(wxNotebook
, wxControl
)
90 EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange
)
92 EVT_SIZE(wxNotebook::OnSize
)
94 EVT_SET_FOCUS(wxNotebook::OnSetFocus
)
96 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
99 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
, wxControl
)
100 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxNotifyEvent
)
102 // ============================================================================
104 // ============================================================================
106 // ----------------------------------------------------------------------------
107 // wxNotebook construction
108 // ----------------------------------------------------------------------------
110 // common part of all ctors
111 void wxNotebook::Init()
117 // default for dynamic class
118 wxNotebook::wxNotebook()
123 // the same arguments as for wxControl
124 wxNotebook::wxNotebook(wxWindow
*parent
,
129 const wxString
& name
)
133 Create(parent
, id
, pos
, size
, style
, name
);
137 bool wxNotebook::Create(wxWindow
*parent
,
142 const wxString
& name
)
145 if ( !CreateControl(parent
, id
, pos
, size
, style
| wxTAB_TRAVERSAL
,
146 wxDefaultValidator
, name
) )
149 if ( !MSWCreateControl(WC_TABCONTROL
, _T(""), pos
, size
) )
152 SetBackgroundColour(wxColour(::GetSysColor(COLOR_BTNFACE
)));
157 WXDWORD
wxNotebook::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
159 WXDWORD tabStyle
= wxControl::MSWGetStyle(style
, exstyle
);
161 tabStyle
|= WS_TABSTOP
| TCS_TABS
;
163 if ( style
& wxNB_MULTILINE
)
164 tabStyle
|= TCS_MULTILINE
;
165 if ( style
& wxNB_FIXEDWIDTH
)
166 tabStyle
|= TCS_FIXEDWIDTH
;
168 if ( style
& wxNB_BOTTOM
)
169 tabStyle
|= TCS_RIGHT
;
170 else if ( style
& wxNB_LEFT
)
171 tabStyle
|= TCS_VERTICAL
;
172 else if ( style
& wxNB_RIGHT
)
173 tabStyle
|= TCS_VERTICAL
| TCS_RIGHT
;
178 // note that we never want to have the default WS_EX_CLIENTEDGE style
179 // as it looks too ugly for the notebooks
186 // ----------------------------------------------------------------------------
187 // wxNotebook accessors
188 // ----------------------------------------------------------------------------
190 int wxNotebook::GetPageCount() const
193 wxASSERT( (int)m_pages
.Count() == TabCtrl_GetItemCount(m_hwnd
) );
195 return m_pages
.Count();
198 int wxNotebook::GetRowCount() const
200 return TabCtrl_GetRowCount(m_hwnd
);
203 int wxNotebook::SetSelection(int nPage
)
205 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, wxT("notebook page out of range") );
207 if ( nPage
!= m_nSelection
)
209 wxNotebookEvent
event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, m_windowId
);
210 event
.SetSelection(nPage
);
211 event
.SetOldSelection(m_nSelection
);
212 event
.SetEventObject(this);
213 if ( !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
215 // program allows the page change
216 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
217 (void)GetEventHandler()->ProcessEvent(event
);
219 TabCtrl_SetCurSel(m_hwnd
, nPage
);
226 bool wxNotebook::SetPageText(int nPage
, const wxString
& strText
)
228 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, wxT("notebook page out of range") );
231 tcItem
.mask
= TCIF_TEXT
;
232 tcItem
.pszText
= (wxChar
*)strText
.c_str();
234 return TabCtrl_SetItem(m_hwnd
, nPage
, &tcItem
) != 0;
237 wxString
wxNotebook::GetPageText(int nPage
) const
239 wxCHECK_MSG( IS_VALID_PAGE(nPage
), wxT(""), wxT("notebook page out of range") );
243 tcItem
.mask
= TCIF_TEXT
;
244 tcItem
.pszText
= buf
;
245 tcItem
.cchTextMax
= WXSIZEOF(buf
);
248 if ( TabCtrl_GetItem(m_hwnd
, nPage
, &tcItem
) )
249 str
= tcItem
.pszText
;
254 int wxNotebook::GetPageImage(int nPage
) const
256 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, wxT("notebook page out of range") );
259 tcItem
.mask
= TCIF_IMAGE
;
261 return TabCtrl_GetItem(m_hwnd
, nPage
, &tcItem
) ? tcItem
.iImage
: -1;
264 bool wxNotebook::SetPageImage(int nPage
, int nImage
)
266 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, wxT("notebook page out of range") );
269 tcItem
.mask
= TCIF_IMAGE
;
270 tcItem
.iImage
= nImage
;
272 return TabCtrl_SetItem(m_hwnd
, nPage
, &tcItem
) != 0;
275 void wxNotebook::SetImageList(wxImageList
* imageList
)
277 wxNotebookBase::SetImageList(imageList
);
281 TabCtrl_SetImageList(m_hwnd
, (HIMAGELIST
)imageList
->GetHIMAGELIST());
285 // ----------------------------------------------------------------------------
286 // wxNotebook size settings
287 // ----------------------------------------------------------------------------
289 void wxNotebook::SetPageSize(const wxSize
& size
)
291 // transform the page size into the notebook size
298 TabCtrl_AdjustRect(GetHwnd(), TRUE
, &rc
);
301 SetSize(rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
304 void wxNotebook::SetPadding(const wxSize
& padding
)
306 TabCtrl_SetPadding(GetHwnd(), padding
.x
, padding
.y
);
309 // Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
311 void wxNotebook::SetTabSize(const wxSize
& sz
)
313 ::SendMessage(GetHwnd(), TCM_SETITEMSIZE
, 0, MAKELPARAM(sz
.x
, sz
.y
));
316 // ----------------------------------------------------------------------------
317 // wxNotebook operations
318 // ----------------------------------------------------------------------------
320 // remove one page from the notebook, without deleting
321 wxNotebookPage
*wxNotebook::DoRemovePage(int nPage
)
323 wxNotebookPage
*pageRemoved
= wxNotebookBase::DoRemovePage(nPage
);
327 TabCtrl_DeleteItem(m_hwnd
, nPage
);
329 if ( m_pages
.IsEmpty() )
331 // no selection any more, the notebook becamse empty
334 else // notebook still not empty
336 // change the selected page if it was deleted or became invalid
338 if ( m_nSelection
== GetPageCount() )
340 // last page deleted, make the new last page the new selection
341 selNew
= m_nSelection
- 1;
343 else if ( nPage
<= m_nSelection
)
345 // we must show another page, even if it has the same index
346 selNew
= m_nSelection
;
348 else // nothing changes for the currently selected page
352 // we still must refresh the current page: this needs to be done
353 // for some unknown reason if the tab control shows the up-down
354 // control (i.e. when there are too many pages) -- otherwise after
355 // deleting a page nothing at all is shown
356 m_pages
[m_nSelection
]->Refresh();
361 // m_nSelection must be always valid so reset it before calling
364 SetSelection(selNew
);
372 bool wxNotebook::DeleteAllPages()
374 int nPageCount
= GetPageCount();
376 for ( nPage
= 0; nPage
< nPageCount
; nPage
++ )
377 delete m_pages
[nPage
];
381 TabCtrl_DeleteAllItems(m_hwnd
);
388 // add a page to the notebook
389 bool wxNotebook::AddPage(wxNotebookPage
*pPage
,
390 const wxString
& strText
,
394 return InsertPage(GetPageCount(), pPage
, strText
, bSelect
, imageId
);
397 // same as AddPage() but does it at given position
398 bool wxNotebook::InsertPage(int nPage
,
399 wxNotebookPage
*pPage
,
400 const wxString
& strText
,
404 wxCHECK_MSG( pPage
!= NULL
, FALSE
, _T("NULL page in wxNotebook::InsertPage") );
405 wxCHECK_MSG( IS_VALID_PAGE(nPage
) || nPage
== GetPageCount(), FALSE
,
406 _T("invalid index in wxNotebook::InsertPage") );
409 // add a new tab to the control
410 // ----------------------------
412 // init all fields to 0
414 wxZeroMemory(tcItem
);
416 // set the image, if any
419 tcItem
.mask
|= TCIF_IMAGE
;
420 tcItem
.iImage
= imageId
;
424 if ( !strText
.IsEmpty() )
426 tcItem
.mask
|= TCIF_TEXT
;
427 tcItem
.pszText
= (wxChar
*)strText
.c_str(); // const_cast
430 // fit the notebook page to the tab control's display area: this should be
431 // done before adding it to the notebook or TabCtrl_InsertItem() will
432 // change the notebooks size itself!
434 rc
.left
= rc
.top
= 0;
435 GetSize((int *)&rc
.right
, (int *)&rc
.bottom
);
436 TabCtrl_AdjustRect(m_hwnd
, FALSE
, &rc
);
437 pPage
->SetSize(rc
.left
, rc
.top
, rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
440 // finally do insert it
441 if ( TabCtrl_InsertItem(m_hwnd
, nPage
, &tcItem
) == -1 ) {
442 wxLogError(wxT("Can't create the notebook page '%s'."), strText
.c_str());
447 // succeeded: save the pointer to the page
448 m_pages
.Insert(pPage
, nPage
);
450 // hide the page: unless it is selected, it shouldn't be shown (and if it
451 // is selected it will be shown later)
452 HWND hwnd
= GetWinHwnd(pPage
);
453 SetWindowLong(hwnd
, GWL_STYLE
, GetWindowLong(hwnd
, GWL_STYLE
) & ~WS_VISIBLE
);
455 // this updates internal flag too -- otherwise it would get out of sync
456 // with the real state
460 // now deal with the selection
461 // ---------------------------
463 // if the inserted page is before the selected one, we must update the
464 // index of the selected page
465 if ( nPage
<= m_nSelection
)
467 // one extra page added
471 // some page should be selected: either this one or the first one if there
472 // is still no selection
476 else if ( m_nSelection
== -1 )
480 SetSelection(selNew
);
485 // ----------------------------------------------------------------------------
486 // wxNotebook callbacks
487 // ----------------------------------------------------------------------------
489 void wxNotebook::OnSize(wxSizeEvent
& event
)
491 // fit the notebook page to the tab control's display area
493 rc
.left
= rc
.top
= 0;
494 GetSize((int *)&rc
.right
, (int *)&rc
.bottom
);
496 TabCtrl_AdjustRect(m_hwnd
, FALSE
, &rc
);
498 int width
= rc
.right
- rc
.left
,
499 height
= rc
.bottom
- rc
.top
;
500 size_t nCount
= m_pages
.Count();
501 for ( size_t nPage
= 0; nPage
< nCount
; nPage
++ ) {
502 wxNotebookPage
*pPage
= m_pages
[nPage
];
503 pPage
->SetSize(rc
.left
, rc
.top
, width
, height
);
509 void wxNotebook::OnSelChange(wxNotebookEvent
& event
)
511 // is it our tab control?
512 if ( event
.GetEventObject() == this )
514 int sel
= event
.GetOldSelection();
516 m_pages
[sel
]->Show(FALSE
);
518 sel
= event
.GetSelection();
521 wxNotebookPage
*pPage
= m_pages
[sel
];
529 // we want to give others a chance to process this message as well
533 void wxNotebook::OnSetFocus(wxFocusEvent
& event
)
535 // this function is only called when the focus is explicitly set (i.e. from
536 // the program) to the notebook - in this case we don't need the
537 // complicated OnNavigationKey() logic because the programmer knows better
540 // set focus to the currently selected page if any
541 if ( m_nSelection
!= -1 )
542 m_pages
[m_nSelection
]->SetFocus();
547 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
549 if ( event
.IsWindowChange() ) {
551 AdvanceSelection(event
.GetDirection());
554 // we get this event in 2 cases
556 // a) one of our pages might have generated it because the user TABbed
557 // out from it in which case we should propagate the event upwards and
558 // our parent will take care of setting the focus to prev/next sibling
562 // b) the parent panel wants to give the focus to us so that we
563 // forward it to our selected page. We can't deal with this in
564 // OnSetFocus() because we don't know which direction the focus came
565 // from in this case and so can't choose between setting the focus to
566 // first or last panel child
568 wxWindow
*parent
= GetParent();
569 if ( event
.GetEventObject() == parent
)
571 // no, it doesn't come from child, case (b): forward to a page
572 if ( m_nSelection
!= -1 )
574 // so that the page knows that the event comes from it's parent
575 // and is being propagated downwards
576 event
.SetEventObject(this);
578 wxWindow
*page
= m_pages
[m_nSelection
];
579 if ( !page
->GetEventHandler()->ProcessEvent(event
) )
583 //else: page manages focus inside it itself
587 // we have no pages - still have to give focus to _something_
593 // it comes from our child, case (a), pass to the parent
595 event
.SetCurrentFocus(this);
596 parent
->GetEventHandler()->ProcessEvent(event
);
602 // ----------------------------------------------------------------------------
603 // wxNotebook base class virtuals
604 // ----------------------------------------------------------------------------
606 #if wxUSE_CONSTRAINTS
608 // override these 2 functions to do nothing: everything is done in OnSize
610 void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse
))
612 // don't set the sizes of the pages - their correct size is not yet known
613 wxControl::SetConstraintSizes(FALSE
);
616 bool wxNotebook::DoPhase(int WXUNUSED(nPhase
))
621 #endif // wxUSE_CONSTRAINTS
623 // ----------------------------------------------------------------------------
624 // wxNotebook Windows message handlers
625 // ----------------------------------------------------------------------------
627 bool wxNotebook::MSWOnScroll(int orientation
, WXWORD nSBCode
,
628 WXWORD pos
, WXHWND control
)
630 // don't generate EVT_SCROLLWIN events for the WM_SCROLLs coming from the
635 return wxNotebookBase::MSWOnScroll(orientation
, nSBCode
, pos
, control
);
638 bool wxNotebook::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
* result
)
640 wxNotebookEvent
event(wxEVT_NULL
, m_windowId
);
642 NMHDR
* hdr
= (NMHDR
*)lParam
;
643 switch ( hdr
->code
) {
645 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
648 case TCN_SELCHANGING
:
649 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
);
653 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
656 event
.SetSelection(TabCtrl_GetCurSel(m_hwnd
));
657 event
.SetOldSelection(m_nSelection
);
658 event
.SetEventObject(this);
659 event
.SetInt(idCtrl
);
661 bool processed
= GetEventHandler()->ProcessEvent(event
);
662 *result
= !event
.IsAllowed();
666 #endif // wxUSE_NOTEBOOK