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 ///////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "notebook.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
25 #include "wx/string.h"
29 #include "wx/imaglist.h"
31 #include "wx/control.h"
32 #include "wx/notebook.h"
34 #include "wx/msw/private.h"
36 // Windows standard headers
38 #error "wxNotebook is only supported Windows 95 and above"
41 #include <windowsx.h> // for SetWindowFont
44 #ifdef __GNUWIN32_OLD__
45 #include "wx/msw/gnuwin32/extra.h"
49 #if defined(__WIN95__) && !(defined(__GNUWIN32_OLD__) || defined(__TWIN32__))
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 // check that the page index is valid
58 #define IS_VALID_PAGE(nPage) (((nPage) >= 0) && ((nPage) < GetPageCount()))
61 #define m_hwnd (HWND)GetHWND()
63 // ----------------------------------------------------------------------------
65 // ----------------------------------------------------------------------------
67 // This is a work-around for missing defines in gcc-2.95 headers
69 #define TCS_RIGHT 0x0002
73 #define TCS_VERTICAL 0x0080
77 #define TCS_BOTTOM TCS_RIGHT
80 // ----------------------------------------------------------------------------
82 // ----------------------------------------------------------------------------
84 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
)
85 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
)
87 BEGIN_EVENT_TABLE(wxNotebook
, wxControl
)
88 EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange
)
90 EVT_SIZE(wxNotebook::OnSize
)
92 EVT_SET_FOCUS(wxNotebook::OnSetFocus
)
94 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
97 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
, wxControl
)
98 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxNotifyEvent
)
100 // ============================================================================
102 // ============================================================================
104 // ----------------------------------------------------------------------------
105 // wxNotebook construction
106 // ----------------------------------------------------------------------------
108 // common part of all ctors
109 void wxNotebook::Init()
112 m_bOwnsImageList
= FALSE
;
116 // default for dynamic class
117 wxNotebook::wxNotebook()
122 // the same arguments as for wxControl
123 wxNotebook::wxNotebook(wxWindow
*parent
,
128 const wxString
& name
)
132 Create(parent
, id
, pos
, size
, style
, name
);
136 bool wxNotebook::Create(wxWindow
*parent
,
141 const wxString
& name
)
144 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
148 m_backgroundColour
= wxColour(GetSysColor(COLOR_BTNFACE
));
149 m_foregroundColour
= *wxBLACK
;
152 m_windowStyle
= style
| wxTAB_TRAVERSAL
;
154 long tabStyle
= WS_CHILD
| WS_VISIBLE
| WS_TABSTOP
| TCS_TABS
;
156 if (m_windowStyle
& wxCLIP_CHILDREN
)
157 tabStyle
|= WS_CLIPCHILDREN
;
158 if ( m_windowStyle
& wxTC_MULTILINE
)
159 tabStyle
|= TCS_MULTILINE
;
160 if ( m_windowStyle
& wxBORDER
)
161 tabStyle
&= WS_BORDER
;
162 if (m_windowStyle
& wxNB_FIXEDWIDTH
)
163 tabStyle
|= TCS_FIXEDWIDTH
;
164 if (m_windowStyle
& wxNB_BOTTOM
)
165 tabStyle
|= TCS_RIGHT
;
166 if (m_windowStyle
& wxNB_LEFT
)
167 tabStyle
|= TCS_VERTICAL
;
168 if (m_windowStyle
& wxNB_RIGHT
)
169 tabStyle
|= TCS_VERTICAL
|TCS_RIGHT
;
172 if ( !MSWCreate(GetId(), GetParent(), WC_TABCONTROL
,
173 this, NULL
, pos
.x
, pos
.y
, size
.x
, size
.y
,
179 // Not all compilers recognise SetWindowFont
180 ::SendMessage(GetHwnd(), WM_SETFONT
,
181 (WPARAM
)::GetStockObject(DEFAULT_GUI_FONT
), TRUE
);
184 if ( parent
!= NULL
)
185 parent
->AddChild(this);
193 wxNotebook::~wxNotebook()
195 if (m_bOwnsImageList
) delete m_pImageList
;
198 // ----------------------------------------------------------------------------
199 // wxNotebook accessors
200 // ----------------------------------------------------------------------------
201 int wxNotebook::GetPageCount() const
204 wxASSERT( (int)m_aPages
.Count() == TabCtrl_GetItemCount(m_hwnd
) );
206 return m_aPages
.Count();
209 int wxNotebook::GetRowCount() const
211 return TabCtrl_GetRowCount(m_hwnd
);
214 int wxNotebook::SetSelection(int nPage
)
216 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, wxT("notebook page out of range") );
218 ChangePage(m_nSelection
, nPage
);
220 return TabCtrl_SetCurSel(m_hwnd
, nPage
);
223 void wxNotebook::AdvanceSelection(bool bForward
)
225 int nSel
= GetSelection();
226 int nMax
= GetPageCount() - 1;
228 SetSelection(nSel
== nMax
? 0 : nSel
+ 1);
230 SetSelection(nSel
== 0 ? nMax
: nSel
- 1);
233 bool wxNotebook::SetPageText(int nPage
, const wxString
& strText
)
235 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, wxT("notebook page out of range") );
238 tcItem
.mask
= TCIF_TEXT
;
239 tcItem
.pszText
= (wxChar
*)strText
.c_str();
241 return TabCtrl_SetItem(m_hwnd
, nPage
, &tcItem
) != 0;
244 wxString
wxNotebook::GetPageText(int nPage
) const
246 wxCHECK_MSG( IS_VALID_PAGE(nPage
), wxT(""), wxT("notebook page out of range") );
250 tcItem
.mask
= TCIF_TEXT
;
251 tcItem
.pszText
= buf
;
252 tcItem
.cchTextMax
= WXSIZEOF(buf
);
255 if ( TabCtrl_GetItem(m_hwnd
, nPage
, &tcItem
) )
256 str
= tcItem
.pszText
;
261 int wxNotebook::GetPageImage(int nPage
) const
263 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, wxT("notebook page out of range") );
266 tcItem
.mask
= TCIF_IMAGE
;
268 return TabCtrl_GetItem(m_hwnd
, nPage
, &tcItem
) ? tcItem
.iImage
: -1;
271 bool wxNotebook::SetPageImage(int nPage
, int nImage
)
273 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, wxT("notebook page out of range") );
276 tcItem
.mask
= TCIF_IMAGE
;
277 tcItem
.iImage
= nImage
;
279 return TabCtrl_SetItem(m_hwnd
, nPage
, &tcItem
) != 0;
282 void wxNotebook::SetImageList(wxImageList
* imageList
)
284 if (m_bOwnsImageList
) delete m_pImageList
;
285 m_pImageList
= imageList
;
286 m_bOwnsImageList
= FALSE
;
287 TabCtrl_SetImageList(m_hwnd
, (HIMAGELIST
)imageList
->GetHIMAGELIST());
290 void wxNotebook::AssignImageList(wxImageList
* imageList
)
292 SetImageList(imageList
);
293 m_bOwnsImageList
= TRUE
;
296 // ----------------------------------------------------------------------------
297 // wxNotebook size settings
298 // ----------------------------------------------------------------------------
300 void wxNotebook::SetPageSize(const wxSize
& size
)
302 // transform the page size into the notebook size
309 TabCtrl_AdjustRect(GetHwnd(), TRUE
, &rc
);
312 SetSize(rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
315 void wxNotebook::SetPadding(const wxSize
& padding
)
317 TabCtrl_SetPadding(GetHwnd(), padding
.x
, padding
.y
);
320 // Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
322 void wxNotebook::SetTabSize(const wxSize
& sz
)
324 ::SendMessage(GetHwnd(), TCM_SETITEMSIZE
, 0, MAKELPARAM(sz
.x
, sz
.y
));
327 // ----------------------------------------------------------------------------
328 // wxNotebook operations
329 // ----------------------------------------------------------------------------
331 // remove one page from the notebook
332 bool wxNotebook::DeletePage(int nPage
)
334 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, wxT("notebook page out of range") );
336 if ( m_nSelection
== nPage
) {
337 // advance selection backwards - the page being deleted shouldn't be left
339 AdvanceSelection(FALSE
);
342 TabCtrl_DeleteItem(m_hwnd
, nPage
);
344 delete m_aPages
[nPage
];
345 m_aPages
.Remove(nPage
);
347 if ( m_aPages
.IsEmpty() ) {
348 // no selection if the notebook became empty
352 m_nSelection
= TabCtrl_GetCurSel(m_hwnd
);
358 // remove one page from the notebook, without deleting
359 bool wxNotebook::RemovePage(int nPage
)
361 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, wxT("notebook page out of range") );
363 TabCtrl_DeleteItem(m_hwnd
, nPage
);
365 m_aPages
.Remove(nPage
);
367 if ( m_aPages
.IsEmpty() )
370 m_nSelection
= TabCtrl_GetCurSel(m_hwnd
);
376 bool wxNotebook::DeleteAllPages()
378 int nPageCount
= GetPageCount();
380 for ( nPage
= 0; nPage
< nPageCount
; nPage
++ )
381 delete m_aPages
[nPage
];
385 TabCtrl_DeleteAllItems(m_hwnd
);
392 // add a page to the notebook
393 bool wxNotebook::AddPage(wxNotebookPage
*pPage
,
394 const wxString
& strText
,
398 return InsertPage(GetPageCount(), pPage
, strText
, bSelect
, imageId
);
401 // same as AddPage() but does it at given position
402 bool wxNotebook::InsertPage(int nPage
,
403 wxNotebookPage
*pPage
,
404 const wxString
& strText
,
408 wxASSERT( pPage
!= NULL
);
409 wxCHECK( IS_VALID_PAGE(nPage
) || nPage
== GetPageCount(), FALSE
);
411 // do add the tab to the control
413 // init all fields to 0
415 memset(&tcItem
, 0, sizeof(tcItem
));
419 tcItem
.mask
|= TCIF_IMAGE
;
420 tcItem
.iImage
= imageId
;
423 if ( !strText
.IsEmpty() )
425 tcItem
.mask
|= TCIF_TEXT
;
426 tcItem
.pszText
= (wxChar
*)strText
.c_str(); // const_cast
429 if ( TabCtrl_InsertItem(m_hwnd
, nPage
, &tcItem
) == -1 ) {
430 wxLogError(wxT("Can't create the notebook page '%s'."), strText
.c_str());
435 // if the inserted page is before the selected one, we must update the
436 // index of the selected page
437 if ( nPage
<= m_nSelection
)
439 // one extra page added
443 // save the pointer to the page
444 m_aPages
.Insert(pPage
, nPage
);
446 // don't show pages by default (we'll need to adjust their size first)
447 HWND hwnd
= GetWinHwnd(pPage
);
448 SetWindowLong(hwnd
, GWL_STYLE
, GetWindowLong(hwnd
, GWL_STYLE
) & ~WS_VISIBLE
);
450 // this updates internal flag too - otherwise it will get out of sync
453 // fit the notebook page to the tab control's display area
455 rc
.left
= rc
.top
= 0;
456 GetSize((int *)&rc
.right
, (int *)&rc
.bottom
);
457 TabCtrl_AdjustRect(m_hwnd
, FALSE
, &rc
);
458 pPage
->SetSize(rc
.left
, rc
.top
, rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
460 // some page should be selected: either this one or the first one if there is
461 // still no selection
465 else if ( m_nSelection
== -1 )
469 SetSelection(selNew
);
474 // ----------------------------------------------------------------------------
475 // wxNotebook callbacks
476 // ----------------------------------------------------------------------------
478 void wxNotebook::OnSize(wxSizeEvent
& event
)
480 // fit the notebook page to the tab control's display area
482 rc
.left
= rc
.top
= 0;
483 GetSize((int *)&rc
.right
, (int *)&rc
.bottom
);
485 TabCtrl_AdjustRect(m_hwnd
, FALSE
, &rc
);
487 int width
= rc
.right
- rc
.left
,
488 height
= rc
.bottom
- rc
.top
;
489 size_t nCount
= m_aPages
.Count();
490 for ( size_t nPage
= 0; nPage
< nCount
; nPage
++ ) {
491 wxNotebookPage
*pPage
= m_aPages
[nPage
];
492 pPage
->SetSize(rc
.left
, rc
.top
, width
, height
);
498 void wxNotebook::OnSelChange(wxNotebookEvent
& event
)
500 // is it our tab control?
501 if ( event
.GetEventObject() == this )
503 int sel
= event
.GetOldSelection();
505 m_aPages
[sel
]->Show(FALSE
);
507 sel
= event
.GetSelection();
510 wxNotebookPage
*pPage
= m_aPages
[sel
];
518 // we want to give others a chance to process this message as well
522 void wxNotebook::OnSetFocus(wxFocusEvent
& event
)
524 // this function is only called when the focus is explicitly set (i.e. from
525 // the program) to the notebook - in this case we don't need the
526 // complicated OnNavigationKey() logic because the programmer knows better
529 // set focus to the currently selected page if any
530 if ( m_nSelection
!= -1 )
531 m_aPages
[m_nSelection
]->SetFocus();
536 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
538 if ( event
.IsWindowChange() ) {
540 AdvanceSelection(event
.GetDirection());
543 // we get this event in 2 cases
545 // a) one of our pages might have generated it because the user TABbed
546 // out from it in which case we should propagate the event upwards and
547 // our parent will take care of setting the focus to prev/next sibling
551 // b) the parent panel wants to give the focus to us so that we
552 // forward it to our selected page. We can't deal with this in
553 // OnSetFocus() because we don't know which direction the focus came
554 // from in this case and so can't choose between setting the focus to
555 // first or last panel child
557 wxWindow
*parent
= GetParent();
558 if ( event
.GetEventObject() == parent
)
560 // no, it doesn't come from child, case (b): forward to a page
561 if ( m_nSelection
!= -1 )
563 // so that the page knows that the event comes from it's parent
564 // and is being propagated downwards
565 event
.SetEventObject(this);
567 wxWindow
*page
= m_aPages
[m_nSelection
];
568 if ( !page
->GetEventHandler()->ProcessEvent(event
) )
572 //else: page manages focus inside it itself
576 // we have no pages - still have to give focus to _something_
582 // it comes from our child, case (a), pass to the parent
584 event
.SetCurrentFocus(this);
585 parent
->GetEventHandler()->ProcessEvent(event
);
591 // ----------------------------------------------------------------------------
592 // wxNotebook base class virtuals
593 // ----------------------------------------------------------------------------
595 // override these 2 functions to do nothing: everything is done in OnSize
597 void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse
))
599 // don't set the sizes of the pages - their correct size is not yet known
600 wxControl::SetConstraintSizes(FALSE
);
603 bool wxNotebook::DoPhase(int WXUNUSED(nPhase
))
608 bool wxNotebook::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
* result
)
610 wxNotebookEvent
event(wxEVT_NULL
, m_windowId
);
612 NMHDR
* hdr
= (NMHDR
*)lParam
;
613 switch ( hdr
->code
) {
615 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
618 case TCN_SELCHANGING
:
619 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
);
623 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
626 event
.SetSelection(TabCtrl_GetCurSel(m_hwnd
));
627 event
.SetOldSelection(m_nSelection
);
628 event
.SetEventObject(this);
629 event
.SetInt(idCtrl
);
631 bool processed
= GetEventHandler()->ProcessEvent(event
);
632 *result
= !event
.IsAllowed();
636 // ----------------------------------------------------------------------------
637 // wxNotebook helper functions
638 // ----------------------------------------------------------------------------
640 // generate the page changing and changed events, hide the currently active
641 // panel and show the new one
642 void wxNotebook::ChangePage(int nOldSel
, int nSel
)
644 // MT-FIXME should use a real semaphore
645 static bool s_bInsideChangePage
= FALSE
;
647 // when we call ProcessEvent(), our own OnSelChange() is called which calls
648 // this function - break the infinite loop
649 if ( s_bInsideChangePage
)
652 // it's not an error (the message may be generated by the tab control itself)
653 // and it may happen - just do nothing
654 if ( nSel
== nOldSel
)
657 s_bInsideChangePage
= TRUE
;
659 wxNotebookEvent
event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, m_windowId
);
660 event
.SetSelection(nSel
);
661 event
.SetOldSelection(nOldSel
);
662 event
.SetEventObject(this);
663 if ( ProcessEvent(event
) && !event
.IsAllowed() )
665 // program doesn't allow the page change
666 s_bInsideChangePage
= FALSE
;
670 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
673 s_bInsideChangePage
= FALSE
;