]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/notebmac.cpp
no real changes, just some cleanup: add wxIsAltDown() in addition to the existing...
[wxWidgets.git] / src / mac / carbon / notebmac.cpp
CommitLineData
ee6b1d97 1///////////////////////////////////////////////////////////////////////////////
90c0f5a9 2// Name: src/mac/carbon/notebmac.cpp
ee6b1d97 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
3d1a4878
SC
12#include "wx/wxprec.h"
13
179e085f
RN
14#if wxUSE_NOTEBOOK
15
df91131c
WS
16#include "wx/notebook.h"
17
18#ifndef WX_PRECOMP
19 #include "wx/string.h"
e4db172a 20 #include "wx/log.h"
670f9935 21 #include "wx/app.h"
155ecd4c 22 #include "wx/image.h"
df91131c
WS
23#endif
24
d497dca4 25#include "wx/string.h"
d497dca4 26#include "wx/imaglist.h"
d497dca4 27#include "wx/mac/uma.h"
5a7d70fe 28
ee6b1d97
SC
29
30// check that the page index is valid
19c43a77 31#define IS_VALID_PAGE(nPage) ((nPage) < GetPageCount())
ee6b1d97 32
ee6b1d97 33
5b781a67
SC
34DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED)
35DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING)
36
ee6b1d97 37BEGIN_EVENT_TABLE(wxNotebook, wxControl)
90c0f5a9 38 EVT_NOTEBOOK_PAGE_CHANGED(wxID_ANY, wxNotebook::OnSelChange)
e40298d5 39
461fe6e2
SC
40 EVT_SIZE(wxNotebook::OnSize)
41 EVT_SET_FOCUS(wxNotebook::OnSetFocus)
42 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey)
ee6b1d97
SC
43END_EVENT_TABLE()
44
45IMPLEMENT_DYNAMIC_CLASS(wxNotebook, wxControl)
46IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxCommandEvent)
ee6b1d97 47
5aed9d50
RD
48
49// common part of all ctors
50void wxNotebook::Init()
51{
ee6b1d97
SC
52 m_nSelection = -1;
53}
54
55// default for dynamic class
56wxNotebook::wxNotebook()
57{
58 Init();
59}
60
61// the same arguments as for wxControl
5a7d70fe
DS
62wxNotebook::wxNotebook( wxWindow *parent,
63 wxWindowID id,
64 const wxPoint& pos,
65 const wxSize& size,
66 long style,
67 const wxString& name )
ee6b1d97
SC
68{
69 Init();
5aed9d50 70
5a7d70fe 71 Create( parent, id, pos, size, style, name );
ee6b1d97
SC
72}
73
5a7d70fe
DS
74bool wxNotebook::Create( wxWindow *parent,
75 wxWindowID id,
76 const wxPoint& pos,
77 const wxSize& size,
78 long style,
79 const wxString& name )
ee6b1d97 80{
90c0f5a9
WS
81 m_macIsUserPane = false ;
82
511bec96
RD
83 if (! (style & wxBK_ALIGN_MASK))
84 style |= wxBK_TOP;
155ecd4c 85
5a7d70fe 86 if ( !wxNotebookBase::Create( parent, id, pos, size, style, name ) )
b45ed7a2
VZ
87 return false;
88
5a7d70fe 89 Rect bounds = wxMacGetBoundsForControl( this, pos, size );
5aed9d50 90
5a7d70fe
DS
91 if ( bounds.right <= bounds.left )
92 bounds.right = bounds.left + 100;
facd6764 93 if ( bounds.bottom <= bounds.top )
5a7d70fe 94 bounds.bottom = bounds.top + 100;
5aed9d50 95
5a7d70fe 96 UInt16 tabstyle = kControlTabDirectionNorth;
90c0f5a9 97 if ( HasFlag(wxBK_LEFT) )
5a7d70fe 98 tabstyle = kControlTabDirectionWest;
90c0f5a9 99 else if ( HasFlag( wxBK_RIGHT ) )
5a7d70fe 100 tabstyle = kControlTabDirectionEast;
90c0f5a9 101 else if ( HasFlag( wxBK_BOTTOM ) )
5a7d70fe 102 tabstyle = kControlTabDirectionSouth;
90c0f5a9 103
5a7d70fe
DS
104 ControlTabSize tabsize;
105 switch (GetWindowVariant())
facd6764 106 {
df91131c 107 case wxWINDOW_VARIANT_MINI:
9d463591 108 tabsize = 3 ;
5a7d70fe
DS
109 break;
110
df91131c 111 case wxWINDOW_VARIANT_SMALL:
5a7d70fe
DS
112 tabsize = kControlTabSizeSmall;
113 break;
114
df91131c 115 default:
5a7d70fe
DS
116 tabsize = kControlTabSizeLarge;
117 break;
facd6764 118 }
5aed9d50 119
5a7d70fe
DS
120 m_peer = new wxMacControl( this );
121 OSStatus err = CreateTabsControl(
122 MAC_WXHWND(parent->MacGetTopLevelWindowRef()), &bounds,
123 tabsize, tabstyle, 0, NULL, m_peer->GetControlRefAddr() );
124 verify_noerr( err );
90c0f5a9 125
5a7d70fe 126 MacPostControlCreate( pos, size );
90c0f5a9 127
90c0f5a9 128 return true ;
ee6b1d97
SC
129}
130
131// dtor
132wxNotebook::~wxNotebook()
133{
ee6b1d97
SC
134}
135
136// ----------------------------------------------------------------------------
137// wxNotebook accessors
138// ----------------------------------------------------------------------------
90b959ae 139
89954433 140void wxNotebook::SetPadding(const wxSize& WXUNUSED(padding))
90b959ae 141{
63ff6f53 142 // unsupported by OS
90b959ae
SC
143}
144
89954433 145void wxNotebook::SetTabSize(const wxSize& WXUNUSED(sz))
ee6b1d97 146{
63ff6f53 147 // unsupported by OS
ee6b1d97
SC
148}
149
90b959ae 150void wxNotebook::SetPageSize(const wxSize& size)
ee6b1d97 151{
63ff6f53
SC
152 SetSize( CalcSizeFromPage( size ) );
153}
154
155wxSize wxNotebook::CalcSizeFromPage(const wxSize& sizePage) const
156{
5a7d70fe 157 return DoGetSizeFromClientSize( sizePage );
63ff6f53
SC
158}
159
2da25e49 160int wxNotebook::DoSetSelection(size_t nPage, int flags)
ee6b1d97 161{
1d6fcbcc 162 wxCHECK_MSG( IS_VALID_PAGE(nPage), wxNOT_FOUND, wxT("DoSetSelection: invalid notebook page") );
5aed9d50 163
8e79a06b 164 if ( m_nSelection == wxNOT_FOUND || nPage != (size_t)m_nSelection )
461fe6e2 165 {
2da25e49 166 if ( flags & SetSelection_SendEvent )
461fe6e2 167 {
a570e8f8 168 if ( !SendPageChangingEvent(nPage) )
1d6fcbcc 169 {
2da25e49
VZ
170 // vetoed by program
171 return m_nSelection;
1d6fcbcc 172 }
2da25e49
VZ
173 //else: program allows the page change
174
a570e8f8 175 SendPageChangedEvent(m_nSelection, nPage);
461fe6e2 176 }
5aed9d50 177
2da25e49
VZ
178 ChangePage(m_nSelection, nPage);
179 }
8e79a06b 180 //else: no change
2da25e49 181
ee6b1d97
SC
182 return m_nSelection;
183}
184
8f83dfee 185bool wxNotebook::SetPageText(size_t nPage, const wxString& strText)
ee6b1d97 186{
5a7d70fe 187 wxCHECK_MSG( IS_VALID_PAGE(nPage), false, wxT("SetPageText: invalid notebook page") );
5aed9d50 188
90b959ae 189 wxNotebookPage *page = m_pages[nPage];
c854c7d9
GD
190 page->SetLabel(strText);
191 MacSetupTabs();
5aed9d50 192
c854c7d9 193 return true;
ee6b1d97
SC
194}
195
8f83dfee 196wxString wxNotebook::GetPageText(size_t nPage) const
ee6b1d97 197{
5a7d70fe 198 wxCHECK_MSG( IS_VALID_PAGE(nPage), wxEmptyString, wxT("GetPageText: invalid notebook page") );
5aed9d50 199
90b959ae 200 wxNotebookPage *page = m_pages[nPage];
5a7d70fe 201
c854c7d9 202 return page->GetLabel();
ee6b1d97
SC
203}
204
8f83dfee 205int wxNotebook::GetPageImage(size_t nPage) const
ee6b1d97 206{
5a7d70fe 207 wxCHECK_MSG( IS_VALID_PAGE(nPage), wxNOT_FOUND, wxT("GetPageImage: invalid notebook page") );
5aed9d50 208
2b5f62a0 209 return m_images[nPage];
ee6b1d97
SC
210}
211
19c43a77 212bool wxNotebook::SetPageImage(size_t nPage, int nImage)
ee6b1d97 213{
5a7d70fe
DS
214 wxCHECK_MSG( IS_VALID_PAGE(nPage), false,
215 wxT("SetPageImage: invalid notebook page") );
90c0f5a9 216 wxCHECK_MSG( m_imageList && nImage < m_imageList->GetImageCount(), false,
5a7d70fe 217 wxT("SetPageImage: invalid image index") );
5aed9d50 218
2b5f62a0
VZ
219 if ( nImage != m_images[nPage] )
220 {
221 // if the item didn't have an icon before or, on the contrary, did have
222 // it but has lost it now, its size will change - but if the icon just
223 // changes, it won't
224 m_images[nPage] = nImage;
5aed9d50 225
e40298d5 226 MacSetupTabs() ;
2b5f62a0 227 }
5aed9d50 228
90c0f5a9 229 return true;
ee6b1d97
SC
230}
231
ee6b1d97
SC
232// ----------------------------------------------------------------------------
233// wxNotebook operations
234// ----------------------------------------------------------------------------
235
90b959ae 236// remove one page from the notebook, without deleting the window
8f83dfee 237wxNotebookPage* wxNotebook::DoRemovePage(size_t nPage)
ee6b1d97 238{
5a7d70fe
DS
239 wxCHECK_MSG( IS_VALID_PAGE(nPage), NULL,
240 wxT("DoRemovePage: invalid notebook page") );
241
90b959ae 242 wxNotebookPage* page = m_pages[nPage] ;
3ef585df 243 m_pages.RemoveAt(nPage);
5aed9d50 244
c854c7d9 245 MacSetupTabs();
5aed9d50 246
5a7d70fe 247 if (m_nSelection >= (int)GetPageCount())
c854c7d9 248 m_nSelection = GetPageCount() - 1;
5a7d70fe
DS
249
250 if (m_nSelection >= 0)
90b959ae 251 m_pages[m_nSelection]->Show(true);
5a7d70fe 252
37144cf0 253 InvalidateBestSize();
5a7d70fe 254
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();
5a7d70fe 265
90c0f5a9 266 return true;
ee6b1d97
SC
267}
268
ee6b1d97 269// same as AddPage() but does it at given position
8f83dfee 270bool wxNotebook::InsertPage(size_t nPage,
5a7d70fe
DS
271 wxNotebookPage *pPage,
272 const wxString& strText,
273 bool bSelect,
274 int imageId )
ee6b1d97 275{
5a7d70fe 276 if ( !wxNotebookBase::InsertPage( nPage, pPage, strText, bSelect, imageId ) )
19c43a77 277 return false;
5aed9d50 278
5a7d70fe 279 wxASSERT_MSG( pPage->GetParent() == this, wxT("notebook pages must have notebook as parent") );
461fe6e2
SC
280
281 // don't show pages by default (we'll need to adjust their size first)
282 pPage->Show( false ) ;
283
5a7d70fe 284 pPage->SetLabel( strText );
5aed9d50 285
5a7d70fe 286 m_images.Insert( imageId, nPage );
5aed9d50 287
c854c7d9 288 MacSetupTabs();
5aed9d50 289
63ff6f53 290 wxRect rect = GetPageRect() ;
5a7d70fe
DS
291 pPage->SetSize( rect );
292 if ( pPage->GetAutoLayout() )
c854c7d9 293 pPage->Layout();
461fe6e2
SC
294
295 // now deal with the selection
296 // ---------------------------
297
298 // if the inserted page is before the selected one, we must update the
299 // index of the selected page
300
90c0f5a9 301 if ( int(nPage) <= m_nSelection )
461fe6e2
SC
302 {
303 m_nSelection++;
5a7d70fe 304
461fe6e2 305 // while this still is the same page showing, we need to update the tabs
5ca0d812 306 m_peer->SetValue( m_nSelection + 1 ) ;
461fe6e2 307 }
90c0f5a9 308
461fe6e2
SC
309 // some page should be selected: either this one or the first one if there
310 // is still no selection
311 int selNew = -1;
312 if ( bSelect )
313 selNew = nPage;
314 else if ( m_nSelection == -1 )
315 selNew = 0;
316
317 if ( selNew != -1 )
5a7d70fe 318 SetSelection( selNew );
461fe6e2 319
37144cf0 320 InvalidateBestSize();
5a7d70fe 321
c854c7d9
GD
322 return true;
323}
324
3c3e6970
SC
325int wxNotebook::HitTest(const wxPoint& pt, long * flags) const
326{
fe224552 327 int resultV = wxNOT_FOUND;
5a7d70fe 328
3c3e6970 329#if TARGET_API_MAC_OSX
5a7d70fe 330 const int countPages = GetPageCount();
fe224552 331
2fbfb7d6 332 // we have to convert from Client to Window relative coordinates
df91131c 333 wxPoint adjustedPt = pt + GetClientAreaOrigin();
2fbfb7d6
SC
334 // and now to HIView native ones
335 adjustedPt.x -= MacGetLeftBorderSize() ;
336 adjustedPt.y -= MacGetTopBorderSize() ;
df91131c 337
2fbfb7d6 338 HIPoint hipoint= { adjustedPt.x , adjustedPt.y } ;
3c3e6970 339 HIViewPartCode outPart = 0 ;
5a7d70fe 340 OSStatus err = HIViewGetPartHit( m_peer->GetControlRef(), &hipoint, &outPart );
fe224552 341
0df4335d 342 int max = m_peer->GetMaximum() ;
3c3e6970
SC
343 if ( outPart == 0 && max > 0 )
344 {
345 // this is a hack, as unfortunately a hit on an already selected tab returns 0,
fe224552 346 // so we have to go some extra miles to make sure we select something different
3c3e6970 347 // and try again ..
0df4335d 348 int val = m_peer->GetValue() ;
3c3e6970
SC
349 int maxval = max ;
350 if ( max == 1 )
351 {
0df4335d 352 m_peer->SetMaximum( 2 ) ;
3c3e6970
SC
353 maxval = 2 ;
354 }
355
356 if ( val == 1 )
0df4335d 357 m_peer->SetValue( maxval ) ;
3c3e6970 358 else
0df4335d 359 m_peer->SetValue( 1 ) ;
fe224552 360
5a7d70fe 361 err = HIViewGetPartHit( m_peer->GetControlRef(), &hipoint, &outPart );
fe224552 362
0df4335d 363 m_peer->SetValue( val ) ;
3c3e6970 364 if ( max == 1 )
0df4335d 365 m_peer->SetMaximum( 1 ) ;
3c3e6970 366 }
fe224552
VZ
367
368 if ( outPart >= 1 && outPart <= countPages )
eb5d9594 369 resultV = outPart - 1 ;
f885b815
VZ
370#endif // TARGET_API_MAC_OSX
371
3c3e6970
SC
372 if (flags != NULL)
373 {
374 *flags = 0;
fe224552 375
3c3e6970 376 // we cannot differentiate better
eb5d9594 377 if (resultV >= 0)
9804d540 378 *flags |= wxBK_HITTEST_ONLABEL;
3c3e6970 379 else
9804d540 380 *flags |= wxBK_HITTEST_NOWHERE;
3c3e6970 381 }
5a7d70fe 382
3c3e6970
SC
383 return resultV;
384}
385
5a7d70fe
DS
386// Added by Mark Newsam
387// When a page is added or deleted to the notebook this function updates
388// information held in the control so that it matches the order
389// the user would expect.
390//
c854c7d9
GD
391void wxNotebook::MacSetupTabs()
392{
5ca0d812 393 m_peer->SetMaximum( GetPageCount() ) ;
5aed9d50 394
c854c7d9 395 wxNotebookPage *page;
5324268e 396 ControlTabInfoRecV1 info;
5aed9d50 397
19c43a77 398 const size_t countPages = GetPageCount();
5a7d70fe 399 for (size_t ii = 0; ii < countPages; ii++)
c854c7d9 400 {
90b959ae 401 page = m_pages[ii];
5324268e 402 info.version = kControlTabInfoVersionOne;
c854c7d9 403 info.iconSuiteID = 0;
5a7d70fe 404 wxMacCFStringHolder cflabel( page->GetLabel(), m_font.GetEncoding() ) ;
5324268e 405 info.name = cflabel ;
5a7d70fe 406 m_peer->SetData<ControlTabInfoRecV1>( ii + 1, kControlTabInfoTag, &info ) ;
20b69855 407
2b5f62a0
VZ
408 if ( GetImageList() && GetPageImage(ii) >= 0 && UMAGetSystemVersion() >= 0x1020 )
409 {
5a7d70fe 410 const wxBitmap bmap = GetImageList()->GetBitmap( GetPageImage( ii ) ) ;
b337acd7 411 if ( bmap.Ok() )
061174e3 412 {
061174e3 413 ControlButtonContentInfo info ;
20b69855 414
5a7d70fe
DS
415 wxMacCreateBitmapButton( &info, bmap ) ;
416
417 OSStatus err = m_peer->SetData<ControlButtonContentInfo>( ii + 1, kControlTabImageContentTag, &info );
061174e3 418 wxASSERT_MSG( err == noErr , wxT("Error when setting icon on tab") ) ;
5a7d70fe 419
20b69855 420 wxMacReleaseBitmapButton( &info ) ;
061174e3 421 }
2b5f62a0 422 }
5a7d70fe
DS
423
424 m_peer->SetTabEnabled( ii + 1, true ) ;
c854c7d9 425 }
5a7d70fe 426
4f74e0d1
SC
427#if wxMAC_USE_CORE_GRAPHICS
428 Refresh();
429#else
c854c7d9 430 Rect bounds;
5ca0d812 431 m_peer->GetRectInWindowCoords( &bounds ) ;
5a7d70fe 432 InvalWindowRect( (WindowRef)MacGetTopLevelWindowRef(), &bounds );
4f74e0d1 433#endif
ee6b1d97
SC
434}
435
63ff6f53
SC
436wxRect wxNotebook::GetPageRect() const
437{
facd6764 438 wxSize size = GetClientSize() ;
5a7d70fe 439
facd6764 440 return wxRect( 0 , 0 , size.x , size.y ) ;
63ff6f53 441}
5a7d70fe 442
ee6b1d97
SC
443// ----------------------------------------------------------------------------
444// wxNotebook callbacks
445// ----------------------------------------------------------------------------
446
447// @@@ OnSize() is used for setting the font when it's called for the first
448// time because doing it in ::Create() doesn't work (for unknown reasons)
449void wxNotebook::OnSize(wxSizeEvent& event)
450{
90b959ae 451 unsigned int nCount = m_pages.Count();
63ff6f53 452 wxRect rect = GetPageRect() ;
5a7d70fe
DS
453
454 for ( unsigned int nPage = 0; nPage < nCount; nPage++ )
455 {
90b959ae 456 wxNotebookPage *pPage = m_pages[nPage];
63ff6f53 457 pPage->SetSize(rect);
5a7d70fe 458 if ( pPage->GetAutoLayout() )
ee6b1d97
SC
459 pPage->Layout();
460 }
5aed9d50 461
ee6b1d97
SC
462 // Processing continues to next OnSize
463 event.Skip();
464}
465
466void wxNotebook::OnSelChange(wxNotebookEvent& event)
467{
468 // is it our tab control?
469 if ( event.GetEventObject() == this )
470 ChangePage(event.GetOldSelection(), event.GetSelection());
5aed9d50 471
ee6b1d97
SC
472 // we want to give others a chance to process this message as well
473 event.Skip();
474}
475
476void wxNotebook::OnSetFocus(wxFocusEvent& event)
477{
478 // set focus to the currently selected page if any
479 if ( m_nSelection != -1 )
90b959ae 480 m_pages[m_nSelection]->SetFocus();
5aed9d50 481
ee6b1d97
SC
482 event.Skip();
483}
484
485void wxNotebook::OnNavigationKey(wxNavigationKeyEvent& event)
486{
5a7d70fe
DS
487 if ( event.IsWindowChange() )
488 {
ee6b1d97 489 // change pages
5a7d70fe 490 AdvanceSelection( event.GetDirection() );
ee6b1d97 491 }
5a7d70fe
DS
492 else
493 {
461fe6e2
SC
494 // we get this event in 2 cases
495 //
496 // a) one of our pages might have generated it because the user TABbed
497 // out from it in which case we should propagate the event upwards and
498 // our parent will take care of setting the focus to prev/next sibling
499 //
500 // or
501 //
502 // b) the parent panel wants to give the focus to us so that we
503 // forward it to our selected page. We can't deal with this in
504 // OnSetFocus() because we don't know which direction the focus came
505 // from in this case and so can't choose between setting the focus to
506 // first or last panel child
507 wxWindow *parent = GetParent();
5a7d70fe
DS
508
509 // the cast is here to fix a GCC ICE
461fe6e2
SC
510 if ( ((wxWindow*)event.GetEventObject()) == parent )
511 {
512 // no, it doesn't come from child, case (b): forward to a page
513 if ( m_nSelection != -1 )
514 {
515 // so that the page knows that the event comes from it's parent
516 // and is being propagated downwards
5a7d70fe 517 event.SetEventObject( this );
461fe6e2
SC
518
519 wxWindow *page = m_pages[m_nSelection];
5a7d70fe 520 if ( !page->GetEventHandler()->ProcessEvent( event ) )
461fe6e2
SC
521 {
522 page->SetFocus();
523 }
524 //else: page manages focus inside it itself
525 }
526 else
527 {
528 // we have no pages - still have to give focus to _something_
529 SetFocus();
530 }
531 }
532 else
533 {
534 // it comes from our child, case (a), pass to the parent
5a7d70fe
DS
535 if ( parent )
536 {
537 event.SetCurrentFocus( this );
538 parent->GetEventHandler()->ProcessEvent( event );
461fe6e2 539 }
ee6b1d97
SC
540 }
541 }
542}
543
544// ----------------------------------------------------------------------------
545// wxNotebook base class virtuals
546// ----------------------------------------------------------------------------
547
461fe6e2
SC
548#if wxUSE_CONSTRAINTS
549
ee6b1d97
SC
550// override these 2 functions to do nothing: everything is done in OnSize
551
461fe6e2 552void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse))
ee6b1d97 553{
90c0f5a9 554 // don't set the sizes of the pages - their correct size is not yet known
5a7d70fe 555 wxControl::SetConstraintSizes( false );
ee6b1d97
SC
556}
557
461fe6e2 558bool wxNotebook::DoPhase(int WXUNUSED(nPhase))
ee6b1d97 559{
90c0f5a9 560 return true;
ee6b1d97
SC
561}
562
461fe6e2
SC
563#endif // wxUSE_CONSTRAINTS
564
89954433 565void wxNotebook::Command(wxCommandEvent& WXUNUSED(event))
ee6b1d97 566{
427ff662 567 wxFAIL_MSG(wxT("wxNotebook::Command not implemented"));
ee6b1d97
SC
568}
569
570// ----------------------------------------------------------------------------
571// wxNotebook helper functions
572// ----------------------------------------------------------------------------
573
574// hide the currently active panel and show the new one
575void wxNotebook::ChangePage(int nOldSel, int nSel)
576{
5a7d70fe
DS
577 if (nOldSel == nSel)
578 return;
579
90c0f5a9 580 if ( nOldSel != -1 )
5a7d70fe 581 m_pages[nOldSel]->Show( false );
461fe6e2
SC
582
583 if ( nSel != -1 )
c854c7d9 584 {
90b959ae 585 wxNotebookPage *pPage = m_pages[nSel];
5a7d70fe 586 pPage->Show( true );
c854c7d9 587 pPage->SetFocus();
c854c7d9 588 }
90c0f5a9 589
ee6b1d97 590 m_nSelection = nSel;
5ca0d812 591 m_peer->SetValue( m_nSelection + 1 ) ;
ee6b1d97
SC
592}
593
90c0f5a9 594wxInt32 wxNotebook::MacControlHit(WXEVENTHANDLERREF WXUNUSED(handler) , WXEVENTREF WXUNUSED(event) )
799690a0 595{
4c37f124 596 OSStatus status = eventNotHandledErr ;
90c0f5a9 597
5ca0d812 598 SInt32 newSel = m_peer->GetValue() - 1 ;
4c37f124 599 if ( newSel != m_nSelection )
e40298d5 600 {
5a7d70fe
DS
601 wxNotebookEvent changing(
602 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, m_windowId,
603 newSel , m_nSelection );
604 changing.SetEventObject( this );
605 GetEventHandler()->ProcessEvent( changing );
5aed9d50 606
5a7d70fe 607 if ( changing.IsAllowed() )
e40298d5 608 {
5a7d70fe
DS
609 wxNotebookEvent event(
610 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, m_windowId,
611 newSel, m_nSelection );
612 event.SetEventObject( this );
613 GetEventHandler()->ProcessEvent( event );
4c37f124
SC
614 }
615 else
616 {
5ca0d812 617 m_peer->SetValue( m_nSelection + 1 ) ;
e40298d5 618 }
5a7d70fe 619
4c37f124 620 status = noErr ;
e40298d5 621 }
5a7d70fe
DS
622
623 return (wxInt32)status ;
ee6b1d97
SC
624}
625
179e085f 626#endif