1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: implementation of wxNotebook
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "notebook.h"
16 // ============================================================================
18 // ============================================================================
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
24 #include "wx/string.h"
26 #include "wx/imaglist.h"
28 #include "wx/notebook.h"
29 #include "wx/mac/uma.h"
30 // ----------------------------------------------------------------------------
32 // ----------------------------------------------------------------------------
34 // check that the page index is valid
35 #define IS_VALID_PAGE(nPage) ((nPage) < GetPageCount())
38 // ----------------------------------------------------------------------------
40 // ----------------------------------------------------------------------------
42 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
)
43 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
)
45 BEGIN_EVENT_TABLE(wxNotebook
, wxControl
)
46 EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange
)
47 EVT_MOUSE_EVENTS(wxNotebook::OnMouse
)
49 EVT_SIZE(wxNotebook::OnSize
)
50 EVT_SET_FOCUS(wxNotebook::OnSetFocus
)
51 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
54 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
, wxControl
)
55 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxCommandEvent
)
57 // ============================================================================
59 // ============================================================================
61 // The Appearance Manager docs show using tab controls in either edge to edge
62 // mode, or inset. I think edge to edge conforms better to the other ports,
63 // and inset mode is better accomplished with space around the wxNotebook rather
64 // than within it. --Robin
66 // CS : had to switch off tight spacing due to 10.3 problems
67 #define wxMAC_EDGE_TO_EDGE 0
69 static inline int wxMacTabMargin(long nbStyle
, long side
)
71 static int tabMargin
= -1;
72 static int otherMargin
= -1;
76 if ( UMAHasAquaLayout() )
78 tabMargin
= 26; // From Appearance Manager docs for small tab control dimensions
79 #if wxMAC_EDGE_TO_EDGE
88 #if wxMAC_EDGE_TO_EDGE
96 // If the style matches the side asked for then return the tab margin,
97 // but we have to special case wxNB_TOP since it is zero...
98 if ( side
== wxNB_TOP
)
100 if ( nbStyle
!= 0 && nbStyle
& (wxNB_LEFT
|wxNB_RIGHT
|wxNB_BOTTOM
))
109 else if ( nbStyle
& side
)
115 static inline int wxMacTabLeftMargin(long style
)
117 return wxMacTabMargin(style
, wxNB_LEFT
);
120 static inline int wxMacTabTopMargin(long style
)
122 return wxMacTabMargin(style
, wxNB_TOP
);
125 static inline int wxMacTabRightMargin(long style
)
127 return wxMacTabMargin(style
, wxNB_RIGHT
);
130 static inline int wxMacTabBottomMargin(long style
)
132 return wxMacTabMargin(style
, wxNB_BOTTOM
);
135 // ----------------------------------------------------------------------------
136 // wxNotebook construction
137 // ----------------------------------------------------------------------------
139 // common part of all ctors
140 void wxNotebook::Init()
142 if ( UMAHasAquaLayout() )
144 // Should these depend on wxMAC_EDGE_TO_EDGE too?
145 m_macHorizontalBorder
= 7;
146 m_macVerticalBorder
= 8;
152 // default for dynamic class
153 wxNotebook::wxNotebook()
158 // the same arguments as for wxControl
159 wxNotebook::wxNotebook(wxWindow
*parent
,
164 const wxString
& name
)
168 Create(parent
, id
, pos
, size
, style
, name
);
172 bool wxNotebook::Create(wxWindow
*parent
,
177 const wxString
& name
)
179 if ( !wxNotebookBase::Create(parent
, id
, pos
, size
, style
, name
) )
185 MacPreControlCreate( parent
, id
, wxEmptyString
, pos
, size
,style
, wxDefaultValidator
, name
, &bounds
, title
) ;
187 int tabstyle
= kControlTabSmallNorthProc
;
188 if ( HasFlag(wxNB_LEFT
) )
189 tabstyle
= kControlTabSmallWestProc
;
190 else if ( HasFlag( wxNB_RIGHT
) )
191 tabstyle
= kControlTabSmallEastProc
;
192 else if ( HasFlag( wxNB_BOTTOM
) )
193 tabstyle
= kControlTabSmallSouthProc
;
196 m_macControl
= ::NewControl( MAC_WXHWND(parent
->MacGetRootWindow()) , &bounds
, title
, false , 0 , 0 , 1,
197 tabstyle
, (long) this ) ;
199 MacPostControlCreate() ;
204 wxNotebook::~wxNotebook()
208 // ----------------------------------------------------------------------------
209 // wxNotebook accessors
210 // ----------------------------------------------------------------------------
212 void wxNotebook::SetPadding(const wxSize
& padding
)
217 void wxNotebook::SetTabSize(const wxSize
& sz
)
222 void wxNotebook::SetPageSize(const wxSize
& size
)
224 SetSize( CalcSizeFromPage( size
) );
227 wxSize
wxNotebook::CalcSizeFromPage(const wxSize
& sizePage
) const
229 wxSize sizeTotal
= sizePage
;
230 sizeTotal
.x
+= 2 * m_macHorizontalBorder
+ wxMacTabLeftMargin(GetWindowStyle()) +
231 wxMacTabRightMargin(GetWindowStyle()) ;
232 sizeTotal
.y
+= 2 * m_macVerticalBorder
+ wxMacTabTopMargin(GetWindowStyle()) +
233 wxMacTabBottomMargin(GetWindowStyle()) ;
238 wxSize
wxNotebook::DoGetBestSize() const
240 // calculate the max page size
243 size_t count
= GetPageCount();
246 for ( size_t n
= 0; n
< count
; n
++ )
248 wxSize sizePage
= m_pages
[n
]->GetSize();
250 if ( size
.x
< sizePage
.x
)
252 if ( size
.y
< sizePage
.y
)
258 // use some arbitrary default size
263 return CalcSizeFromPage(size
);
266 int wxNotebook::SetSelection(size_t nPage
)
268 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, wxT("notebook page out of range") );
270 if ( int(nPage
) != m_nSelection
)
272 wxNotebookEvent
event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, m_windowId
);
273 event
.SetSelection(nPage
);
274 event
.SetOldSelection(m_nSelection
);
275 event
.SetEventObject(this);
276 if ( !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
278 // program allows the page change
279 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
280 (void)GetEventHandler()->ProcessEvent(event
);
282 ChangePage(m_nSelection
, nPage
);
289 bool wxNotebook::SetPageText(size_t nPage
, const wxString
& strText
)
291 wxASSERT( IS_VALID_PAGE(nPage
) );
293 wxNotebookPage
*page
= m_pages
[nPage
];
294 page
->SetLabel(strText
);
300 wxString
wxNotebook::GetPageText(size_t nPage
) const
302 wxASSERT( IS_VALID_PAGE(nPage
) );
304 wxNotebookPage
*page
= m_pages
[nPage
];
305 return page
->GetLabel();
308 int wxNotebook::GetPageImage(size_t nPage
) const
310 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, _T("invalid notebook page") );
312 return m_images
[nPage
];
315 bool wxNotebook::SetPageImage(size_t nPage
, int nImage
)
317 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, _T("invalid notebook page") );
319 wxCHECK_MSG( m_imageList
&& nImage
< m_imageList
->GetImageCount(), FALSE
,
320 _T("invalid image index in SetPageImage()") );
322 if ( nImage
!= m_images
[nPage
] )
324 // if the item didn't have an icon before or, on the contrary, did have
325 // it but has lost it now, its size will change - but if the icon just
327 m_images
[nPage
] = nImage
;
335 // ----------------------------------------------------------------------------
336 // wxNotebook operations
337 // ----------------------------------------------------------------------------
339 // remove one page from the notebook, without deleting the window
340 wxNotebookPage
* wxNotebook::DoRemovePage(size_t nPage
)
342 wxCHECK( IS_VALID_PAGE(nPage
), NULL
);
343 wxNotebookPage
* page
= m_pages
[nPage
] ;
344 m_pages
.RemoveAt(nPage
);
348 if(m_nSelection
>= (int)GetPageCount()) {
349 m_nSelection
= GetPageCount() - 1;
351 if(m_nSelection
>= 0) {
352 m_pages
[m_nSelection
]->Show(true);
358 bool wxNotebook::DeleteAllPages()
360 WX_CLEAR_ARRAY(m_pages
) ;
367 // same as AddPage() but does it at given position
368 bool wxNotebook::InsertPage(size_t nPage
,
369 wxNotebookPage
*pPage
,
370 const wxString
& strText
,
374 if ( !wxNotebookBase::InsertPage(nPage
, pPage
, strText
, bSelect
, imageId
) )
377 wxASSERT_MSG( pPage
->GetParent() == this,
378 _T("notebook pages must have notebook as parent") );
380 // don't show pages by default (we'll need to adjust their size first)
381 pPage
->Show( false ) ;
383 pPage
->SetLabel(strText
);
385 m_images
.Insert(imageId
, nPage
);
389 wxRect rect
= GetPageRect() ;
390 pPage
->SetSize(rect
);
391 if ( pPage
->GetAutoLayout() ) {
396 // now deal with the selection
397 // ---------------------------
399 // if the inserted page is before the selected one, we must update the
400 // index of the selected page
402 if ( int(nPage
) <= m_nSelection
)
405 // while this still is the same page showing, we need to update the tabs
406 SetControl32BitValue( (ControlHandle
) m_macControl
, m_nSelection
+ 1 ) ;
409 // some page should be selected: either this one or the first one if there
410 // is still no selection
414 else if ( m_nSelection
== -1 )
418 SetSelection(selNew
);
423 /* Added by Mark Newsam
424 * When a page is added or deleted to the notebook this function updates
425 * information held in the m_macControl so that it matches the order
426 * the user would expect.
428 void wxNotebook::MacSetupTabs()
430 SetControl32BitMaximum( (ControlHandle
) m_macControl
, GetPageCount() ) ;
432 wxNotebookPage
*page
;
433 ControlTabInfoRec info
;
435 const size_t countPages
= GetPageCount();
436 for(size_t ii
= 0; ii
< countPages
; ii
++)
440 info
.iconSuiteID
= 0;
441 wxMacStringToPascal( page
->GetLabel() , info
.name
) ;
443 SetControlData( (ControlHandle
) m_macControl
, ii
+1, kControlTabInfoTag
,
444 sizeof( ControlTabInfoRec
) , (char*) &info
) ;
445 SetTabEnabled( (ControlHandle
) m_macControl
, ii
+1 , true ) ;
447 if ( GetImageList() && GetPageImage(ii
) >= 0 && UMAGetSystemVersion() >= 0x1020 )
449 // tab controls only support very specific types of images, therefore we are doing an odyssee
450 // accross the icon worlds (even Apple DTS did not find a shorter path)
451 // in order not to pollute the icon registry we put every icon into (OSType) 1 and immediately
452 // afterwards Unregister it (IconRef is ref counted, so it will stay on the tab even if we
453 // unregister it) in case this will ever lead to having the same icon everywhere add some kind
455 const wxBitmap
* bmap
= GetImageList()->GetBitmap( GetPageImage(ii
) ) ;
458 wxBitmap scaledBitmap
;
459 if ( bmap
->GetWidth() != 16 || bmap
->GetHeight() != 16 )
461 scaledBitmap
= wxBitmap( bmap
->ConvertToImage().Scale(16,16) ) ;
462 bmap
= &scaledBitmap
;
464 ControlButtonContentInfo info
;
465 wxMacCreateBitmapButton( &info
, *bmap
, kControlContentPictHandle
) ;
466 IconFamilyHandle iconFamily
= (IconFamilyHandle
) NewHandle(0) ;
467 OSErr err
= SetIconFamilyData( iconFamily
, 'PICT' , (Handle
) info
.u
.picture
) ;
468 wxASSERT_MSG( err
== noErr
, wxT("Error when adding bitmap") ) ;
470 err
= RegisterIconRefFromIconFamily( 'WXNG' , (OSType
) 1, iconFamily
, &iconRef
) ;
471 wxASSERT_MSG( err
== noErr
, wxT("Error when adding bitmap") ) ;
472 info
.contentType
= kControlContentIconRef
;
473 info
.u
.iconRef
= iconRef
;
474 SetControlData( (ControlHandle
) m_macControl
, ii
+1,kControlTabImageContentTag
,
475 sizeof( info
), (Ptr
)&info
);
476 wxASSERT_MSG( err
== noErr
, wxT("Error when setting icon on tab") ) ;
477 if ( UMAGetSystemVersion() < 0x1030 )
479 UnregisterIconRef( 'WXNG' , (OSType
) 1 ) ;
482 ReleaseIconRef( iconRef
) ;
483 DisposeHandle( (Handle
) iconFamily
) ;
489 GetControlBounds((ControlHandle
)m_macControl
, &bounds
);
490 InvalWindowRect((WindowRef
)MacGetRootWindow(), &bounds
);
493 wxRect
wxNotebook::GetPageRect() const
495 // fit the notebook page to the tab control's display area
500 wxMacTabLeftMargin(GetWindowStyle()) + m_macHorizontalBorder
,
501 wxMacTabTopMargin(GetWindowStyle()) + m_macVerticalBorder
,
502 w
- wxMacTabLeftMargin(GetWindowStyle()) - wxMacTabRightMargin(GetWindowStyle()) - 2*m_macHorizontalBorder
,
503 h
- wxMacTabTopMargin(GetWindowStyle()) - wxMacTabBottomMargin(GetWindowStyle()) - 2*m_macVerticalBorder
);
505 // ----------------------------------------------------------------------------
506 // wxNotebook callbacks
507 // ----------------------------------------------------------------------------
509 // @@@ OnSize() is used for setting the font when it's called for the first
510 // time because doing it in ::Create() doesn't work (for unknown reasons)
511 void wxNotebook::OnSize(wxSizeEvent
& event
)
514 unsigned int nCount
= m_pages
.Count();
515 wxRect rect
= GetPageRect() ;
516 for ( unsigned int nPage
= 0; nPage
< nCount
; nPage
++ ) {
517 wxNotebookPage
*pPage
= m_pages
[nPage
];
518 pPage
->SetSize(rect
);
519 if ( pPage
->GetAutoLayout() ) {
524 // Processing continues to next OnSize
528 void wxNotebook::OnSelChange(wxNotebookEvent
& event
)
530 // is it our tab control?
531 if ( event
.GetEventObject() == this )
532 ChangePage(event
.GetOldSelection(), event
.GetSelection());
534 // we want to give others a chance to process this message as well
538 void wxNotebook::OnSetFocus(wxFocusEvent
& event
)
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
567 wxWindow
*parent
= GetParent();
568 // the cast is here to fic a GCC ICE
569 if ( ((wxWindow
*)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 void wxNotebook::Command(wxCommandEvent
& event
)
625 wxFAIL_MSG(wxT("wxNotebook::Command not implemented"));
628 // ----------------------------------------------------------------------------
629 // wxNotebook helper functions
630 // ----------------------------------------------------------------------------
632 // hide the currently active panel and show the new one
633 void wxNotebook::ChangePage(int nOldSel
, int nSel
)
637 m_pages
[nOldSel
]->Show(FALSE
);
642 wxNotebookPage
*pPage
= m_pages
[nSel
];
648 SetControl32BitValue( (ControlHandle
) m_macControl
, m_nSelection
+ 1 ) ;
652 void wxNotebook::OnMouse( wxMouseEvent
&event
)
654 if ( (ControlHandle
) m_macControl
== NULL
)
660 if (event
.GetEventType() == wxEVT_LEFT_DOWN
|| event
.GetEventType() == wxEVT_LEFT_DCLICK
)
665 MacClientToRootWindow( &x
, &y
) ;
667 ControlHandle control
;
676 if ( !event
.m_leftDown
&& !event
.m_rightDown
)
677 modifiers
|= btnState
;
679 if ( event
.m_shiftDown
)
680 modifiers
|= shiftKey
;
682 if ( event
.m_controlDown
)
683 modifiers
|= controlKey
;
685 if ( event
.m_altDown
)
686 modifiers
|= optionKey
;
688 if ( event
.m_metaDown
)
689 modifiers
|= cmdKey
;
691 control
= (ControlHandle
) m_macControl
;
692 if ( control
&& ::IsControlActive( control
) )
695 wxNotebookEvent
changing(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, m_windowId
,
696 ::GetControl32BitValue(control
) - 1, m_nSelection
);
697 changing
.SetEventObject(this);
698 GetEventHandler()->ProcessEvent(changing
);
700 if(changing
.IsAllowed())
702 controlpart
= ::HandleControlClick(control
, localwhere
, modifiers
,
703 (ControlActionUPP
) -1);
704 wxTheApp
->s_lastMouseDown
= 0 ;
706 wxNotebookEvent
event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, m_windowId
,
707 ::GetControl32BitValue(control
) - 1, m_nSelection
);
708 event
.SetEventObject(this);
710 GetEventHandler()->ProcessEvent(event
);
718 void wxNotebook::MacHandleControlClick( WXWidget control
, wxInt16 controlpart
, bool WXUNUSED( mouseStillDown
) )
721 wxNotebookEvent
event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, m_windowId
, ::GetControl32BitValue((ControlHandle
)m_macControl
) - 1, m_nSelection
);
722 event
.SetEventObject(this);