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