]> git.saurik.com Git - wxWidgets.git/blame - src/mac/notebmac.cpp
added wxDC::DrawPolyPolygon() (patch 882189)
[wxWidgets.git] / src / mac / 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
ee6b1d97
SC
9// Licence: wxWindows licence
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
SC
46 EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange)
47 EVT_MOUSE_EVENTS(wxNotebook::OnMouse)
e40298d5 48
461fe6e2
SC
49 EVT_SIZE(wxNotebook::OnSize)
50 EVT_SET_FOCUS(wxNotebook::OnSetFocus)
51 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey)
ee6b1d97
SC
52END_EVENT_TABLE()
53
54IMPLEMENT_DYNAMIC_CLASS(wxNotebook, wxControl)
55IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxCommandEvent)
ee6b1d97
SC
56
57// ============================================================================
58// implementation
59// ============================================================================
60
5aed9d50
RD
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
5d3a3a5c
SC
65
66// CS : had to switch off tight spacing due to 10.3 problems
67#define wxMAC_EDGE_TO_EDGE 0
ee6b1d97 68
5aed9d50 69static inline int wxMacTabMargin(long nbStyle, long side)
ee6b1d97 70{
5aed9d50
RD
71 static int tabMargin = -1;
72 static int otherMargin = -1;
73
74 if ( tabMargin == -1)
dd47b3d3
SC
75 {
76 if ( UMAHasAquaLayout() )
77 {
5aed9d50
RD
78 tabMargin = 26; // From Appearance Manager docs for small tab control dimensions
79#if wxMAC_EDGE_TO_EDGE
80 otherMargin = 0;
81#else
82 otherMargin = 20;
83#endif
dd47b3d3
SC
84 }
85 else
86 {
5aed9d50
RD
87 tabMargin = 30;
88#if wxMAC_EDGE_TO_EDGE
89 otherMargin = 0;
90#else
91 otherMargin = 16;
92#endif
dd47b3d3 93 }
dd47b3d3 94 }
5aed9d50
RD
95
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)
99 {
feddd867 100 if ( nbStyle != 0 && nbStyle & (wxNB_LEFT|wxNB_RIGHT|wxNB_BOTTOM))
5aed9d50
RD
101 {
102 return otherMargin;
103 }
104 else
105 {
106 return tabMargin;
107 }
108 }
109 else if ( nbStyle & side)
110 return tabMargin;
111 else
112 return otherMargin;
113}
114
115static inline int wxMacTabLeftMargin(long style)
116{
117 return wxMacTabMargin(style, wxNB_LEFT);
118}
119
120static inline int wxMacTabTopMargin(long style)
121{
122 return wxMacTabMargin(style, wxNB_TOP);
123}
124
125static inline int wxMacTabRightMargin(long style)
126{
127 return wxMacTabMargin(style, wxNB_RIGHT);
128}
129
130static inline int wxMacTabBottomMargin(long style)
131{
132 return wxMacTabMargin(style, wxNB_BOTTOM);
133}
134
135// ----------------------------------------------------------------------------
136// wxNotebook construction
137// ----------------------------------------------------------------------------
138
139// common part of all ctors
140void wxNotebook::Init()
141{
dd47b3d3
SC
142 if ( UMAHasAquaLayout() )
143 {
5aed9d50 144 // Should these depend on wxMAC_EDGE_TO_EDGE too?
dd47b3d3
SC
145 m_macHorizontalBorder = 7;
146 m_macVerticalBorder = 8;
147 }
5aed9d50 148
ee6b1d97
SC
149 m_nSelection = -1;
150}
151
152// default for dynamic class
153wxNotebook::wxNotebook()
154{
155 Init();
156}
157
158// the same arguments as for wxControl
159wxNotebook::wxNotebook(wxWindow *parent,
160 wxWindowID id,
161 const wxPoint& pos,
162 const wxSize& size,
163 long style,
164 const wxString& name)
165{
166 Init();
5aed9d50 167
ee6b1d97
SC
168 Create(parent, id, pos, size, style, name);
169}
170
171// Create() function
172bool wxNotebook::Create(wxWindow *parent,
173 wxWindowID id,
174 const wxPoint& pos,
175 const wxSize& size,
176 long style,
177 const wxString& name)
178{
b45ed7a2
VZ
179 if ( !wxNotebookBase::Create(parent, id, pos, size, style, name) )
180 return false;
181
e40298d5
JS
182 Rect bounds ;
183 Str255 title ;
5aed9d50 184
427ff662 185 MacPreControlCreate( parent , id , wxEmptyString , pos , size ,style, wxDefaultValidator , name , &bounds , title ) ;
5aed9d50 186
e40298d5
JS
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 ;
5aed9d50
RD
194
195
196 m_macControl = ::NewControl( MAC_WXHWND(parent->MacGetRootWindow()) , &bounds , title , false , 0 , 0 , 1,
e40298d5 197 tabstyle , (long) this ) ;
5aed9d50 198
e40298d5
JS
199 MacPostControlCreate() ;
200 return TRUE ;
ee6b1d97
SC
201}
202
203// dtor
204wxNotebook::~wxNotebook()
205{
ee6b1d97
SC
206}
207
2ce7af35 208wxSize wxNotebook::CalcSizeFromPage(const wxSize& sizePage) const
60ec3e58
RR
209{
210 wxSize sizeTotal = sizePage;
5aed9d50 211
60ec3e58
RR
212 int major,minor;
213 wxGetOsVersion( &major, &minor );
5aed9d50 214
60ec3e58 215 // Mac has large notebook borders. Aqua even more so.
5aed9d50 216
60ec3e58
RR
217 if ( HasFlag(wxNB_LEFT) || HasFlag(wxNB_RIGHT) )
218 {
219 sizeTotal.x += 90;
5aed9d50 220
60ec3e58
RR
221 if (major >= 10)
222 sizeTotal.y += 28;
223 else
224 sizeTotal.y += 20;
225 }
226 else
227 {
228 if (major >= 10)
229 {
230 sizeTotal.x += 34;
231 sizeTotal.y += 46;
232 }
233 else
234 {
235 sizeTotal.x += 22;
236 sizeTotal.y += 44;
237 }
238 }
5aed9d50 239
60ec3e58
RR
240 return sizeTotal;
241}
242
ee6b1d97
SC
243// ----------------------------------------------------------------------------
244// wxNotebook accessors
245// ----------------------------------------------------------------------------
90b959ae
SC
246
247void wxNotebook::SetPadding(const wxSize& padding)
248{
e40298d5 249 wxFAIL_MSG( wxT("wxNotebook::SetPadding not implemented") );
90b959ae
SC
250}
251
252void wxNotebook::SetTabSize(const wxSize& sz)
ee6b1d97 253{
fc0daf84 254 wxFAIL_MSG( wxT("wxNotebook::SetTabSize not implemented") );
ee6b1d97
SC
255}
256
90b959ae 257void wxNotebook::SetPageSize(const wxSize& size)
ee6b1d97 258{
fc0daf84 259 wxFAIL_MSG( wxT("wxNotebook::SetPageSize not implemented") );
ee6b1d97
SC
260}
261
8f83dfee 262int wxNotebook::SetSelection(size_t nPage)
ee6b1d97 263{
461fe6e2 264 wxCHECK_MSG( IS_VALID_PAGE(nPage), -1, wxT("notebook page out of range") );
5aed9d50 265
461fe6e2
SC
266 if ( int(nPage) != m_nSelection )
267 {
268 wxNotebookEvent event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, m_windowId);
269 event.SetSelection(nPage);
270 event.SetOldSelection(m_nSelection);
271 event.SetEventObject(this);
272 if ( !GetEventHandler()->ProcessEvent(event) || event.IsAllowed() )
273 {
274 // program allows the page change
275 event.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED);
276 (void)GetEventHandler()->ProcessEvent(event);
277
278 ChangePage(m_nSelection, nPage);
279 }
280 }
5aed9d50 281
ee6b1d97
SC
282 return m_nSelection;
283}
284
8f83dfee 285bool wxNotebook::SetPageText(size_t nPage, const wxString& strText)
ee6b1d97
SC
286{
287 wxASSERT( IS_VALID_PAGE(nPage) );
5aed9d50 288
90b959ae 289 wxNotebookPage *page = m_pages[nPage];
c854c7d9
GD
290 page->SetLabel(strText);
291 MacSetupTabs();
5aed9d50 292
c854c7d9 293 return true;
ee6b1d97
SC
294}
295
8f83dfee 296wxString wxNotebook::GetPageText(size_t nPage) const
ee6b1d97
SC
297{
298 wxASSERT( IS_VALID_PAGE(nPage) );
5aed9d50 299
90b959ae 300 wxNotebookPage *page = m_pages[nPage];
c854c7d9 301 return page->GetLabel();
ee6b1d97
SC
302}
303
8f83dfee 304int wxNotebook::GetPageImage(size_t nPage) const
ee6b1d97 305{
fc0daf84 306 wxCHECK_MSG( IS_VALID_PAGE(nPage), -1, _T("invalid notebook page") );
5aed9d50 307
2b5f62a0 308 return m_images[nPage];
ee6b1d97
SC
309}
310
19c43a77 311bool wxNotebook::SetPageImage(size_t nPage, int nImage)
ee6b1d97 312{
fc0daf84 313 wxCHECK_MSG( IS_VALID_PAGE(nPage), FALSE, _T("invalid notebook page") );
5aed9d50 314
fc0daf84 315 wxCHECK_MSG( m_imageList && nImage < m_imageList->GetImageCount(), FALSE,
e40298d5 316 _T("invalid image index in SetPageImage()") );
5aed9d50 317
2b5f62a0
VZ
318 if ( nImage != m_images[nPage] )
319 {
320 // if the item didn't have an icon before or, on the contrary, did have
321 // it but has lost it now, its size will change - but if the icon just
322 // changes, it won't
323 m_images[nPage] = nImage;
5aed9d50 324
e40298d5 325 MacSetupTabs() ;
2b5f62a0 326 }
5aed9d50 327
2b5f62a0 328 return TRUE;
ee6b1d97
SC
329}
330
ee6b1d97
SC
331// ----------------------------------------------------------------------------
332// wxNotebook operations
333// ----------------------------------------------------------------------------
334
90b959ae 335// remove one page from the notebook, without deleting the window
8f83dfee 336wxNotebookPage* wxNotebook::DoRemovePage(size_t nPage)
ee6b1d97 337{
90b959ae
SC
338 wxCHECK( IS_VALID_PAGE(nPage), NULL );
339 wxNotebookPage* page = m_pages[nPage] ;
3ef585df 340 m_pages.RemoveAt(nPage);
5aed9d50 341
c854c7d9 342 MacSetupTabs();
5aed9d50 343
19c43a77 344 if(m_nSelection >= (int)GetPageCount()) {
c854c7d9
GD
345 m_nSelection = GetPageCount() - 1;
346 }
347 if(m_nSelection >= 0) {
90b959ae 348 m_pages[m_nSelection]->Show(true);
c854c7d9 349 }
90b959ae 350 return page;
ee6b1d97
SC
351}
352
353// remove all pages
354bool wxNotebook::DeleteAllPages()
355{
90b959ae 356 WX_CLEAR_ARRAY(m_pages) ;
c854c7d9 357 MacSetupTabs();
061174e3 358 m_nSelection = -1 ;
ee6b1d97
SC
359 return TRUE;
360}
361
ee6b1d97
SC
362
363// same as AddPage() but does it at given position
8f83dfee 364bool wxNotebook::InsertPage(size_t nPage,
ee6b1d97
SC
365 wxNotebookPage *pPage,
366 const wxString& strText,
367 bool bSelect,
368 int imageId)
369{
19c43a77
VZ
370 if ( !wxNotebookBase::InsertPage(nPage, pPage, strText, bSelect, imageId) )
371 return false;
5aed9d50 372
461fe6e2
SC
373 wxASSERT_MSG( pPage->GetParent() == this,
374 _T("notebook pages must have notebook as parent") );
375
376 // don't show pages by default (we'll need to adjust their size first)
377 pPage->Show( false ) ;
378
c854c7d9 379 pPage->SetLabel(strText);
5aed9d50 380
2b5f62a0 381 m_images.Insert(imageId, nPage);
5aed9d50 382
c854c7d9 383 MacSetupTabs();
5aed9d50 384
c854c7d9
GD
385 int h, w;
386 GetSize(&w, &h);
5aed9d50
RD
387 pPage->SetSize(wxMacTabLeftMargin(GetWindowStyle()) + m_macHorizontalBorder,
388 wxMacTabTopMargin(GetWindowStyle()) + m_macVerticalBorder,
389 w - wxMacTabLeftMargin(GetWindowStyle()) - wxMacTabRightMargin(GetWindowStyle()) - 2*m_macHorizontalBorder,
390 h - wxMacTabTopMargin(GetWindowStyle()) - wxMacTabBottomMargin(GetWindowStyle()) - 2*m_macVerticalBorder);
c854c7d9
GD
391 if ( pPage->GetAutoLayout() ) {
392 pPage->Layout();
393 }
5aed9d50 394
461fe6e2
SC
395
396 // now deal with the selection
397 // ---------------------------
398
399 // if the inserted page is before the selected one, we must update the
400 // index of the selected page
401
402 if ( int(nPage) <= m_nSelection )
403 {
404 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 ) ;
407 }
408
409 // some page should be selected: either this one or the first one if there
410 // is still no selection
411 int selNew = -1;
412 if ( bSelect )
413 selNew = nPage;
414 else if ( m_nSelection == -1 )
415 selNew = 0;
416
417 if ( selNew != -1 )
418 SetSelection(selNew);
419
c854c7d9
GD
420 return true;
421}
422
423/* Added by Mark Newsam
e40298d5
JS
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.
427*/
c854c7d9
GD
428void wxNotebook::MacSetupTabs()
429{
467e3168 430 SetControl32BitMaximum( (ControlHandle) m_macControl , GetPageCount() ) ;
5aed9d50 431
c854c7d9
GD
432 wxNotebookPage *page;
433 ControlTabInfoRec info;
5aed9d50 434
19c43a77
VZ
435 const size_t countPages = GetPageCount();
436 for(size_t ii = 0; ii < countPages; ii++)
c854c7d9 437 {
90b959ae 438 page = m_pages[ii];
c854c7d9
GD
439 info.version = 0;
440 info.iconSuiteID = 0;
427ff662
SC
441 wxMacStringToPascal( page->GetLabel() , info.name ) ;
442
76a5e5d2 443 SetControlData( (ControlHandle) m_macControl, ii+1, kControlTabInfoTag,
e40298d5 444 sizeof( ControlTabInfoRec) , (char*) &info ) ;
2b5f62a0 445 SetTabEnabled( (ControlHandle) m_macControl , ii+1 , true ) ;
22026088 446#if TARGET_CARBON
2b5f62a0
VZ
447 if ( GetImageList() && GetPageImage(ii) >= 0 && UMAGetSystemVersion() >= 0x1020 )
448 {
e40298d5
JS
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
5aed9d50 452 // afterwards Unregister it (IconRef is ref counted, so it will stay on the tab even if we
e40298d5 453 // unregister it) in case this will ever lead to having the same icon everywhere add some kind
5aed9d50 454 // of static counter
69efd83d 455 const wxBitmap* bmap = GetImageList()->GetBitmap( GetPageImage(ii ) ) ;
061174e3
SC
456 if ( bmap )
457 {
458 wxBitmap scaledBitmap ;
459 if ( bmap->GetWidth() != 16 || bmap->GetHeight() != 16 )
460 {
461 scaledBitmap = wxBitmap( bmap->ConvertToImage().Scale(16,16) ) ;
462 bmap = &scaledBitmap ;
463 }
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") ) ;
469 IconRef iconRef ;
d5f7923b 470 err = RegisterIconRefFromIconFamily( 'WXNG' , (OSType) 1, iconFamily, &iconRef ) ;
061174e3
SC
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") ) ;
d5f7923b
SC
477 if ( UMAGetSystemVersion() <= 0x1030 )
478 {
479 UnregisterIconRef( 'WXNG' , (OSType) 1 ) ;
480 }
481
061174e3
SC
482 ReleaseIconRef( iconRef ) ;
483 DisposeHandle( (Handle) iconFamily ) ;
484 }
2b5f62a0
VZ
485 }
486#endif
c854c7d9
GD
487 }
488 Rect bounds;
76a5e5d2
SC
489 GetControlBounds((ControlHandle)m_macControl, &bounds);
490 InvalWindowRect((WindowRef)MacGetRootWindow(), &bounds);
ee6b1d97
SC
491}
492
493// ----------------------------------------------------------------------------
494// wxNotebook callbacks
495// ----------------------------------------------------------------------------
496
497// @@@ OnSize() is used for setting the font when it's called for the first
498// time because doing it in ::Create() doesn't work (for unknown reasons)
499void wxNotebook::OnSize(wxSizeEvent& event)
500{
ee6b1d97
SC
501 // emulate page change (it's esp. important to do it first time because
502 // otherwise our page would stay invisible)
461fe6e2 503 /*
ee6b1d97
SC
504 int nSel = m_nSelection;
505 m_nSelection = -1;
506 SetSelection(nSel);
461fe6e2 507 */
5aed9d50 508
ee6b1d97
SC
509 // fit the notebook page to the tab control's display area
510 int w, h;
511 GetSize(&w, &h);
5aed9d50 512
90b959ae 513 unsigned int nCount = m_pages.Count();
ee6b1d97 514 for ( unsigned int nPage = 0; nPage < nCount; nPage++ ) {
90b959ae 515 wxNotebookPage *pPage = m_pages[nPage];
5aed9d50
RD
516 pPage->SetSize(wxMacTabLeftMargin(GetWindowStyle()) + m_macHorizontalBorder,
517 wxMacTabTopMargin(GetWindowStyle()) + m_macVerticalBorder,
518 w - wxMacTabLeftMargin(GetWindowStyle()) - wxMacTabRightMargin(GetWindowStyle()) - 2*m_macHorizontalBorder,
519 h - wxMacTabTopMargin(GetWindowStyle()) - wxMacTabBottomMargin(GetWindowStyle()) - 2*m_macVerticalBorder);
c854c7d9 520 if ( pPage->GetAutoLayout() ) {
ee6b1d97 521 pPage->Layout();
c854c7d9 522 }
ee6b1d97 523 }
5aed9d50 524
ee6b1d97
SC
525 // Processing continues to next OnSize
526 event.Skip();
527}
528
529void wxNotebook::OnSelChange(wxNotebookEvent& event)
530{
531 // is it our tab control?
532 if ( event.GetEventObject() == this )
533 ChangePage(event.GetOldSelection(), event.GetSelection());
5aed9d50 534
ee6b1d97
SC
535 // we want to give others a chance to process this message as well
536 event.Skip();
537}
538
539void wxNotebook::OnSetFocus(wxFocusEvent& event)
540{
541 // set focus to the currently selected page if any
542 if ( m_nSelection != -1 )
90b959ae 543 m_pages[m_nSelection]->SetFocus();
5aed9d50 544
ee6b1d97
SC
545 event.Skip();
546}
547
548void wxNotebook::OnNavigationKey(wxNavigationKeyEvent& event)
549{
550 if ( event.IsWindowChange() ) {
551 // change pages
552 AdvanceSelection(event.GetDirection());
553 }
554 else {
461fe6e2
SC
555 // we get this event in 2 cases
556 //
557 // a) one of our pages might have generated it because the user TABbed
558 // out from it in which case we should propagate the event upwards and
559 // our parent will take care of setting the focus to prev/next sibling
560 //
561 // or
562 //
563 // b) the parent panel wants to give the focus to us so that we
564 // forward it to our selected page. We can't deal with this in
565 // OnSetFocus() because we don't know which direction the focus came
566 // from in this case and so can't choose between setting the focus to
567 // first or last panel child
568 wxWindow *parent = GetParent();
569 // the cast is here to fic a GCC ICE
570 if ( ((wxWindow*)event.GetEventObject()) == parent )
571 {
572 // no, it doesn't come from child, case (b): forward to a page
573 if ( m_nSelection != -1 )
574 {
575 // so that the page knows that the event comes from it's parent
576 // and is being propagated downwards
577 event.SetEventObject(this);
578
579 wxWindow *page = m_pages[m_nSelection];
580 if ( !page->GetEventHandler()->ProcessEvent(event) )
581 {
582 page->SetFocus();
583 }
584 //else: page manages focus inside it itself
585 }
586 else
587 {
588 // we have no pages - still have to give focus to _something_
589 SetFocus();
590 }
591 }
592 else
593 {
594 // it comes from our child, case (a), pass to the parent
595 if ( parent ) {
596 event.SetCurrentFocus(this);
597 parent->GetEventHandler()->ProcessEvent(event);
598 }
ee6b1d97
SC
599 }
600 }
601}
602
603// ----------------------------------------------------------------------------
604// wxNotebook base class virtuals
605// ----------------------------------------------------------------------------
606
461fe6e2
SC
607#if wxUSE_CONSTRAINTS
608
ee6b1d97
SC
609// override these 2 functions to do nothing: everything is done in OnSize
610
461fe6e2 611void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse))
ee6b1d97 612{
461fe6e2
SC
613 // don't set the sizes of the pages - their correct size is not yet known
614 wxControl::SetConstraintSizes(FALSE);
ee6b1d97
SC
615}
616
461fe6e2 617bool wxNotebook::DoPhase(int WXUNUSED(nPhase))
ee6b1d97 618{
461fe6e2 619 return TRUE;
ee6b1d97
SC
620}
621
461fe6e2
SC
622#endif // wxUSE_CONSTRAINTS
623
ee6b1d97
SC
624void wxNotebook::Command(wxCommandEvent& event)
625{
427ff662 626 wxFAIL_MSG(wxT("wxNotebook::Command not implemented"));
ee6b1d97
SC
627}
628
629// ----------------------------------------------------------------------------
630// wxNotebook helper functions
631// ----------------------------------------------------------------------------
632
633// hide the currently active panel and show the new one
634void wxNotebook::ChangePage(int nOldSel, int nSel)
635{
461fe6e2
SC
636 if ( nOldSel != -1 )
637 {
638 m_pages[nOldSel]->Show(FALSE);
639 }
640
641 if ( nSel != -1 )
c854c7d9 642 {
90b959ae 643 wxNotebookPage *pPage = m_pages[nSel];
c854c7d9
GD
644 pPage->Show(TRUE);
645 pPage->SetFocus();
c854c7d9 646 }
461fe6e2 647
ee6b1d97 648 m_nSelection = nSel;
461fe6e2 649 SetControl32BitValue( (ControlHandle) m_macControl , m_nSelection + 1 ) ;
ee6b1d97
SC
650}
651
799690a0
SC
652
653void wxNotebook::OnMouse( wxMouseEvent &event )
654{
e40298d5
JS
655 if ( (ControlHandle) m_macControl == NULL )
656 {
657 event.Skip() ;
658 return ;
659 }
5aed9d50 660
e40298d5
JS
661 if (event.GetEventType() == wxEVT_LEFT_DOWN || event.GetEventType() == wxEVT_LEFT_DCLICK )
662 {
663 int x = event.m_x ;
664 int y = event.m_y ;
5aed9d50 665
e40298d5 666 MacClientToRootWindow( &x , &y ) ;
5aed9d50 667
e40298d5
JS
668 ControlHandle control ;
669 Point localwhere ;
670 SInt16 controlpart ;
5aed9d50 671
e40298d5
JS
672 localwhere.h = x ;
673 localwhere.v = y ;
5aed9d50 674
e40298d5 675 short modifiers = 0;
5aed9d50 676
e40298d5
JS
677 if ( !event.m_leftDown && !event.m_rightDown )
678 modifiers |= btnState ;
5aed9d50 679
e40298d5
JS
680 if ( event.m_shiftDown )
681 modifiers |= shiftKey ;
5aed9d50 682
e40298d5
JS
683 if ( event.m_controlDown )
684 modifiers |= controlKey ;
5aed9d50 685
e40298d5
JS
686 if ( event.m_altDown )
687 modifiers |= optionKey ;
5aed9d50 688
e40298d5
JS
689 if ( event.m_metaDown )
690 modifiers |= cmdKey ;
5aed9d50 691
e40298d5
JS
692 control = (ControlHandle) m_macControl ;
693 if ( control && ::IsControlActive( control ) )
694 {
695 {
696 wxNotebookEvent changing(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, m_windowId,
697 ::GetControl32BitValue(control) - 1, m_nSelection);
698 changing.SetEventObject(this);
55da8bd1 699 GetEventHandler()->ProcessEvent(changing);
5aed9d50 700
e40298d5
JS
701 if(changing.IsAllowed())
702 {
703 controlpart = ::HandleControlClick(control, localwhere, modifiers,
704 (ControlActionUPP) -1);
705 wxTheApp->s_lastMouseDown = 0 ;
5aed9d50 706
e40298d5
JS
707 wxNotebookEvent event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, m_windowId,
708 ::GetControl32BitValue(control) - 1, m_nSelection);
709 event.SetEventObject(this);
5aed9d50 710
55da8bd1 711 GetEventHandler()->ProcessEvent(event);
e40298d5
JS
712 }
713 }
714 }
715 }
799690a0 716}
e40298d5 717
799690a0 718
4b26b60f 719void wxNotebook::MacHandleControlClick( WXWidget control , wxInt16 controlpart , bool WXUNUSED( mouseStillDown ) )
ee6b1d97 720{
799690a0 721#if 0
e40298d5
JS
722 wxNotebookEvent event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, m_windowId , ::GetControl32BitValue((ControlHandle)m_macControl) - 1, m_nSelection);
723 event.SetEventObject(this);
5aed9d50 724
e40298d5 725 ProcessEvent(event);
799690a0 726#endif
ee6b1d97
SC
727}
728