1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: implementation of wxNotebook
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "notebook.h"
16 // ============================================================================
18 // ============================================================================
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
23 #include "wx/wxprec.h"
26 #include "wx/string.h"
28 #include "wx/imaglist.h"
30 #include "wx/notebook.h"
31 #include "wx/mac/uma.h"
32 // ----------------------------------------------------------------------------
34 // ----------------------------------------------------------------------------
36 // check that the page index is valid
37 #define IS_VALID_PAGE(nPage) ((nPage) < GetPageCount())
40 // ----------------------------------------------------------------------------
42 // ----------------------------------------------------------------------------
44 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
)
45 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
)
47 BEGIN_EVENT_TABLE(wxNotebook
, wxControl
)
48 EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange
)
50 EVT_SIZE(wxNotebook::OnSize
)
51 EVT_SET_FOCUS(wxNotebook::OnSetFocus
)
52 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey
)
55 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
, wxControl
)
56 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxCommandEvent
)
58 // ============================================================================
60 // ============================================================================
62 // ----------------------------------------------------------------------------
63 // wxNotebook construction
64 // ----------------------------------------------------------------------------
66 // common part of all ctors
67 void wxNotebook::Init()
72 // default for dynamic class
73 wxNotebook::wxNotebook()
78 // the same arguments as for wxControl
79 wxNotebook::wxNotebook(wxWindow
*parent
,
88 Create(parent
, id
, pos
, size
, style
, name
);
92 bool wxNotebook::Create(wxWindow
*parent
,
99 m_macIsUserPane
= FALSE
;
101 if ( !wxNotebookBase::Create(parent
, id
, pos
, size
, style
, name
) )
104 Rect bounds
= wxMacGetBoundsForControl( this , pos
, size
) ;
106 if( bounds
.right
<= bounds
.left
)
107 bounds
.right
= bounds
.left
+ 100 ;
108 if ( bounds
.bottom
<= bounds
.top
)
109 bounds
.bottom
= bounds
.top
+ 100 ;
111 UInt16 tabstyle
= kControlTabDirectionNorth
;
112 if ( HasFlag(wxNB_LEFT
) )
113 tabstyle
= kControlTabDirectionWest
;
114 else if ( HasFlag( wxNB_RIGHT
) )
115 tabstyle
= kControlTabDirectionEast
;
116 else if ( HasFlag( wxNB_BOTTOM
) )
117 tabstyle
= kControlTabDirectionSouth
;
119 ControlTabSize tabsize
= kControlTabSizeLarge
;
120 if ( GetWindowVariant() == wxWINDOW_VARIANT_SMALL
)
121 tabsize
= kControlTabSizeSmall
;
122 else if ( GetWindowVariant() == wxWINDOW_VARIANT_MINI
)
124 if (UMAGetSystemVersion() >= 0x1030 )
127 tabsize
= kControlSizeSmall
;
130 m_peer
= new wxMacControl() ;
131 verify_noerr ( CreateTabsControl( MAC_WXHWND(parent
->MacGetTopLevelWindowRef()) , &bounds
,
132 tabsize
, tabstyle
, 0, NULL
, m_peer
->GetControlRefAddr() ) );
135 MacPostControlCreate(pos
,size
) ;
140 wxNotebook::~wxNotebook()
144 // ----------------------------------------------------------------------------
145 // wxNotebook accessors
146 // ----------------------------------------------------------------------------
148 void wxNotebook::SetPadding(const wxSize
& padding
)
153 void wxNotebook::SetTabSize(const wxSize
& sz
)
158 void wxNotebook::SetPageSize(const wxSize
& size
)
160 SetSize( CalcSizeFromPage( size
) );
163 wxSize
wxNotebook::CalcSizeFromPage(const wxSize
& sizePage
) const
165 return DoGetSizeFromClientSize( sizePage
) ;
168 int wxNotebook::SetSelection(size_t nPage
)
170 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, wxT("notebook page out of range") );
172 if ( int(nPage
) != m_nSelection
)
174 wxNotebookEvent
event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, m_windowId
);
175 event
.SetSelection(nPage
);
176 event
.SetOldSelection(m_nSelection
);
177 event
.SetEventObject(this);
178 if ( !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
180 // program allows the page change
181 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
182 (void)GetEventHandler()->ProcessEvent(event
);
184 ChangePage(m_nSelection
, nPage
);
191 bool wxNotebook::SetPageText(size_t nPage
, const wxString
& strText
)
193 wxASSERT( IS_VALID_PAGE(nPage
) );
195 wxNotebookPage
*page
= m_pages
[nPage
];
196 page
->SetLabel(strText
);
202 wxString
wxNotebook::GetPageText(size_t nPage
) const
204 wxASSERT( IS_VALID_PAGE(nPage
) );
206 wxNotebookPage
*page
= m_pages
[nPage
];
207 return page
->GetLabel();
210 int wxNotebook::GetPageImage(size_t nPage
) const
212 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, _T("invalid notebook page") );
214 return m_images
[nPage
];
217 bool wxNotebook::SetPageImage(size_t nPage
, int nImage
)
219 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, _T("invalid notebook page") );
221 wxCHECK_MSG( m_imageList
&& nImage
< m_imageList
->GetImageCount(), FALSE
,
222 _T("invalid image index in SetPageImage()") );
224 if ( nImage
!= m_images
[nPage
] )
226 // if the item didn't have an icon before or, on the contrary, did have
227 // it but has lost it now, its size will change - but if the icon just
229 m_images
[nPage
] = nImage
;
237 // ----------------------------------------------------------------------------
238 // wxNotebook operations
239 // ----------------------------------------------------------------------------
241 // remove one page from the notebook, without deleting the window
242 wxNotebookPage
* wxNotebook::DoRemovePage(size_t nPage
)
244 wxCHECK( IS_VALID_PAGE(nPage
), NULL
);
245 wxNotebookPage
* page
= m_pages
[nPage
] ;
246 m_pages
.RemoveAt(nPage
);
250 if(m_nSelection
>= (int)GetPageCount()) {
251 m_nSelection
= GetPageCount() - 1;
253 if(m_nSelection
>= 0) {
254 m_pages
[m_nSelection
]->Show(true);
256 InvalidateBestSize();
261 bool wxNotebook::DeleteAllPages()
263 WX_CLEAR_ARRAY(m_pages
) ;
266 InvalidateBestSize();
271 // same as AddPage() but does it at given position
272 bool wxNotebook::InsertPage(size_t nPage
,
273 wxNotebookPage
*pPage
,
274 const wxString
& strText
,
278 if ( !wxNotebookBase::InsertPage(nPage
, pPage
, strText
, bSelect
, imageId
) )
281 wxASSERT_MSG( pPage
->GetParent() == this,
282 _T("notebook pages must have notebook as parent") );
284 // don't show pages by default (we'll need to adjust their size first)
285 pPage
->Show( false ) ;
287 pPage
->SetLabel(strText
);
289 m_images
.Insert(imageId
, nPage
);
293 wxRect rect
= GetPageRect() ;
294 pPage
->SetSize(rect
);
295 if ( pPage
->GetAutoLayout() ) {
300 // now deal with the selection
301 // ---------------------------
303 // if the inserted page is before the selected one, we must update the
304 // index of the selected page
306 if ( int(nPage
) <= m_nSelection
)
309 // while this still is the same page showing, we need to update the tabs
310 m_peer
->SetValue( m_nSelection
+ 1 ) ;
313 // some page should be selected: either this one or the first one if there
314 // is still no selection
318 else if ( m_nSelection
== -1 )
322 SetSelection(selNew
);
324 InvalidateBestSize();
328 /* Added by Mark Newsam
329 * When a page is added or deleted to the notebook this function updates
330 * information held in the control so that it matches the order
331 * the user would expect.
333 void wxNotebook::MacSetupTabs()
335 m_peer
->SetMaximum( GetPageCount() ) ;
337 wxNotebookPage
*page
;
338 ControlTabInfoRec info
;
340 const size_t countPages
= GetPageCount();
341 for(size_t ii
= 0; ii
< countPages
; ii
++)
345 info
.iconSuiteID
= 0;
346 wxMacStringToPascal( page
->GetLabel() , info
.name
) ;
347 m_peer
->SetData
<ControlTabInfoRec
>( ii
+1, kControlTabInfoTag
, &info
) ;
348 m_peer
->SetTabEnabled( ii
+ 1 , true ) ;
350 if ( GetImageList() && GetPageImage(ii
) >= 0 && UMAGetSystemVersion() >= 0x1020 )
352 const wxBitmap
* bmap
= GetImageList()->GetBitmap( GetPageImage(ii
) ) ;
355 ControlButtonContentInfo info
;
357 wxMacCreateBitmapButton( &info
, *bmap
) ;
358 OSStatus err
= m_peer
->SetData
<ControlButtonContentInfo
>( ii
+1,kControlTabImageContentTag
, &info
);
359 wxASSERT_MSG( err
== noErr
, wxT("Error when setting icon on tab") ) ;
360 wxMacReleaseBitmapButton( &info
) ;
366 m_peer
->GetRectInWindowCoords( &bounds
) ;
367 InvalWindowRect((WindowRef
)MacGetTopLevelWindowRef(), &bounds
);
370 wxRect
wxNotebook::GetPageRect() const
372 wxSize size
= GetClientSize() ;
373 return wxRect( 0 , 0 , size
.x
, size
.y
) ;
375 // ----------------------------------------------------------------------------
376 // wxNotebook callbacks
377 // ----------------------------------------------------------------------------
379 // @@@ OnSize() is used for setting the font when it's called for the first
380 // time because doing it in ::Create() doesn't work (for unknown reasons)
381 void wxNotebook::OnSize(wxSizeEvent
& event
)
384 unsigned int nCount
= m_pages
.Count();
385 wxRect rect
= GetPageRect() ;
386 for ( unsigned int nPage
= 0; nPage
< nCount
; nPage
++ ) {
387 wxNotebookPage
*pPage
= m_pages
[nPage
];
388 pPage
->SetSize(rect
);
389 if ( pPage
->GetAutoLayout() ) {
394 // Processing continues to next OnSize
398 void wxNotebook::OnSelChange(wxNotebookEvent
& event
)
400 // is it our tab control?
401 if ( event
.GetEventObject() == this )
402 ChangePage(event
.GetOldSelection(), event
.GetSelection());
404 // we want to give others a chance to process this message as well
408 void wxNotebook::OnSetFocus(wxFocusEvent
& event
)
410 // set focus to the currently selected page if any
411 if ( m_nSelection
!= -1 )
412 m_pages
[m_nSelection
]->SetFocus();
417 void wxNotebook::OnNavigationKey(wxNavigationKeyEvent
& event
)
419 if ( event
.IsWindowChange() ) {
421 AdvanceSelection(event
.GetDirection());
424 // we get this event in 2 cases
426 // a) one of our pages might have generated it because the user TABbed
427 // out from it in which case we should propagate the event upwards and
428 // our parent will take care of setting the focus to prev/next sibling
432 // b) the parent panel wants to give the focus to us so that we
433 // forward it to our selected page. We can't deal with this in
434 // OnSetFocus() because we don't know which direction the focus came
435 // from in this case and so can't choose between setting the focus to
436 // first or last panel child
437 wxWindow
*parent
= GetParent();
438 // the cast is here to fic a GCC ICE
439 if ( ((wxWindow
*)event
.GetEventObject()) == parent
)
441 // no, it doesn't come from child, case (b): forward to a page
442 if ( m_nSelection
!= -1 )
444 // so that the page knows that the event comes from it's parent
445 // and is being propagated downwards
446 event
.SetEventObject(this);
448 wxWindow
*page
= m_pages
[m_nSelection
];
449 if ( !page
->GetEventHandler()->ProcessEvent(event
) )
453 //else: page manages focus inside it itself
457 // we have no pages - still have to give focus to _something_
463 // it comes from our child, case (a), pass to the parent
465 event
.SetCurrentFocus(this);
466 parent
->GetEventHandler()->ProcessEvent(event
);
472 // ----------------------------------------------------------------------------
473 // wxNotebook base class virtuals
474 // ----------------------------------------------------------------------------
476 #if wxUSE_CONSTRAINTS
478 // override these 2 functions to do nothing: everything is done in OnSize
480 void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse
))
482 // don't set the sizes of the pages - their correct size is not yet known
483 wxControl::SetConstraintSizes(FALSE
);
486 bool wxNotebook::DoPhase(int WXUNUSED(nPhase
))
491 #endif // wxUSE_CONSTRAINTS
493 void wxNotebook::Command(wxCommandEvent
& event
)
495 wxFAIL_MSG(wxT("wxNotebook::Command not implemented"));
498 // ----------------------------------------------------------------------------
499 // wxNotebook helper functions
500 // ----------------------------------------------------------------------------
502 // hide the currently active panel and show the new one
503 void wxNotebook::ChangePage(int nOldSel
, int nSel
)
507 m_pages
[nOldSel
]->Show(FALSE
);
512 wxNotebookPage
*pPage
= m_pages
[nSel
];
518 m_peer
->SetValue( m_nSelection
+ 1 ) ;
521 wxInt32
wxNotebook::MacControlHit(WXEVENTHANDLERREF
WXUNUSED(handler
) , WXEVENTREF
WXUNUSED(event
) )
523 OSStatus status
= eventNotHandledErr
;
525 SInt32 newSel
= m_peer
->GetValue() - 1 ;
526 if ( newSel
!= m_nSelection
)
528 wxNotebookEvent
changing(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, m_windowId
,
529 newSel
, m_nSelection
);
530 changing
.SetEventObject(this);
531 GetEventHandler()->ProcessEvent(changing
);
533 if(changing
.IsAllowed())
535 wxNotebookEvent
event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, m_windowId
,
536 newSel
, m_nSelection
);
537 event
.SetEventObject(this);
539 GetEventHandler()->ProcessEvent(event
);
543 m_peer
->SetValue( m_nSelection
+ 1 ) ;