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 ///////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "notebook.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 #include "wx/string.h"
32 #include "wx/imaglist.h"
34 #include "wx/control.h"
35 #include "wx/notebook.h"
38 #include "wx/msw/private.h"
42 #ifdef __GNUWIN32_OLD__
43 #include "wx/msw/gnuwin32/extra.h"
46 #if !(defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__))
50 #include "wx/msw/winundef.h"
53 #include "wx/msw/uxtheme.h"
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
60 // check that the page index is valid
61 #define IS_VALID_PAGE(nPage) ((nPage) < GetPageCount())
64 #define m_hwnd (HWND)GetHWND()
66 // ----------------------------------------------------------------------------
68 // ----------------------------------------------------------------------------
70 // This is a work-around for missing defines in gcc-2.95 headers
72 #define TCS_RIGHT 0x0002
76 #define TCS_VERTICAL 0x0080
80 #define TCS_BOTTOM TCS_RIGHT
83 // ----------------------------------------------------------------------------
85 // ----------------------------------------------------------------------------
87 #include <wx/listimpl.cpp>
89 WX_DEFINE_LIST( wxNotebookPageInfoList
) ;
91 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
)
92 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
)
94 BEGIN_EVENT_TABLE(wxNotebook
, wxControl
)
95 EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange
)
97 EVT_SIZE(wxNotebook::OnSize
)
99 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
102 #if wxUSE_EXTENDED_RTTI
103 WX_DEFINE_FLAGS( wxNotebookStyle
)
105 wxBEGIN_FLAGS( wxNotebookStyle
)
106 // new style border flags, we put them first to
107 // use them for streaming out
108 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
109 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
110 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
111 wxFLAGS_MEMBER(wxBORDER_RAISED
)
112 wxFLAGS_MEMBER(wxBORDER_STATIC
)
113 wxFLAGS_MEMBER(wxBORDER_NONE
)
115 // old style border flags
116 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
117 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
118 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
119 wxFLAGS_MEMBER(wxRAISED_BORDER
)
120 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
121 wxFLAGS_MEMBER(wxBORDER
)
123 // standard window styles
124 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
125 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
126 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
127 wxFLAGS_MEMBER(wxWANTS_CHARS
)
128 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
129 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
130 wxFLAGS_MEMBER(wxVSCROLL
)
131 wxFLAGS_MEMBER(wxHSCROLL
)
133 wxFLAGS_MEMBER(wxNB_FIXEDWIDTH
)
134 wxFLAGS_MEMBER(wxNB_LEFT
)
135 wxFLAGS_MEMBER(wxNB_RIGHT
)
136 wxFLAGS_MEMBER(wxNB_BOTTOM
)
138 wxEND_FLAGS( wxNotebookStyle
)
140 IMPLEMENT_DYNAMIC_CLASS_XTI(wxNotebook
, wxControl
,"wx/notebook.h")
141 IMPLEMENT_DYNAMIC_CLASS_XTI(wxNotebookPageInfo
, wxObject
, "wx/notebook.h" )
143 wxCOLLECTION_TYPE_INFO( wxNotebookPageInfo
* , wxNotebookPageInfoList
) ;
145 template<> void wxCollectionToVariantArray( wxNotebookPageInfoList
const &theList
, wxxVariantArray
&value
)
147 wxListCollectionToVariantArray
<wxNotebookPageInfoList::compatibility_iterator
>( theList
, value
) ;
150 wxBEGIN_PROPERTIES_TABLE(wxNotebook
)
151 wxEVENT_PROPERTY( PageChanging
, wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, wxNotebookEvent
)
152 wxEVENT_PROPERTY( PageChanged
, wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, wxNotebookEvent
)
154 wxPROPERTY_COLLECTION( PageInfos
, wxNotebookPageInfoList
, wxNotebookPageInfo
* , AddPageInfo
, GetPageInfos
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
155 wxPROPERTY_FLAGS( WindowStyle
, wxNotebookStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
156 wxEND_PROPERTIES_TABLE()
158 wxBEGIN_HANDLERS_TABLE(wxNotebook
)
159 wxEND_HANDLERS_TABLE()
161 wxCONSTRUCTOR_5( wxNotebook
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
164 wxBEGIN_PROPERTIES_TABLE(wxNotebookPageInfo
)
165 wxREADONLY_PROPERTY( Page
, wxNotebookPage
* , GetPage
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
166 wxREADONLY_PROPERTY( Text
, wxString
, GetText
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
167 wxREADONLY_PROPERTY( Selected
, bool , GetSelected
, false, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
168 wxREADONLY_PROPERTY( ImageId
, int , GetImageId
, -1 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
169 wxEND_PROPERTIES_TABLE()
171 wxBEGIN_HANDLERS_TABLE(wxNotebookPageInfo
)
172 wxEND_HANDLERS_TABLE()
174 wxCONSTRUCTOR_4( wxNotebookPageInfo
, wxNotebookPage
* , Page
, wxString
, Text
, bool , Selected
, int , ImageId
)
177 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
, wxControl
)
178 IMPLEMENT_DYNAMIC_CLASS(wxNotebookPageInfo
, wxObject
)
180 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxNotifyEvent
)
182 // ============================================================================
184 // ============================================================================
186 // ----------------------------------------------------------------------------
187 // wxNotebook construction
188 // ----------------------------------------------------------------------------
190 const wxNotebookPageInfoList
& wxNotebook::GetPageInfos() const
192 wxNotebookPageInfoList
* list
= const_cast< wxNotebookPageInfoList
* >( &m_pageInfos
) ;
193 WX_CLEAR_LIST( wxNotebookPageInfoList
, *list
) ;
194 for( size_t i
= 0 ; i
< GetPageCount() ; ++i
)
196 wxNotebookPageInfo
*info
= new wxNotebookPageInfo() ;
197 info
->Create( const_cast<wxNotebook
*>(this)->GetPage(i
) , GetPageText(i
) , GetSelection() == int(i
) , GetPageImage(i
) ) ;
198 list
->Append( info
) ;
203 // common part of all ctors
204 void wxNotebook::Init()
210 m_hbrBackground
= NULL
;
211 #endif // wxUSE_UXTHEME
214 // default for dynamic class
215 wxNotebook::wxNotebook()
220 // the same arguments as for wxControl
221 wxNotebook::wxNotebook(wxWindow
*parent
,
226 const wxString
& name
)
230 Create(parent
, id
, pos
, size
, style
, name
);
234 bool wxNotebook::Create(wxWindow
*parent
,
239 const wxString
& name
)
241 // comctl32.dll 6.0 doesn't support non-top tabs with visual styles (the
242 // control is simply not rendered correctly), so disable them in this case
243 const int verComCtl32
= wxApp::GetComCtl32Version();
244 if ( verComCtl32
== 600 )
246 // check if we use themes at all -- if we don't, we're still ok
248 if ( wxUxThemeEngine::GetIfActive() )
251 style
&= ~(wxNB_BOTTOM
| wxNB_LEFT
| wxNB_RIGHT
);
255 if ( !CreateControl(parent
, id
, pos
, size
, style
| wxTAB_TRAVERSAL
,
256 wxDefaultValidator
, name
) )
259 if ( !MSWCreateControl(WC_TABCONTROL
, wxEmptyString
, pos
, size
) )
265 WXDWORD
wxNotebook::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
267 WXDWORD tabStyle
= wxControl::MSWGetStyle(style
, exstyle
);
269 tabStyle
|= WS_TABSTOP
| TCS_TABS
;
271 if ( style
& wxNB_MULTILINE
)
272 tabStyle
|= TCS_MULTILINE
;
273 if ( style
& wxNB_FIXEDWIDTH
)
274 tabStyle
|= TCS_FIXEDWIDTH
;
276 if ( style
& wxNB_BOTTOM
)
277 tabStyle
|= TCS_RIGHT
;
278 else if ( style
& wxNB_LEFT
)
279 tabStyle
|= TCS_VERTICAL
;
280 else if ( style
& wxNB_RIGHT
)
281 tabStyle
|= TCS_VERTICAL
| TCS_RIGHT
;
286 // note that we never want to have the default WS_EX_CLIENTEDGE style
287 // as it looks too ugly for the notebooks
294 wxNotebook::~wxNotebook()
297 if ( m_hbrBackground
)
298 ::DeleteObject((HBRUSH
)m_hbrBackground
);
299 #endif // wxUSE_UXTHEME
302 // ----------------------------------------------------------------------------
303 // wxNotebook accessors
304 // ----------------------------------------------------------------------------
306 size_t wxNotebook::GetPageCount() const
309 wxASSERT( (int)m_pages
.Count() == TabCtrl_GetItemCount(m_hwnd
) );
311 return m_pages
.Count();
314 int wxNotebook::GetRowCount() const
316 return TabCtrl_GetRowCount(m_hwnd
);
319 int wxNotebook::SetSelection(size_t nPage
)
321 wxCHECK_MSG( IS_VALID_PAGE(nPage
), wxNOT_FOUND
, wxT("notebook page out of range") );
323 if ( int(nPage
) != m_nSelection
)
325 wxNotebookEvent
event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, m_windowId
);
326 event
.SetSelection(nPage
);
327 event
.SetOldSelection(m_nSelection
);
328 event
.SetEventObject(this);
329 if ( !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
331 // program allows the page change
332 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
333 (void)GetEventHandler()->ProcessEvent(event
);
335 TabCtrl_SetCurSel(m_hwnd
, nPage
);
342 bool wxNotebook::SetPageText(size_t nPage
, const wxString
& strText
)
344 wxCHECK_MSG( IS_VALID_PAGE(nPage
), false, wxT("notebook page out of range") );
347 tcItem
.mask
= TCIF_TEXT
;
348 tcItem
.pszText
= (wxChar
*)strText
.c_str();
350 return TabCtrl_SetItem(m_hwnd
, nPage
, &tcItem
) != 0;
353 wxString
wxNotebook::GetPageText(size_t nPage
) const
355 wxCHECK_MSG( IS_VALID_PAGE(nPage
), wxEmptyString
, wxT("notebook page out of range") );
359 tcItem
.mask
= TCIF_TEXT
;
360 tcItem
.pszText
= buf
;
361 tcItem
.cchTextMax
= WXSIZEOF(buf
);
364 if ( TabCtrl_GetItem(m_hwnd
, nPage
, &tcItem
) )
365 str
= tcItem
.pszText
;
370 int wxNotebook::GetPageImage(size_t nPage
) const
372 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, wxT("notebook page out of range") );
375 tcItem
.mask
= TCIF_IMAGE
;
377 return TabCtrl_GetItem(m_hwnd
, nPage
, &tcItem
) ? tcItem
.iImage
: -1;
380 bool wxNotebook::SetPageImage(size_t nPage
, int nImage
)
382 wxCHECK_MSG( IS_VALID_PAGE(nPage
), false, wxT("notebook page out of range") );
385 tcItem
.mask
= TCIF_IMAGE
;
386 tcItem
.iImage
= nImage
;
388 return TabCtrl_SetItem(m_hwnd
, nPage
, &tcItem
) != 0;
391 void wxNotebook::SetImageList(wxImageList
* imageList
)
393 wxNotebookBase::SetImageList(imageList
);
397 TabCtrl_SetImageList(m_hwnd
, (HIMAGELIST
)imageList
->GetHIMAGELIST());
401 // ----------------------------------------------------------------------------
402 // wxNotebook size settings
403 // ----------------------------------------------------------------------------
405 void wxNotebook::SetPageSize(const wxSize
& size
)
407 // transform the page size into the notebook size
414 TabCtrl_AdjustRect(GetHwnd(), true, &rc
);
417 SetSize(rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
420 void wxNotebook::SetPadding(const wxSize
& padding
)
422 TabCtrl_SetPadding(GetHwnd(), padding
.x
, padding
.y
);
425 // Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
427 void wxNotebook::SetTabSize(const wxSize
& sz
)
429 ::SendMessage(GetHwnd(), TCM_SETITEMSIZE
, 0, MAKELPARAM(sz
.x
, sz
.y
));
432 wxSize
wxNotebook::CalcSizeFromPage(const wxSize
& sizePage
) const
434 wxSize sizeTotal
= sizePage
;
436 // We need to make getting tab size part of the wxWidgets API.
437 wxSize
tabSize(0, 0);
438 if (GetPageCount() > 0)
441 TabCtrl_GetItemRect((HWND
) GetHWND(), 0, & rect
);
442 tabSize
.x
= rect
.right
- rect
.left
;
443 tabSize
.y
= rect
.bottom
- rect
.top
;
445 if ( HasFlag(wxNB_LEFT
) || HasFlag(wxNB_RIGHT
) )
447 sizeTotal
.x
+= tabSize
.x
+ 7;
453 sizeTotal
.y
+= tabSize
.y
+ 7;
459 void wxNotebook::AdjustPageSize(wxNotebookPage
*page
)
461 wxCHECK_RET( page
, _T("NULL page in wxNotebook::AdjustPageSize") );
467 // get the page size from the notebook size
468 GetSize((int *)&rc
.right
, (int *)&rc
.bottom
);
470 // This check is to work around a bug in TabCtrl_AdjustRect which will
471 // cause a crash on win2k, or on XP with themes disabled, if the
472 // wxNB_MULTILINE style is used and the rectangle is very small, (such as
473 // when the notebook is first created.) The value of 20 is just
474 // arbitrarily chosen, if there is a better way to determine this value
475 // then please do so. --RD
476 if (rc
.right
> 20 && rc
.bottom
> 20)
478 TabCtrl_AdjustRect(m_hwnd
, false, &rc
);
479 page
->SetSize(rc
.left
, rc
.top
, rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
483 // ----------------------------------------------------------------------------
484 // wxNotebook operations
485 // ----------------------------------------------------------------------------
487 // remove one page from the notebook, without deleting
488 wxNotebookPage
*wxNotebook::DoRemovePage(size_t nPage
)
490 wxNotebookPage
*pageRemoved
= wxNotebookBase::DoRemovePage(nPage
);
494 TabCtrl_DeleteItem(m_hwnd
, nPage
);
496 if ( m_pages
.IsEmpty() )
498 // no selection any more, the notebook becamse empty
501 else // notebook still not empty
503 int selNew
= TabCtrl_GetCurSel(m_hwnd
);
506 // No selection change, just refresh the current selection.
507 // Because it could be that the slection index changed
508 // we need to update it.
509 // Note: this does not mean the selection it self changed.
510 m_nSelection
= selNew
;
511 m_pages
[m_nSelection
]->Refresh();
513 else if (int(nPage
) == m_nSelection
)
515 // The selection was deleted.
517 // Determine new selection.
518 if (m_nSelection
== int(GetPageCount()))
519 selNew
= m_nSelection
- 1;
521 selNew
= m_nSelection
;
523 // m_nSelection must be always valid so reset it before calling
526 SetSelection(selNew
);
530 wxFAIL
; // Windows did not behave ok.
538 bool wxNotebook::DeleteAllPages()
540 size_t nPageCount
= GetPageCount();
542 for ( nPage
= 0; nPage
< nPageCount
; nPage
++ )
543 delete m_pages
[nPage
];
547 TabCtrl_DeleteAllItems(m_hwnd
);
551 InvalidateBestSize();
555 // same as AddPage() but does it at given position
556 bool wxNotebook::InsertPage(size_t nPage
,
557 wxNotebookPage
*pPage
,
558 const wxString
& strText
,
562 wxCHECK_MSG( pPage
!= NULL
, false, _T("NULL page in wxNotebook::InsertPage") );
563 wxCHECK_MSG( IS_VALID_PAGE(nPage
) || nPage
== GetPageCount(), false,
564 _T("invalid index in wxNotebook::InsertPage") );
566 wxASSERT_MSG( pPage
->GetParent() == this,
567 _T("notebook pages must have notebook as parent") );
569 // add a new tab to the control
570 // ----------------------------
572 // init all fields to 0
574 wxZeroMemory(tcItem
);
576 // set the image, if any
579 tcItem
.mask
|= TCIF_IMAGE
;
580 tcItem
.iImage
= imageId
;
584 if ( !strText
.IsEmpty() )
586 tcItem
.mask
|= TCIF_TEXT
;
587 tcItem
.pszText
= (wxChar
*)strText
.c_str(); // const_cast
590 // hide the page: unless it is selected, it shouldn't be shown (and if it
591 // is selected it will be shown later)
592 HWND hwnd
= GetWinHwnd(pPage
);
593 SetWindowLong(hwnd
, GWL_STYLE
, GetWindowLong(hwnd
, GWL_STYLE
) & ~WS_VISIBLE
);
595 // this updates internal flag too -- otherwise it would get out of sync
596 // with the real state
600 // fit the notebook page to the tab control's display area: this should be
601 // done before adding it to the notebook or TabCtrl_InsertItem() will
602 // change the notebooks size itself!
603 AdjustPageSize(pPage
);
605 // finally do insert it
606 if ( TabCtrl_InsertItem(m_hwnd
, nPage
, &tcItem
) == -1 )
608 wxLogError(wxT("Can't create the notebook page '%s'."), strText
.c_str());
613 // succeeded: save the pointer to the page
614 m_pages
.Insert(pPage
, nPage
);
616 // we may need to adjust the size again if the notebook size changed:
617 // normally this only happens for the first page we add (the tabs which
618 // hadn't been there before are now shown) but for a multiline notebook it
619 // can happen for any page at all as a new row could have been started
620 if ( m_pages
.GetCount() == 1 || HasFlag(wxNB_MULTILINE
) )
622 AdjustPageSize(pPage
);
625 // now deal with the selection
626 // ---------------------------
628 // if the inserted page is before the selected one, we must update the
629 // index of the selected page
630 if ( int(nPage
) <= m_nSelection
)
632 // one extra page added
636 // some page should be selected: either this one or the first one if there
637 // is still no selection
641 else if ( m_nSelection
== -1 )
645 SetSelection(selNew
);
647 InvalidateBestSize();
651 int wxNotebook::HitTest(const wxPoint
& pt
, long *flags
) const
653 TC_HITTESTINFO hitTestInfo
;
654 hitTestInfo
.pt
.x
= pt
.x
;
655 hitTestInfo
.pt
.y
= pt
.y
;
656 int item
= TabCtrl_HitTest(GetHwnd(), &hitTestInfo
);
662 if ((hitTestInfo
.flags
& TCHT_NOWHERE
) == TCHT_NOWHERE
)
663 *flags
|= wxNB_HITTEST_NOWHERE
;
664 if ((hitTestInfo
.flags
& TCHT_ONITEM
) == TCHT_ONITEM
)
665 *flags
|= wxNB_HITTEST_ONITEM
;
666 if ((hitTestInfo
.flags
& TCHT_ONITEMICON
) == TCHT_ONITEMICON
)
667 *flags
|= wxNB_HITTEST_ONICON
;
668 if ((hitTestInfo
.flags
& TCHT_ONITEMLABEL
) == TCHT_ONITEMLABEL
)
669 *flags
|= wxNB_HITTEST_ONLABEL
;
676 // ----------------------------------------------------------------------------
677 // wxNotebook callbacks
678 // ----------------------------------------------------------------------------
680 void wxNotebook::OnSize(wxSizeEvent
& event
)
684 #endif // wxUSE_UXTHEME
686 // fit the notebook page to the tab control's display area
688 rc
.left
= rc
.top
= 0;
689 GetSize((int *)&rc
.right
, (int *)&rc
.bottom
);
691 // there seems to be a bug in the implementation of TabCtrl_AdjustRect(): it
692 // returns completely false values for multiline tab controls after the tabs
693 // are added but before getting the first WM_SIZE (off by ~50 pixels, see
695 // http://sf.net/tracker/index.php?func=detail&aid=645323&group_id=9863&atid=109863
697 // and the only work around I could find was this ugly hack... without it
698 // simply toggling the "multiline" checkbox in the notebook sample resulted
699 // in a noticeable page displacement
700 if ( HasFlag(wxNB_MULTILINE
) )
702 // avoid an infinite recursion: we get another notification too!
703 static bool s_isInOnSize
= false;
708 SendMessage(GetHwnd(), WM_SIZE
, SIZE_RESTORED
,
709 MAKELPARAM(rc
.right
, rc
.bottom
));
710 s_isInOnSize
= false;
714 TabCtrl_AdjustRect(m_hwnd
, false, &rc
);
716 int width
= rc
.right
- rc
.left
,
717 height
= rc
.bottom
- rc
.top
;
718 size_t nCount
= m_pages
.Count();
719 for ( size_t nPage
= 0; nPage
< nCount
; nPage
++ ) {
720 wxNotebookPage
*pPage
= m_pages
[nPage
];
721 pPage
->SetSize(rc
.left
, rc
.top
, width
, height
);
727 void wxNotebook::OnSelChange(wxNotebookEvent
& event
)
729 // is it our tab control?
730 if ( event
.GetEventObject() == this )
732 int sel
= event
.GetOldSelection();
734 m_pages
[sel
]->Show(false);
736 sel
= event
.GetSelection();
739 wxNotebookPage
*pPage
= m_pages
[sel
];
743 // If the newly focused window is not a child of the new page,
744 // SetFocus was not successful and the notebook itself should be
746 wxWindow
*currentFocus
= FindFocus();
747 wxWindow
*startFocus
= currentFocus
;
748 while ( currentFocus
&& currentFocus
!= pPage
&& currentFocus
!= this )
749 currentFocus
= currentFocus
->GetParent();
751 if ( startFocus
== pPage
|| currentFocus
!= pPage
)
755 else // no pages in the notebook, give the focus to itself
763 // we want to give others a chance to process this message as well
767 bool wxNotebook::MSWTranslateMessage(WXMSG
*wxmsg
)
769 const MSG
* const msg
= (MSG
*)wxmsg
;
771 // intercept TAB, CTRL+TAB and CTRL+SHIFT+TAB for processing by wxNotebook.
772 // TAB will be passed to the currently selected page, CTRL+TAB and
773 // CTRL+SHIFT+TAB will be processed by the notebook itself. do not
774 // intercept SHIFT+TAB. This goes to the parent of the notebook which will
776 if ( msg
->message
== WM_KEYDOWN
&& msg
->wParam
== VK_TAB
&&
777 msg
->hwnd
== m_hwnd
&&
778 (wxIsCtrlDown() || !wxIsShiftDown()) )
780 return MSWProcessMessage(wxmsg
);
786 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
788 if ( event
.IsWindowChange() ) {
790 AdvanceSelection(event
.GetDirection());
793 // we get this event in 3 cases
795 // a) one of our pages might have generated it because the user TABbed
796 // out from it in which case we should propagate the event upwards and
797 // our parent will take care of setting the focus to prev/next sibling
801 // b) the parent panel wants to give the focus to us so that we
802 // forward it to our selected page. We can't deal with this in
803 // OnSetFocus() because we don't know which direction the focus came
804 // from in this case and so can't choose between setting the focus to
805 // first or last panel child
809 // c) we ourselves (see MSWTranslateMessage) generated the event
811 wxWindow
* const parent
= GetParent();
813 const bool isFromParent
= event
.GetEventObject() == parent
;
814 const bool isFromSelf
= event
.GetEventObject() == this;
816 if ( isFromParent
|| isFromSelf
)
818 // no, it doesn't come from child, case (b) or (c): forward to a
819 // page but only if direction is backwards (TAB) or from ourselves,
820 if ( m_nSelection
!= -1 &&
821 (!event
.GetDirection() || isFromSelf
) )
823 // so that the page knows that the event comes from it's parent
824 // and is being propagated downwards
825 event
.SetEventObject(this);
827 wxWindow
*page
= m_pages
[m_nSelection
];
828 if ( !page
->GetEventHandler()->ProcessEvent(event
) )
832 //else: page manages focus inside it itself
834 else // otherwise set the focus to the notebook itself
841 // it comes from our child, case (a), pass to the parent, but only
842 // if the direction is forwards. Otherwise set the focus to the
843 // notebook itself. The notebook is always the 'first' control of a
845 if ( !event
.GetDirection() )
851 event
.SetCurrentFocus(this);
852 parent
->GetEventHandler()->ProcessEvent(event
);
860 WXHANDLE
wxNotebook::QueryBgBitmap(wxWindow
*win
)
863 GetWindowRect(GetHwnd(), &rc
);
865 WindowHDC
hDC(GetHwnd());
866 MemoryHDC
hDCMem(hDC
);
867 CompatibleBitmap
hBmp(hDC
, rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
869 SelectInHDC
selectBmp(hDCMem
, hBmp
);
871 ::SendMessage(GetHwnd(), WM_PRINTCLIENT
,
873 PRF_ERASEBKGND
| PRF_CLIENT
| PRF_NONCLIENT
);
878 ::GetWindowRect(GetHwndOf(win
), &rc2
);
880 COLORREF c
= ::GetPixel(hDCMem
, rc2
.left
- rc
.left
, rc2
.top
- rc
.top
);
884 else // we are asked to create the brush
886 return (WXHANDLE
)::CreatePatternBrush(hBmp
);
890 void wxNotebook::UpdateBgBrush()
892 if ( m_hbrBackground
)
893 ::DeleteObject((HBRUSH
)m_hbrBackground
);
895 if ( !m_hasBgCol
&& wxUxThemeEngine::GetIfActive() )
897 m_hbrBackground
= (WXHBRUSH
)QueryBgBitmap();
901 m_hbrBackground
= NULL
;
905 WXHBRUSH
wxNotebook::MSWGetBgBrushForChild(WXHDC hDC
, wxWindow
*win
)
907 if ( m_hbrBackground
)
909 // before drawing with the background brush, we need to position it
912 ::GetWindowRect(GetHwndOf(win
), &rc
);
914 ::MapWindowPoints(NULL
, GetHwnd(), (POINT
*)&rc
, 1);
916 if ( !::SetBrushOrgEx((HDC
)hDC
, -rc
.left
, -rc
.top
, NULL
) )
918 wxLogLastError(_T("SetBrushOrgEx(notebook bg brush)"));
921 return m_hbrBackground
;
924 return wxNotebookBase::MSWGetBgBrushForChild(hDC
, win
);
927 wxColour
wxNotebook::MSWGetBgColourForChild(wxWindow
*win
)
930 return GetBackgroundColour();
932 if ( !wxUxThemeEngine::GetIfActive() )
935 COLORREF c
= (COLORREF
)QueryBgBitmap(win
);
937 return c
== CLR_INVALID
? wxNullColour
: wxRGBToColour(c
);
940 #endif // wxUSE_UXTHEME
942 // ----------------------------------------------------------------------------
943 // wxNotebook base class virtuals
944 // ----------------------------------------------------------------------------
946 #if wxUSE_CONSTRAINTS
948 // override these 2 functions to do nothing: everything is done in OnSize
950 void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse
))
952 // don't set the sizes of the pages - their correct size is not yet known
953 wxControl::SetConstraintSizes(false);
956 bool wxNotebook::DoPhase(int WXUNUSED(nPhase
))
961 #endif // wxUSE_CONSTRAINTS
963 // ----------------------------------------------------------------------------
964 // wxNotebook Windows message handlers
965 // ----------------------------------------------------------------------------
967 bool wxNotebook::MSWOnScroll(int orientation
, WXWORD nSBCode
,
968 WXWORD pos
, WXHWND control
)
970 // don't generate EVT_SCROLLWIN events for the WM_SCROLLs coming from the
975 return wxNotebookBase::MSWOnScroll(orientation
, nSBCode
, pos
, control
);
978 bool wxNotebook::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
* result
)
980 wxNotebookEvent
event(wxEVT_NULL
, m_windowId
);
982 NMHDR
* hdr
= (NMHDR
*)lParam
;
983 switch ( hdr
->code
) {
985 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
988 case TCN_SELCHANGING
:
989 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
);
993 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
996 event
.SetSelection(TabCtrl_GetCurSel(m_hwnd
));
997 event
.SetOldSelection(m_nSelection
);
998 event
.SetEventObject(this);
999 event
.SetInt(idCtrl
);
1001 bool processed
= GetEventHandler()->ProcessEvent(event
);
1002 *result
= !event
.IsAllowed();
1006 #endif // wxUSE_NOTEBOOK