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"
31 #include "wx/imaglist.h"
33 #include "wx/control.h"
34 #include "wx/notebook.h"
37 #include "wx/msw/private.h"
39 // Windows standard headers
41 #error "wxNotebook is only supported Windows 95 and above"
44 #include <windowsx.h> // for SetWindowFont
46 #ifdef __GNUWIN32_OLD__
47 #include "wx/msw/gnuwin32/extra.h"
50 #if defined(__WIN95__) && !(defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__))
54 #include "wx/msw/winundef.h"
57 #include "wx/msw/uxtheme.h"
59 #include "wx/radiobut.h"
60 #include "wx/radiobox.h"
61 #include "wx/checkbox.h"
62 #include "wx/bmpbuttn.h"
63 #include "wx/statline.h"
64 #include "wx/statbox.h"
65 #include "wx/stattext.h"
66 #include "wx/slider.h"
67 #include "wx/scrolwin.h"
71 // ----------------------------------------------------------------------------
73 // ----------------------------------------------------------------------------
75 // check that the page index is valid
76 #define IS_VALID_PAGE(nPage) ((nPage) < GetPageCount())
79 #define m_hwnd (HWND)GetHWND()
81 // ----------------------------------------------------------------------------
83 // ----------------------------------------------------------------------------
85 // This is a work-around for missing defines in gcc-2.95 headers
87 #define TCS_RIGHT 0x0002
91 #define TCS_VERTICAL 0x0080
95 #define TCS_BOTTOM TCS_RIGHT
98 // ----------------------------------------------------------------------------
100 // ----------------------------------------------------------------------------
102 #include <wx/listimpl.cpp>
104 WX_DEFINE_LIST( wxNotebookPageInfoList
) ;
106 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
)
107 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
)
109 BEGIN_EVENT_TABLE(wxNotebook
, wxControl
)
110 EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange
)
112 EVT_SIZE(wxNotebook::OnSize
)
114 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
117 #if wxUSE_EXTENDED_RTTI
118 WX_DEFINE_FLAGS( wxNotebookStyle
)
120 wxBEGIN_FLAGS( wxNotebookStyle
)
121 // new style border flags, we put them first to
122 // use them for streaming out
123 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
124 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
125 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
126 wxFLAGS_MEMBER(wxBORDER_RAISED
)
127 wxFLAGS_MEMBER(wxBORDER_STATIC
)
128 wxFLAGS_MEMBER(wxBORDER_NONE
)
130 // old style border flags
131 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
132 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
133 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
134 wxFLAGS_MEMBER(wxRAISED_BORDER
)
135 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
136 wxFLAGS_MEMBER(wxBORDER
)
138 // standard window styles
139 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
140 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
141 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
142 wxFLAGS_MEMBER(wxWANTS_CHARS
)
143 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
144 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
145 wxFLAGS_MEMBER(wxVSCROLL
)
146 wxFLAGS_MEMBER(wxHSCROLL
)
148 wxFLAGS_MEMBER(wxNB_FIXEDWIDTH
)
149 wxFLAGS_MEMBER(wxNB_LEFT
)
150 wxFLAGS_MEMBER(wxNB_RIGHT
)
151 wxFLAGS_MEMBER(wxNB_BOTTOM
)
153 wxEND_FLAGS( wxNotebookStyle
)
155 IMPLEMENT_DYNAMIC_CLASS_XTI(wxNotebook
, wxControl
,"wx/notebook.h")
156 IMPLEMENT_DYNAMIC_CLASS_XTI(wxNotebookPageInfo
, wxObject
, "wx/notebook.h" )
158 wxCOLLECTION_TYPE_INFO( wxNotebookPageInfo
* , wxNotebookPageInfoList
) ;
160 template<> void wxCollectionToVariantArray( wxNotebookPageInfoList
const &theList
, wxxVariantArray
&value
)
162 wxListCollectionToVariantArray
<wxNotebookPageInfoList::compatibility_iterator
>( theList
, value
) ;
165 wxBEGIN_PROPERTIES_TABLE(wxNotebook
)
166 wxEVENT_PROPERTY( PageChanging
, wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, wxNotebookEvent
)
167 wxEVENT_PROPERTY( PageChanged
, wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, wxNotebookEvent
)
169 wxPROPERTY_COLLECTION( PageInfos
, wxNotebookPageInfoList
, wxNotebookPageInfo
* , AddPageInfo
, GetPageInfos
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
170 wxPROPERTY_FLAGS( WindowStyle
, wxNotebookStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
171 wxEND_PROPERTIES_TABLE()
173 wxBEGIN_HANDLERS_TABLE(wxNotebook
)
174 wxEND_HANDLERS_TABLE()
176 wxCONSTRUCTOR_5( wxNotebook
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
179 wxBEGIN_PROPERTIES_TABLE(wxNotebookPageInfo
)
180 wxREADONLY_PROPERTY( Page
, wxNotebookPage
* , GetPage
, , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
181 wxREADONLY_PROPERTY( Text
, wxString
, GetText
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
182 wxREADONLY_PROPERTY( Selected
, bool , GetSelected
, false, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
183 wxREADONLY_PROPERTY( ImageId
, int , GetImageId
, -1 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
184 wxEND_PROPERTIES_TABLE()
186 wxBEGIN_HANDLERS_TABLE(wxNotebookPageInfo
)
187 wxEND_HANDLERS_TABLE()
189 wxCONSTRUCTOR_4( wxNotebookPageInfo
, wxNotebookPage
* , Page
, wxString
, Text
, bool , Selected
, int , ImageId
)
192 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
, wxControl
)
193 IMPLEMENT_DYNAMIC_CLASS(wxNotebookPageInfo
, wxObject
)
195 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxNotifyEvent
)
197 // ============================================================================
199 // ============================================================================
201 // ----------------------------------------------------------------------------
202 // wxNotebook construction
203 // ----------------------------------------------------------------------------
205 const wxNotebookPageInfoList
& wxNotebook::GetPageInfos() const
207 wxNotebookPageInfoList
* list
= const_cast< wxNotebookPageInfoList
* >( &m_pageInfos
) ;
208 WX_CLEAR_LIST( wxNotebookPageInfoList
, *list
) ;
209 for( size_t i
= 0 ; i
< GetPageCount() ; ++i
)
211 wxNotebookPageInfo
*info
= new wxNotebookPageInfo() ;
212 info
->Create( const_cast<wxNotebook
*>(this)->GetPage(i
) , GetPageText(i
) , GetSelection() == int(i
) , GetPageImage(i
) ) ;
213 list
->Append( info
) ;
218 // common part of all ctors
219 void wxNotebook::Init()
225 // default for dynamic class
226 wxNotebook::wxNotebook()
231 // the same arguments as for wxControl
232 wxNotebook::wxNotebook(wxWindow
*parent
,
237 const wxString
& name
)
241 Create(parent
, id
, pos
, size
, style
, name
);
245 bool wxNotebook::Create(wxWindow
*parent
,
250 const wxString
& name
)
252 // Does ComCtl32 support non-top tabs?
253 int verComCtl32
= wxApp::GetComCtl32Version();
254 if ( verComCtl32
< 470 || verComCtl32
>= 600 )
256 if (style
& wxNB_BOTTOM
)
257 style
&= ~wxNB_BOTTOM
;
259 if (style
& wxNB_LEFT
)
262 if (style
& wxNB_RIGHT
)
263 style
&= ~wxNB_RIGHT
;
266 if ( !CreateControl(parent
, id
, pos
, size
, style
| wxTAB_TRAVERSAL
,
267 wxDefaultValidator
, name
) )
270 if ( !MSWCreateControl(WC_TABCONTROL
, wxEmptyString
, pos
, size
) )
273 SetBackgroundColour(wxColour(::GetSysColor(COLOR_BTNFACE
)));
278 WXDWORD
wxNotebook::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
280 WXDWORD tabStyle
= wxControl::MSWGetStyle(style
, exstyle
);
282 tabStyle
|= WS_TABSTOP
| TCS_TABS
;
284 if ( style
& wxNB_MULTILINE
)
285 tabStyle
|= TCS_MULTILINE
;
286 if ( style
& wxNB_FIXEDWIDTH
)
287 tabStyle
|= TCS_FIXEDWIDTH
;
289 if ( style
& wxNB_BOTTOM
)
290 tabStyle
|= TCS_RIGHT
;
291 else if ( style
& wxNB_LEFT
)
292 tabStyle
|= TCS_VERTICAL
;
293 else if ( style
& wxNB_RIGHT
)
294 tabStyle
|= TCS_VERTICAL
| TCS_RIGHT
;
299 // note that we never want to have the default WS_EX_CLIENTEDGE style
300 // as it looks too ugly for the notebooks
307 // ----------------------------------------------------------------------------
308 // wxNotebook accessors
309 // ----------------------------------------------------------------------------
311 size_t wxNotebook::GetPageCount() const
314 wxASSERT( (int)m_pages
.Count() == TabCtrl_GetItemCount(m_hwnd
) );
316 return m_pages
.Count();
319 int wxNotebook::GetRowCount() const
321 return TabCtrl_GetRowCount(m_hwnd
);
324 int wxNotebook::SetSelection(size_t nPage
)
326 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, wxT("notebook page out of range") );
328 if ( int(nPage
) != m_nSelection
)
330 wxNotebookEvent
event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, m_windowId
);
331 event
.SetSelection(nPage
);
332 event
.SetOldSelection(m_nSelection
);
333 event
.SetEventObject(this);
334 if ( !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
336 // program allows the page change
337 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
338 (void)GetEventHandler()->ProcessEvent(event
);
340 TabCtrl_SetCurSel(m_hwnd
, nPage
);
347 bool wxNotebook::SetPageText(size_t nPage
, const wxString
& strText
)
349 wxCHECK_MSG( IS_VALID_PAGE(nPage
), false, wxT("notebook page out of range") );
352 tcItem
.mask
= TCIF_TEXT
;
353 tcItem
.pszText
= (wxChar
*)strText
.c_str();
355 return TabCtrl_SetItem(m_hwnd
, nPage
, &tcItem
) != 0;
358 wxString
wxNotebook::GetPageText(size_t nPage
) const
360 wxCHECK_MSG( IS_VALID_PAGE(nPage
), wxEmptyString
, wxT("notebook page out of range") );
364 tcItem
.mask
= TCIF_TEXT
;
365 tcItem
.pszText
= buf
;
366 tcItem
.cchTextMax
= WXSIZEOF(buf
);
369 if ( TabCtrl_GetItem(m_hwnd
, nPage
, &tcItem
) )
370 str
= tcItem
.pszText
;
375 int wxNotebook::GetPageImage(size_t nPage
) const
377 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, wxT("notebook page out of range") );
380 tcItem
.mask
= TCIF_IMAGE
;
382 return TabCtrl_GetItem(m_hwnd
, nPage
, &tcItem
) ? tcItem
.iImage
: -1;
385 bool wxNotebook::SetPageImage(size_t nPage
, int nImage
)
387 wxCHECK_MSG( IS_VALID_PAGE(nPage
), false, wxT("notebook page out of range") );
390 tcItem
.mask
= TCIF_IMAGE
;
391 tcItem
.iImage
= nImage
;
393 return TabCtrl_SetItem(m_hwnd
, nPage
, &tcItem
) != 0;
396 void wxNotebook::SetImageList(wxImageList
* imageList
)
398 wxNotebookBase::SetImageList(imageList
);
402 TabCtrl_SetImageList(m_hwnd
, (HIMAGELIST
)imageList
->GetHIMAGELIST());
406 // ----------------------------------------------------------------------------
407 // wxNotebook size settings
408 // ----------------------------------------------------------------------------
410 void wxNotebook::SetPageSize(const wxSize
& size
)
412 // transform the page size into the notebook size
419 TabCtrl_AdjustRect(GetHwnd(), true, &rc
);
422 SetSize(rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
425 void wxNotebook::SetPadding(const wxSize
& padding
)
427 TabCtrl_SetPadding(GetHwnd(), padding
.x
, padding
.y
);
430 // Windows-only at present. Also, you must use the wxNB_FIXEDWIDTH
432 void wxNotebook::SetTabSize(const wxSize
& sz
)
434 ::SendMessage(GetHwnd(), TCM_SETITEMSIZE
, 0, MAKELPARAM(sz
.x
, sz
.y
));
437 wxSize
wxNotebook::CalcSizeFromPage(const wxSize
& sizePage
) const
439 wxSize sizeTotal
= sizePage
;
441 // We need to make getting tab size part of the wxWindows API.
442 wxSize
tabSize(0, 0);
443 if (GetPageCount() > 0)
446 TabCtrl_GetItemRect((HWND
) GetHWND(), 0, & rect
);
447 tabSize
.x
= rect
.right
- rect
.left
;
448 tabSize
.y
= rect
.bottom
- rect
.top
;
450 if ( HasFlag(wxNB_LEFT
) || HasFlag(wxNB_RIGHT
) )
452 sizeTotal
.x
+= tabSize
.x
+ 7;
458 sizeTotal
.y
+= tabSize
.y
+ 7;
464 void wxNotebook::AdjustPageSize(wxNotebookPage
*page
)
466 wxCHECK_RET( page
, _T("NULL page in wxNotebook::AdjustPageSize") );
472 // get the page size from the notebook size
473 GetSize((int *)&rc
.right
, (int *)&rc
.bottom
);
474 TabCtrl_AdjustRect(m_hwnd
, false, &rc
);
476 page
->SetSize(rc
.left
, rc
.top
, rc
.right
- rc
.left
, rc
.bottom
- rc
.top
);
479 // ----------------------------------------------------------------------------
480 // wxNotebook operations
481 // ----------------------------------------------------------------------------
483 // remove one page from the notebook, without deleting
484 wxNotebookPage
*wxNotebook::DoRemovePage(size_t nPage
)
486 wxNotebookPage
*pageRemoved
= wxNotebookBase::DoRemovePage(nPage
);
490 TabCtrl_DeleteItem(m_hwnd
, nPage
);
492 if ( m_pages
.IsEmpty() )
494 // no selection any more, the notebook becamse empty
497 else // notebook still not empty
499 int selNew
= TabCtrl_GetCurSel(m_hwnd
);
502 // No selection change, just refresh the current selection.
503 // Because it could be that the slection index changed
504 // we need to update it.
505 // Note: this does not mean the selection it self changed.
506 m_nSelection
= selNew
;
507 m_pages
[m_nSelection
]->Refresh();
509 else if (int(nPage
) == m_nSelection
)
511 // The selection was deleted.
513 // Determine new selection.
514 if (m_nSelection
== int(GetPageCount()))
515 selNew
= m_nSelection
- 1;
517 selNew
= m_nSelection
;
519 // m_nSelection must be always valid so reset it before calling
522 SetSelection(selNew
);
526 wxFAIL
; // Windows did not behave ok.
534 bool wxNotebook::DeleteAllPages()
536 size_t nPageCount
= GetPageCount();
538 for ( nPage
= 0; nPage
< nPageCount
; nPage
++ )
539 delete m_pages
[nPage
];
543 TabCtrl_DeleteAllItems(m_hwnd
);
550 // same as AddPage() but does it at given position
551 bool wxNotebook::InsertPage(size_t nPage
,
552 wxNotebookPage
*pPage
,
553 const wxString
& strText
,
557 wxCHECK_MSG( pPage
!= NULL
, false, _T("NULL page in wxNotebook::InsertPage") );
558 wxCHECK_MSG( IS_VALID_PAGE(nPage
) || nPage
== GetPageCount(), false,
559 _T("invalid index in wxNotebook::InsertPage") );
561 wxASSERT_MSG( pPage
->GetParent() == this,
562 _T("notebook pages must have notebook as parent") );
564 #if wxUSE_UXTHEME && wxUSE_UXTHEME_AUTO
565 static bool g_TestedForTheme
= false;
566 static bool g_UseTheme
= false;
567 if (!g_TestedForTheme
)
569 int commCtrlVersion
= wxTheApp
->GetComCtl32Version() ;
571 g_UseTheme
= (commCtrlVersion
>= 600);
572 g_TestedForTheme
= true;
575 // Automatically apply the theme background,
576 // changing the colour of the panel to match the
577 // tab page colour. This won't work well with all
578 // themes but it's a start.
579 if (g_UseTheme
&& wxUxThemeEngine::Get() && pPage
->IsKindOf(CLASSINFO(wxPanel
)))
581 ApplyThemeBackground(pPage
, GetThemeBackgroundColour());
585 // add a new tab to the control
586 // ----------------------------
588 // init all fields to 0
590 wxZeroMemory(tcItem
);
592 // set the image, if any
595 tcItem
.mask
|= TCIF_IMAGE
;
596 tcItem
.iImage
= imageId
;
600 if ( !strText
.IsEmpty() )
602 tcItem
.mask
|= TCIF_TEXT
;
603 tcItem
.pszText
= (wxChar
*)strText
.c_str(); // const_cast
606 // fit the notebook page to the tab control's display area: this should be
607 // done before adding it to the notebook or TabCtrl_InsertItem() will
608 // change the notebooks size itself!
609 AdjustPageSize(pPage
);
611 // finally do insert it
612 if ( TabCtrl_InsertItem(m_hwnd
, nPage
, &tcItem
) == -1 )
614 wxLogError(wxT("Can't create the notebook page '%s'."), strText
.c_str());
619 // succeeded: save the pointer to the page
620 m_pages
.Insert(pPage
, nPage
);
622 // for the first page (only) we need to adjust the size again because the
623 // notebook size changed: the tabs which hadn't been there before are now
625 if ( m_pages
.GetCount() == 1 )
627 AdjustPageSize(pPage
);
630 // hide the page: unless it is selected, it shouldn't be shown (and if it
631 // is selected it will be shown later)
632 HWND hwnd
= GetWinHwnd(pPage
);
633 SetWindowLong(hwnd
, GWL_STYLE
, GetWindowLong(hwnd
, GWL_STYLE
) & ~WS_VISIBLE
);
635 // this updates internal flag too -- otherwise it would get out of sync
636 // with the real state
640 // now deal with the selection
641 // ---------------------------
643 // if the inserted page is before the selected one, we must update the
644 // index of the selected page
645 if ( int(nPage
) <= m_nSelection
)
647 // one extra page added
651 // some page should be selected: either this one or the first one if there
652 // is still no selection
656 else if ( m_nSelection
== -1 )
660 SetSelection(selNew
);
665 int wxNotebook::HitTest(const wxPoint
& pt
, long *flags
) const
667 TC_HITTESTINFO hitTestInfo
;
668 hitTestInfo
.pt
.x
= pt
.x
;
669 hitTestInfo
.pt
.y
= pt
.y
;
670 int item
= TabCtrl_HitTest(GetHwnd(), &hitTestInfo
);
676 if ((hitTestInfo
.flags
& TCHT_NOWHERE
) == TCHT_NOWHERE
)
677 *flags
|= wxNB_HITTEST_NOWHERE
;
678 if ((hitTestInfo
.flags
& TCHT_ONITEM
) == TCHT_ONITEM
)
679 *flags
|= wxNB_HITTEST_ONITEM
;
680 if ((hitTestInfo
.flags
& TCHT_ONITEMICON
) == TCHT_ONITEMICON
)
681 *flags
|= wxNB_HITTEST_ONICON
;
682 if ((hitTestInfo
.flags
& TCHT_ONITEMLABEL
) == TCHT_ONITEMLABEL
)
683 *flags
|= wxNB_HITTEST_ONLABEL
;
690 // ----------------------------------------------------------------------------
691 // wxNotebook callbacks
692 // ----------------------------------------------------------------------------
694 void wxNotebook::OnSize(wxSizeEvent
& event
)
696 // fit the notebook page to the tab control's display area
698 rc
.left
= rc
.top
= 0;
699 GetSize((int *)&rc
.right
, (int *)&rc
.bottom
);
701 TabCtrl_AdjustRect(m_hwnd
, false, &rc
);
703 int width
= rc
.right
- rc
.left
,
704 height
= rc
.bottom
- rc
.top
;
705 size_t nCount
= m_pages
.Count();
706 for ( size_t nPage
= 0; nPage
< nCount
; nPage
++ ) {
707 wxNotebookPage
*pPage
= m_pages
[nPage
];
708 pPage
->SetSize(rc
.left
, rc
.top
, width
, height
);
714 void wxNotebook::OnSelChange(wxNotebookEvent
& event
)
716 // is it our tab control?
717 if ( event
.GetEventObject() == this )
719 int sel
= event
.GetOldSelection();
721 m_pages
[sel
]->Show(false);
723 sel
= event
.GetSelection();
726 wxNotebookPage
*pPage
= m_pages
[sel
];
730 // If the newly focused window is not a child of the new page,
731 // SetFocus was not successful and the notebook itself should be
733 wxWindow
*currentFocus
= FindFocus();
734 wxWindow
*startFocus
= currentFocus
;
735 while ( currentFocus
&& currentFocus
!= pPage
&& currentFocus
!= this )
736 currentFocus
= currentFocus
->GetParent();
738 if ( startFocus
== pPage
|| currentFocus
!= pPage
)
742 else // no pages in the notebook, give the focus to itself
750 // we want to give others a chance to process this message as well
754 bool wxNotebook::MSWTranslateMessage(WXMSG
*wxmsg
)
756 const MSG
* const msg
= (MSG
*)wxmsg
;
758 // intercept TAB, CTRL+TAB and CTRL+SHIFT+TAB for processing by wxNotebook.
759 // TAB will be passed to the currently selected page, CTRL+TAB and
760 // CTRL+SHIFT+TAB will be processed by the notebook itself. do not
761 // intercept SHIFT+TAB. This goes to the parent of the notebook which will
763 if ( msg
->message
== WM_KEYDOWN
&& msg
->wParam
== VK_TAB
&&
764 msg
->hwnd
== m_hwnd
&&
765 (wxIsCtrlDown() || !wxIsShiftDown()) )
767 return MSWProcessMessage(wxmsg
);
773 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
775 if ( event
.IsWindowChange() ) {
777 AdvanceSelection(event
.GetDirection());
780 // we get this event in 3 cases
782 // a) one of our pages might have generated it because the user TABbed
783 // out from it in which case we should propagate the event upwards and
784 // our parent will take care of setting the focus to prev/next sibling
788 // b) the parent panel wants to give the focus to us so that we
789 // forward it to our selected page. We can't deal with this in
790 // OnSetFocus() because we don't know which direction the focus came
791 // from in this case and so can't choose between setting the focus to
792 // first or last panel child
796 // c) we ourselves (see MSWTranslateMessage) generated the event
798 wxWindow
* const parent
= GetParent();
800 const bool isFromParent
= event
.GetEventObject() == parent
;
801 const bool isFromSelf
= event
.GetEventObject() == this;
803 if ( isFromParent
|| isFromSelf
)
805 // no, it doesn't come from child, case (b) or (c): forward to a
806 // page but only if direction is backwards (TAB) or from ourselves,
807 if ( m_nSelection
!= -1 &&
808 (!event
.GetDirection() || isFromSelf
) )
810 // so that the page knows that the event comes from it's parent
811 // and is being propagated downwards
812 event
.SetEventObject(this);
814 wxWindow
*page
= m_pages
[m_nSelection
];
815 if ( !page
->GetEventHandler()->ProcessEvent(event
) )
819 //else: page manages focus inside it itself
821 else // otherwise set the focus to the notebook itself
828 // it comes from our child, case (a), pass to the parent, but only
829 // if the direction is forwards. Otherwise set the focus to the
830 // notebook itself. The notebook is always the 'first' control of a
832 if ( !event
.GetDirection() )
838 event
.SetCurrentFocus(this);
839 parent
->GetEventHandler()->ProcessEvent(event
);
845 // ----------------------------------------------------------------------------
846 // wxNotebook base class virtuals
847 // ----------------------------------------------------------------------------
849 #if wxUSE_CONSTRAINTS
851 // override these 2 functions to do nothing: everything is done in OnSize
853 void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse
))
855 // don't set the sizes of the pages - their correct size is not yet known
856 wxControl::SetConstraintSizes(false);
859 bool wxNotebook::DoPhase(int WXUNUSED(nPhase
))
864 #endif // wxUSE_CONSTRAINTS
866 // ----------------------------------------------------------------------------
867 // wxNotebook Windows message handlers
868 // ----------------------------------------------------------------------------
870 bool wxNotebook::MSWOnScroll(int orientation
, WXWORD nSBCode
,
871 WXWORD pos
, WXHWND control
)
873 // don't generate EVT_SCROLLWIN events for the WM_SCROLLs coming from the
878 return wxNotebookBase::MSWOnScroll(orientation
, nSBCode
, pos
, control
);
881 bool wxNotebook::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
* result
)
883 wxNotebookEvent
event(wxEVT_NULL
, m_windowId
);
885 NMHDR
* hdr
= (NMHDR
*)lParam
;
886 switch ( hdr
->code
) {
888 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
891 case TCN_SELCHANGING
:
892 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
);
896 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
899 event
.SetSelection(TabCtrl_GetCurSel(m_hwnd
));
900 event
.SetOldSelection(m_nSelection
);
901 event
.SetEventObject(this);
902 event
.SetInt(idCtrl
);
904 bool processed
= GetEventHandler()->ProcessEvent(event
);
905 *result
= !event
.IsAllowed();
909 // Windows only: attempts to get colour for UX theme page background
910 wxColour
wxNotebook::GetThemeBackgroundColour()
913 if (wxUxThemeEngine::Get())
915 wxUxThemeHandle
hTheme(this, L
"TAB");
918 // This is total guesswork.
919 // See PlatformSDK\Include\Tmschema.h for values
921 wxUxThemeEngine::Get()->GetThemeColor
926 3821, /* FILLCOLORHINT */
930 wxColour
colour(GetRValue(themeColor
), GetGValue(themeColor
), GetBValue(themeColor
));
934 #endif // wxUSE_UXTHEME
936 return GetBackgroundColour();
939 // Windows only: attempts to apply the UX theme page background to this page
941 void wxNotebook::ApplyThemeBackground(wxWindow
* window
, const wxColour
& colour
)
943 void wxNotebook::ApplyThemeBackground(wxWindow
*, const wxColour
&)
947 // Don't set the background for buttons since this will
948 // switch it into ownerdraw mode
949 if (window
->IsKindOf(CLASSINFO(wxButton
)) && !window
->IsKindOf(CLASSINFO(wxBitmapButton
)))
950 // This is essential, otherwise you'll see dark grey
951 // corners in the buttons.
952 ((wxButton
*)window
)->wxControl::SetBackgroundColour(colour
);
953 else if (window
->IsKindOf(CLASSINFO(wxStaticText
)) ||
954 window
->IsKindOf(CLASSINFO(wxStaticBox
)) ||
955 window
->IsKindOf(CLASSINFO(wxStaticLine
)) ||
956 window
->IsKindOf(CLASSINFO(wxRadioButton
)) ||
957 window
->IsKindOf(CLASSINFO(wxRadioBox
)) ||
958 window
->IsKindOf(CLASSINFO(wxCheckBox
)) ||
959 window
->IsKindOf(CLASSINFO(wxBitmapButton
)) ||
960 window
->IsKindOf(CLASSINFO(wxSlider
)) ||
961 window
->IsKindOf(CLASSINFO(wxPanel
)) ||
962 (window
->IsKindOf(CLASSINFO(wxNotebook
)) && (window
!= this)) ||
963 window
->IsKindOf(CLASSINFO(wxScrolledWindow
))
966 window
->SetBackgroundColour(colour
);
969 for ( wxWindowList::compatibility_iterator node
= window
->GetChildren().GetFirst(); node
; node
= node
->GetNext() )
971 wxWindow
*child
= node
->GetData();
972 ApplyThemeBackground(child
, colour
);
978 long wxNotebook::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
980 static bool g_TestedForTheme
= false;
981 static bool g_supportsThemes
= false;
986 if (!g_TestedForTheme
)
988 int commCtrlVersion
= wxTheApp
->GetComCtl32Version() ;
990 g_supportsThemes
= (commCtrlVersion
>= 600);
991 g_TestedForTheme
= true;
994 // If currently an XP theme is active, it seems we can get away
995 // with not drawing a background, which reduces flicker.
996 if (g_supportsThemes
)
998 wxUxThemeEngine
*p
= wxUxThemeEngine::Get();
999 if (p
&& p
->IsThemeActive() )
1007 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1009 #endif // #if wxUSE_UXTHEME
1011 #endif // wxUSE_NOTEBOOK