]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/notebmac.cpp
Fix centering of top-level children of wxMDIParentFrame on Mac
[wxWidgets.git] / src / mac / carbon / notebmac.cpp
CommitLineData
ee6b1d97
SC
1///////////////////////////////////////////////////////////////////////////////
2// Name: notebook.cpp
3// Purpose: implementation of wxNotebook
a31a5f85 4// Author: Stefan Csomor
5aed9d50 5// Modified by:
a31a5f85 6// Created: 1998-01-01
ee6b1d97 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
ee6b1d97
SC
10///////////////////////////////////////////////////////////////////////////////
11
eb22f2a6 12#ifdef __GNUG__
e40298d5 13#pragma implementation "notebook.h"
eb22f2a6
GD
14#endif
15
ee6b1d97
SC
16// ============================================================================
17// declarations
18// ============================================================================
19
20// ----------------------------------------------------------------------------
21// headers
22// ----------------------------------------------------------------------------
799690a0 23#include "wx/app.h"
d497dca4
GD
24#include "wx/string.h"
25#include "wx/log.h"
26#include "wx/imaglist.h"
061174e3 27#include "wx/image.h"
d497dca4
GD
28#include "wx/notebook.h"
29#include "wx/mac/uma.h"
ee6b1d97
SC
30// ----------------------------------------------------------------------------
31// macros
32// ----------------------------------------------------------------------------
33
34// check that the page index is valid
19c43a77 35#define IS_VALID_PAGE(nPage) ((nPage) < GetPageCount())
ee6b1d97 36
ee6b1d97
SC
37
38// ----------------------------------------------------------------------------
39// event table
40// ----------------------------------------------------------------------------
41
5b781a67
SC
42DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED)
43DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING)
44
ee6b1d97 45BEGIN_EVENT_TABLE(wxNotebook, wxControl)
461fe6e2 46 EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange)
e40298d5 47
461fe6e2
SC
48 EVT_SIZE(wxNotebook::OnSize)
49 EVT_SET_FOCUS(wxNotebook::OnSetFocus)
50 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey)
ee6b1d97
SC
51END_EVENT_TABLE()
52
53IMPLEMENT_DYNAMIC_CLASS(wxNotebook, wxControl)
54IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxCommandEvent)
ee6b1d97
SC
55
56// ============================================================================
57// implementation
58// ============================================================================
59
5aed9d50
RD
60// ----------------------------------------------------------------------------
61// wxNotebook construction
62// ----------------------------------------------------------------------------
63
64// common part of all ctors
65void wxNotebook::Init()
66{
ee6b1d97
SC
67 m_nSelection = -1;
68}
69
70// default for dynamic class
71wxNotebook::wxNotebook()
72{
73 Init();
74}
75
76// the same arguments as for wxControl
77wxNotebook::wxNotebook(wxWindow *parent,
78 wxWindowID id,
79 const wxPoint& pos,
80 const wxSize& size,
81 long style,
82 const wxString& name)
83{
84 Init();
5aed9d50 85
ee6b1d97
SC
86 Create(parent, id, pos, size, style, name);
87}
88
89// Create() function
90bool wxNotebook::Create(wxWindow *parent,
91 wxWindowID id,
92 const wxPoint& pos,
93 const wxSize& size,
94 long style,
95 const wxString& name)
96{
facd6764
SC
97 m_macIsUserPane = FALSE ;
98
b45ed7a2
VZ
99 if ( !wxNotebookBase::Create(parent, id, pos, size, style, name) )
100 return false;
101
facd6764 102 Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
5aed9d50 103
facd6764
SC
104 if( bounds.right <= bounds.left )
105 bounds.right = bounds.left + 100 ;
106 if ( bounds.bottom <= bounds.top )
107 bounds.bottom = bounds.top + 100 ;
5aed9d50 108
facd6764 109 UInt16 tabstyle = kControlTabDirectionNorth ;
e40298d5 110 if ( HasFlag(wxNB_LEFT) )
facd6764 111 tabstyle = kControlTabDirectionWest ;
e40298d5 112 else if ( HasFlag( wxNB_RIGHT ) )
facd6764 113 tabstyle = kControlTabDirectionEast ;
e40298d5 114 else if ( HasFlag( wxNB_BOTTOM ) )
facd6764
SC
115 tabstyle = kControlTabDirectionSouth ;
116
117 ControlTabSize tabsize = kControlTabSizeLarge ;
118 if ( GetWindowVariant() == wxWINDOW_VARIANT_SMALL )
119 tabsize = kControlTabSizeSmall ;
120 else if ( GetWindowVariant() == wxWINDOW_VARIANT_MINI )
121 {
122 if (UMAGetSystemVersion() >= 0x1030 )
123 tabsize = 3 ;
124 else
125 tabsize = kControlSizeSmall;
126 }
5aed9d50 127
21fd5529 128 m_peer = new wxMacControl() ;
4c37f124 129 verify_noerr ( CreateTabsControl( MAC_WXHWND(parent->MacGetTopLevelWindowRef()) , &bounds ,
5ca0d812 130 tabsize , tabstyle, 0, NULL, m_peer->GetControlRefAddr() ) );
21fd5529 131
facd6764
SC
132
133 MacPostControlCreate(pos,size) ;
e40298d5 134 return TRUE ;
ee6b1d97
SC
135}
136
137// dtor
138wxNotebook::~wxNotebook()
139{
ee6b1d97
SC
140}
141
142// ----------------------------------------------------------------------------
143// wxNotebook accessors
144// ----------------------------------------------------------------------------
90b959ae
SC
145
146void wxNotebook::SetPadding(const wxSize& padding)
147{
63ff6f53 148 // unsupported by OS
90b959ae
SC
149}
150
151void wxNotebook::SetTabSize(const wxSize& sz)
ee6b1d97 152{
63ff6f53 153 // unsupported by OS
ee6b1d97
SC
154}
155
90b959ae 156void wxNotebook::SetPageSize(const wxSize& size)
ee6b1d97 157{
63ff6f53
SC
158 SetSize( CalcSizeFromPage( size ) );
159}
160
161wxSize wxNotebook::CalcSizeFromPage(const wxSize& sizePage) const
162{
facd6764 163 return DoGetSizeFromClientSize( sizePage ) ;
63ff6f53
SC
164}
165
8f83dfee 166int wxNotebook::SetSelection(size_t nPage)
ee6b1d97 167{
461fe6e2 168 wxCHECK_MSG( IS_VALID_PAGE(nPage), -1, wxT("notebook page out of range") );
5aed9d50 169
461fe6e2
SC
170 if ( int(nPage) != m_nSelection )
171 {
172 wxNotebookEvent event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, m_windowId);
173 event.SetSelection(nPage);
174 event.SetOldSelection(m_nSelection);
175 event.SetEventObject(this);
176 if ( !GetEventHandler()->ProcessEvent(event) || event.IsAllowed() )
177 {
178 // program allows the page change
179 event.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED);
180 (void)GetEventHandler()->ProcessEvent(event);
181
182 ChangePage(m_nSelection, nPage);
183 }
184 }
5aed9d50 185
ee6b1d97
SC
186 return m_nSelection;
187}
188
8f83dfee 189bool wxNotebook::SetPageText(size_t nPage, const wxString& strText)
ee6b1d97
SC
190{
191 wxASSERT( IS_VALID_PAGE(nPage) );
5aed9d50 192
90b959ae 193 wxNotebookPage *page = m_pages[nPage];
c854c7d9
GD
194 page->SetLabel(strText);
195 MacSetupTabs();
5aed9d50 196
c854c7d9 197 return true;
ee6b1d97
SC
198}
199
8f83dfee 200wxString wxNotebook::GetPageText(size_t nPage) const
ee6b1d97
SC
201{
202 wxASSERT( IS_VALID_PAGE(nPage) );
5aed9d50 203
90b959ae 204 wxNotebookPage *page = m_pages[nPage];
c854c7d9 205 return page->GetLabel();
ee6b1d97
SC
206}
207
8f83dfee 208int wxNotebook::GetPageImage(size_t nPage) const
ee6b1d97 209{
fc0daf84 210 wxCHECK_MSG( IS_VALID_PAGE(nPage), -1, _T("invalid notebook page") );
5aed9d50 211
2b5f62a0 212 return m_images[nPage];
ee6b1d97
SC
213}
214
19c43a77 215bool wxNotebook::SetPageImage(size_t nPage, int nImage)
ee6b1d97 216{
fc0daf84 217 wxCHECK_MSG( IS_VALID_PAGE(nPage), FALSE, _T("invalid notebook page") );
5aed9d50 218
fc0daf84 219 wxCHECK_MSG( m_imageList && nImage < m_imageList->GetImageCount(), FALSE,
e40298d5 220 _T("invalid image index in SetPageImage()") );
5aed9d50 221
2b5f62a0
VZ
222 if ( nImage != m_images[nPage] )
223 {
224 // if the item didn't have an icon before or, on the contrary, did have
225 // it but has lost it now, its size will change - but if the icon just
226 // changes, it won't
227 m_images[nPage] = nImage;
5aed9d50 228
e40298d5 229 MacSetupTabs() ;
2b5f62a0 230 }
5aed9d50 231
2b5f62a0 232 return TRUE;
ee6b1d97
SC
233}
234
ee6b1d97
SC
235// ----------------------------------------------------------------------------
236// wxNotebook operations
237// ----------------------------------------------------------------------------
238
90b959ae 239// remove one page from the notebook, without deleting the window
8f83dfee 240wxNotebookPage* wxNotebook::DoRemovePage(size_t nPage)
ee6b1d97 241{
90b959ae
SC
242 wxCHECK( IS_VALID_PAGE(nPage), NULL );
243 wxNotebookPage* page = m_pages[nPage] ;
3ef585df 244 m_pages.RemoveAt(nPage);
5aed9d50 245
c854c7d9 246 MacSetupTabs();
5aed9d50 247
19c43a77 248 if(m_nSelection >= (int)GetPageCount()) {
c854c7d9
GD
249 m_nSelection = GetPageCount() - 1;
250 }
251 if(m_nSelection >= 0) {
90b959ae 252 m_pages[m_nSelection]->Show(true);
c854c7d9 253 }
37144cf0 254 InvalidateBestSize();
90b959ae 255 return page;
ee6b1d97
SC
256}
257
258// remove all pages
259bool wxNotebook::DeleteAllPages()
260{
90b959ae 261 WX_CLEAR_ARRAY(m_pages) ;
c854c7d9 262 MacSetupTabs();
061174e3 263 m_nSelection = -1 ;
37144cf0 264 InvalidateBestSize();
ee6b1d97
SC
265 return TRUE;
266}
267
ee6b1d97
SC
268
269// same as AddPage() but does it at given position
8f83dfee 270bool wxNotebook::InsertPage(size_t nPage,
ee6b1d97
SC
271 wxNotebookPage *pPage,
272 const wxString& strText,
273 bool bSelect,
274 int imageId)
275{
19c43a77
VZ
276 if ( !wxNotebookBase::InsertPage(nPage, pPage, strText, bSelect, imageId) )
277 return false;
5aed9d50 278
461fe6e2
SC
279 wxASSERT_MSG( pPage->GetParent() == this,
280 _T("notebook pages must have notebook as parent") );
281
282 // don't show pages by default (we'll need to adjust their size first)
283 pPage->Show( false ) ;
284
c854c7d9 285 pPage->SetLabel(strText);
5aed9d50 286
2b5f62a0 287 m_images.Insert(imageId, nPage);
5aed9d50 288
c854c7d9 289 MacSetupTabs();
5aed9d50 290
63ff6f53
SC
291 wxRect rect = GetPageRect() ;
292 pPage->SetSize(rect);
c854c7d9
GD
293 if ( pPage->GetAutoLayout() ) {
294 pPage->Layout();
295 }
5aed9d50 296
461fe6e2
SC
297
298 // now deal with the selection
299 // ---------------------------
300
301 // if the inserted page is before the selected one, we must update the
302 // index of the selected page
303
304 if ( int(nPage) <= m_nSelection )
305 {
306 m_nSelection++;
307 // while this still is the same page showing, we need to update the tabs
5ca0d812 308 m_peer->SetValue( m_nSelection + 1 ) ;
461fe6e2
SC
309 }
310
311 // some page should be selected: either this one or the first one if there
312 // is still no selection
313 int selNew = -1;
314 if ( bSelect )
315 selNew = nPage;
316 else if ( m_nSelection == -1 )
317 selNew = 0;
318
319 if ( selNew != -1 )
320 SetSelection(selNew);
321
37144cf0 322 InvalidateBestSize();
c854c7d9
GD
323 return true;
324}
325
326/* Added by Mark Newsam
e40298d5 327* When a page is added or deleted to the notebook this function updates
21fd5529 328* information held in the control so that it matches the order
e40298d5
JS
329* the user would expect.
330*/
c854c7d9
GD
331void wxNotebook::MacSetupTabs()
332{
5ca0d812 333 m_peer->SetMaximum( GetPageCount() ) ;
5aed9d50 334
c854c7d9
GD
335 wxNotebookPage *page;
336 ControlTabInfoRec info;
5aed9d50 337
19c43a77
VZ
338 const size_t countPages = GetPageCount();
339 for(size_t ii = 0; ii < countPages; ii++)
c854c7d9 340 {
90b959ae 341 page = m_pages[ii];
c854c7d9
GD
342 info.version = 0;
343 info.iconSuiteID = 0;
427ff662 344 wxMacStringToPascal( page->GetLabel() , info.name ) ;
5ca0d812
SC
345 m_peer->SetData<ControlTabInfoRec>( ii+1, kControlTabInfoTag, &info ) ;
346 m_peer->SetTabEnabled( ii + 1 , true ) ;
22026088 347#if TARGET_CARBON
2b5f62a0
VZ
348 if ( GetImageList() && GetPageImage(ii) >= 0 && UMAGetSystemVersion() >= 0x1020 )
349 {
e40298d5
JS
350 // tab controls only support very specific types of images, therefore we are doing an odyssee
351 // accross the icon worlds (even Apple DTS did not find a shorter path)
352 // in order not to pollute the icon registry we put every icon into (OSType) 1 and immediately
5aed9d50 353 // afterwards Unregister it (IconRef is ref counted, so it will stay on the tab even if we
e40298d5 354 // unregister it) in case this will ever lead to having the same icon everywhere add some kind
5aed9d50 355 // of static counter
69efd83d 356 const wxBitmap* bmap = GetImageList()->GetBitmap( GetPageImage(ii ) ) ;
061174e3
SC
357 if ( bmap )
358 {
359 wxBitmap scaledBitmap ;
360 if ( bmap->GetWidth() != 16 || bmap->GetHeight() != 16 )
361 {
362 scaledBitmap = wxBitmap( bmap->ConvertToImage().Scale(16,16) ) ;
363 bmap = &scaledBitmap ;
364 }
365 ControlButtonContentInfo info ;
366 wxMacCreateBitmapButton( &info , *bmap , kControlContentPictHandle) ;
367 IconFamilyHandle iconFamily = (IconFamilyHandle) NewHandle(0) ;
368 OSErr err = SetIconFamilyData( iconFamily, 'PICT' , (Handle) info.u.picture ) ;
369 wxASSERT_MSG( err == noErr , wxT("Error when adding bitmap") ) ;
370 IconRef iconRef ;
d5f7923b 371 err = RegisterIconRefFromIconFamily( 'WXNG' , (OSType) 1, iconFamily, &iconRef ) ;
061174e3
SC
372 wxASSERT_MSG( err == noErr , wxT("Error when adding bitmap") ) ;
373 info.contentType = kControlContentIconRef ;
374 info.u.iconRef = iconRef ;
5ca0d812 375 m_peer->SetData<ControlButtonContentInfo>( ii+1,kControlTabImageContentTag, &info );
061174e3 376 wxASSERT_MSG( err == noErr , wxT("Error when setting icon on tab") ) ;
d8c59747 377 if ( UMAGetSystemVersion() < 0x1030 )
d5f7923b
SC
378 {
379 UnregisterIconRef( 'WXNG' , (OSType) 1 ) ;
380 }
381
061174e3
SC
382 ReleaseIconRef( iconRef ) ;
383 DisposeHandle( (Handle) iconFamily ) ;
384 }
2b5f62a0
VZ
385 }
386#endif
c854c7d9
GD
387 }
388 Rect bounds;
5ca0d812 389 m_peer->GetRectInWindowCoords( &bounds ) ;
facd6764 390 InvalWindowRect((WindowRef)MacGetTopLevelWindowRef(), &bounds);
ee6b1d97
SC
391}
392
63ff6f53
SC
393wxRect wxNotebook::GetPageRect() const
394{
facd6764
SC
395 wxSize size = GetClientSize() ;
396 return wxRect( 0 , 0 , size.x , size.y ) ;
63ff6f53 397}
ee6b1d97
SC
398// ----------------------------------------------------------------------------
399// wxNotebook callbacks
400// ----------------------------------------------------------------------------
401
402// @@@ OnSize() is used for setting the font when it's called for the first
403// time because doing it in ::Create() doesn't work (for unknown reasons)
404void wxNotebook::OnSize(wxSizeEvent& event)
405{
5aed9d50 406
90b959ae 407 unsigned int nCount = m_pages.Count();
63ff6f53 408 wxRect rect = GetPageRect() ;
ee6b1d97 409 for ( unsigned int nPage = 0; nPage < nCount; nPage++ ) {
90b959ae 410 wxNotebookPage *pPage = m_pages[nPage];
63ff6f53 411 pPage->SetSize(rect);
c854c7d9 412 if ( pPage->GetAutoLayout() ) {
ee6b1d97 413 pPage->Layout();
c854c7d9 414 }
ee6b1d97 415 }
5aed9d50 416
ee6b1d97
SC
417 // Processing continues to next OnSize
418 event.Skip();
419}
420
421void wxNotebook::OnSelChange(wxNotebookEvent& event)
422{
423 // is it our tab control?
424 if ( event.GetEventObject() == this )
425 ChangePage(event.GetOldSelection(), event.GetSelection());
5aed9d50 426
ee6b1d97
SC
427 // we want to give others a chance to process this message as well
428 event.Skip();
429}
430
431void wxNotebook::OnSetFocus(wxFocusEvent& event)
432{
433 // set focus to the currently selected page if any
434 if ( m_nSelection != -1 )
90b959ae 435 m_pages[m_nSelection]->SetFocus();
5aed9d50 436
ee6b1d97
SC
437 event.Skip();
438}
439
440void wxNotebook::OnNavigationKey(wxNavigationKeyEvent& event)
441{
442 if ( event.IsWindowChange() ) {
443 // change pages
444 AdvanceSelection(event.GetDirection());
445 }
446 else {
461fe6e2
SC
447 // we get this event in 2 cases
448 //
449 // a) one of our pages might have generated it because the user TABbed
450 // out from it in which case we should propagate the event upwards and
451 // our parent will take care of setting the focus to prev/next sibling
452 //
453 // or
454 //
455 // b) the parent panel wants to give the focus to us so that we
456 // forward it to our selected page. We can't deal with this in
457 // OnSetFocus() because we don't know which direction the focus came
458 // from in this case and so can't choose between setting the focus to
459 // first or last panel child
460 wxWindow *parent = GetParent();
461 // the cast is here to fic a GCC ICE
462 if ( ((wxWindow*)event.GetEventObject()) == parent )
463 {
464 // no, it doesn't come from child, case (b): forward to a page
465 if ( m_nSelection != -1 )
466 {
467 // so that the page knows that the event comes from it's parent
468 // and is being propagated downwards
469 event.SetEventObject(this);
470
471 wxWindow *page = m_pages[m_nSelection];
472 if ( !page->GetEventHandler()->ProcessEvent(event) )
473 {
474 page->SetFocus();
475 }
476 //else: page manages focus inside it itself
477 }
478 else
479 {
480 // we have no pages - still have to give focus to _something_
481 SetFocus();
482 }
483 }
484 else
485 {
486 // it comes from our child, case (a), pass to the parent
487 if ( parent ) {
488 event.SetCurrentFocus(this);
489 parent->GetEventHandler()->ProcessEvent(event);
490 }
ee6b1d97
SC
491 }
492 }
493}
494
495// ----------------------------------------------------------------------------
496// wxNotebook base class virtuals
497// ----------------------------------------------------------------------------
498
461fe6e2
SC
499#if wxUSE_CONSTRAINTS
500
ee6b1d97
SC
501// override these 2 functions to do nothing: everything is done in OnSize
502
461fe6e2 503void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse))
ee6b1d97 504{
461fe6e2
SC
505 // don't set the sizes of the pages - their correct size is not yet known
506 wxControl::SetConstraintSizes(FALSE);
ee6b1d97
SC
507}
508
461fe6e2 509bool wxNotebook::DoPhase(int WXUNUSED(nPhase))
ee6b1d97 510{
461fe6e2 511 return TRUE;
ee6b1d97
SC
512}
513
461fe6e2
SC
514#endif // wxUSE_CONSTRAINTS
515
ee6b1d97
SC
516void wxNotebook::Command(wxCommandEvent& event)
517{
427ff662 518 wxFAIL_MSG(wxT("wxNotebook::Command not implemented"));
ee6b1d97
SC
519}
520
521// ----------------------------------------------------------------------------
522// wxNotebook helper functions
523// ----------------------------------------------------------------------------
524
525// hide the currently active panel and show the new one
526void wxNotebook::ChangePage(int nOldSel, int nSel)
527{
461fe6e2
SC
528 if ( nOldSel != -1 )
529 {
530 m_pages[nOldSel]->Show(FALSE);
531 }
532
533 if ( nSel != -1 )
c854c7d9 534 {
90b959ae 535 wxNotebookPage *pPage = m_pages[nSel];
c854c7d9
GD
536 pPage->Show(TRUE);
537 pPage->SetFocus();
c854c7d9 538 }
461fe6e2 539
ee6b1d97 540 m_nSelection = nSel;
5ca0d812 541 m_peer->SetValue( m_nSelection + 1 ) ;
ee6b1d97
SC
542}
543
4c37f124 544wxInt32 wxNotebook::MacControlHit(WXEVENTHANDLERREF WXUNUSED(handler) , WXEVENTREF WXUNUSED(event) )
799690a0 545{
4c37f124
SC
546 OSStatus status = eventNotHandledErr ;
547
5ca0d812 548 SInt32 newSel = m_peer->GetValue() - 1 ;
4c37f124 549 if ( newSel != m_nSelection )
e40298d5 550 {
4c37f124
SC
551 wxNotebookEvent changing(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, m_windowId,
552 newSel , m_nSelection);
553 changing.SetEventObject(this);
554 GetEventHandler()->ProcessEvent(changing);
5aed9d50 555
4c37f124 556 if(changing.IsAllowed())
e40298d5 557 {
4c37f124
SC
558 wxNotebookEvent event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, m_windowId,
559 newSel, m_nSelection);
560 event.SetEventObject(this);
5aed9d50 561
4c37f124
SC
562 GetEventHandler()->ProcessEvent(event);
563 }
564 else
565 {
5ca0d812 566 m_peer->SetValue( m_nSelection + 1 ) ;
e40298d5 567 }
4c37f124 568 status = noErr ;
e40298d5 569 }
4c37f124 570 return status ;
ee6b1d97
SC
571}
572