]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/notebmac.cpp
warnin - move pict to where it belongs :)
[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
3d1a4878 12#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
e40298d5 13#pragma implementation "notebook.h"
eb22f2a6
GD
14#endif
15
ee6b1d97
SC
16// ============================================================================
17// declarations
18// ============================================================================
19
20// ----------------------------------------------------------------------------
21// headers
22// ----------------------------------------------------------------------------
3d1a4878
SC
23#include "wx/wxprec.h"
24
799690a0 25#include "wx/app.h"
d497dca4
GD
26#include "wx/string.h"
27#include "wx/log.h"
28#include "wx/imaglist.h"
061174e3 29#include "wx/image.h"
d497dca4
GD
30#include "wx/notebook.h"
31#include "wx/mac/uma.h"
ee6b1d97
SC
32// ----------------------------------------------------------------------------
33// macros
34// ----------------------------------------------------------------------------
35
36// check that the page index is valid
19c43a77 37#define IS_VALID_PAGE(nPage) ((nPage) < GetPageCount())
ee6b1d97 38
ee6b1d97
SC
39
40// ----------------------------------------------------------------------------
41// event table
42// ----------------------------------------------------------------------------
43
5b781a67
SC
44DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED)
45DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING)
46
ee6b1d97 47BEGIN_EVENT_TABLE(wxNotebook, wxControl)
461fe6e2 48 EVT_NOTEBOOK_PAGE_CHANGED(-1, wxNotebook::OnSelChange)
e40298d5 49
461fe6e2
SC
50 EVT_SIZE(wxNotebook::OnSize)
51 EVT_SET_FOCUS(wxNotebook::OnSetFocus)
52 EVT_NAVIGATION_KEY(wxNotebook::OnNavigationKey)
ee6b1d97
SC
53END_EVENT_TABLE()
54
55IMPLEMENT_DYNAMIC_CLASS(wxNotebook, wxControl)
56IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent, wxCommandEvent)
ee6b1d97
SC
57
58// ============================================================================
59// implementation
60// ============================================================================
61
5aed9d50
RD
62// ----------------------------------------------------------------------------
63// wxNotebook construction
64// ----------------------------------------------------------------------------
65
66// common part of all ctors
67void wxNotebook::Init()
68{
ee6b1d97
SC
69 m_nSelection = -1;
70}
71
72// default for dynamic class
73wxNotebook::wxNotebook()
74{
75 Init();
76}
77
78// the same arguments as for wxControl
79wxNotebook::wxNotebook(wxWindow *parent,
80 wxWindowID id,
81 const wxPoint& pos,
82 const wxSize& size,
83 long style,
84 const wxString& name)
85{
86 Init();
5aed9d50 87
ee6b1d97
SC
88 Create(parent, id, pos, size, style, name);
89}
90
91// Create() function
92bool wxNotebook::Create(wxWindow *parent,
93 wxWindowID id,
94 const wxPoint& pos,
95 const wxSize& size,
96 long style,
97 const wxString& name)
98{
facd6764
SC
99 m_macIsUserPane = FALSE ;
100
b45ed7a2
VZ
101 if ( !wxNotebookBase::Create(parent, id, pos, size, style, name) )
102 return false;
103
facd6764 104 Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
5aed9d50 105
facd6764
SC
106 if( bounds.right <= bounds.left )
107 bounds.right = bounds.left + 100 ;
108 if ( bounds.bottom <= bounds.top )
109 bounds.bottom = bounds.top + 100 ;
5aed9d50 110
facd6764 111 UInt16 tabstyle = kControlTabDirectionNorth ;
e40298d5 112 if ( HasFlag(wxNB_LEFT) )
facd6764 113 tabstyle = kControlTabDirectionWest ;
e40298d5 114 else if ( HasFlag( wxNB_RIGHT ) )
facd6764 115 tabstyle = kControlTabDirectionEast ;
e40298d5 116 else if ( HasFlag( wxNB_BOTTOM ) )
facd6764
SC
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 }
5aed9d50 129
21fd5529 130 m_peer = new wxMacControl() ;
4c37f124 131 verify_noerr ( CreateTabsControl( MAC_WXHWND(parent->MacGetTopLevelWindowRef()) , &bounds ,
5ca0d812 132 tabsize , tabstyle, 0, NULL, m_peer->GetControlRefAddr() ) );
21fd5529 133
facd6764
SC
134
135 MacPostControlCreate(pos,size) ;
e40298d5 136 return TRUE ;
ee6b1d97
SC
137}
138
139// dtor
140wxNotebook::~wxNotebook()
141{
ee6b1d97
SC
142}
143
144// ----------------------------------------------------------------------------
145// wxNotebook accessors
146// ----------------------------------------------------------------------------
90b959ae
SC
147
148void wxNotebook::SetPadding(const wxSize& padding)
149{
63ff6f53 150 // unsupported by OS
90b959ae
SC
151}
152
153void wxNotebook::SetTabSize(const wxSize& sz)
ee6b1d97 154{
63ff6f53 155 // unsupported by OS
ee6b1d97
SC
156}
157
90b959ae 158void wxNotebook::SetPageSize(const wxSize& size)
ee6b1d97 159{
63ff6f53
SC
160 SetSize( CalcSizeFromPage( size ) );
161}
162
163wxSize wxNotebook::CalcSizeFromPage(const wxSize& sizePage) const
164{
facd6764 165 return DoGetSizeFromClientSize( sizePage ) ;
63ff6f53
SC
166}
167
8f83dfee 168int wxNotebook::SetSelection(size_t nPage)
ee6b1d97 169{
461fe6e2 170 wxCHECK_MSG( IS_VALID_PAGE(nPage), -1, wxT("notebook page out of range") );
5aed9d50 171
461fe6e2
SC
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 }
5aed9d50 187
ee6b1d97
SC
188 return m_nSelection;
189}
190
8f83dfee 191bool wxNotebook::SetPageText(size_t nPage, const wxString& strText)
ee6b1d97
SC
192{
193 wxASSERT( IS_VALID_PAGE(nPage) );
5aed9d50 194
90b959ae 195 wxNotebookPage *page = m_pages[nPage];
c854c7d9
GD
196 page->SetLabel(strText);
197 MacSetupTabs();
5aed9d50 198
c854c7d9 199 return true;
ee6b1d97
SC
200}
201
8f83dfee 202wxString wxNotebook::GetPageText(size_t nPage) const
ee6b1d97
SC
203{
204 wxASSERT( IS_VALID_PAGE(nPage) );
5aed9d50 205
90b959ae 206 wxNotebookPage *page = m_pages[nPage];
c854c7d9 207 return page->GetLabel();
ee6b1d97
SC
208}
209
8f83dfee 210int wxNotebook::GetPageImage(size_t nPage) const
ee6b1d97 211{
fc0daf84 212 wxCHECK_MSG( IS_VALID_PAGE(nPage), -1, _T("invalid notebook page") );
5aed9d50 213
2b5f62a0 214 return m_images[nPage];
ee6b1d97
SC
215}
216
19c43a77 217bool wxNotebook::SetPageImage(size_t nPage, int nImage)
ee6b1d97 218{
fc0daf84 219 wxCHECK_MSG( IS_VALID_PAGE(nPage), FALSE, _T("invalid notebook page") );
5aed9d50 220
fc0daf84 221 wxCHECK_MSG( m_imageList && nImage < m_imageList->GetImageCount(), FALSE,
e40298d5 222 _T("invalid image index in SetPageImage()") );
5aed9d50 223
2b5f62a0
VZ
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;
5aed9d50 230
e40298d5 231 MacSetupTabs() ;
2b5f62a0 232 }
5aed9d50 233
2b5f62a0 234 return TRUE;
ee6b1d97
SC
235}
236
ee6b1d97
SC
237// ----------------------------------------------------------------------------
238// wxNotebook operations
239// ----------------------------------------------------------------------------
240
90b959ae 241// remove one page from the notebook, without deleting the window
8f83dfee 242wxNotebookPage* wxNotebook::DoRemovePage(size_t nPage)
ee6b1d97 243{
90b959ae
SC
244 wxCHECK( IS_VALID_PAGE(nPage), NULL );
245 wxNotebookPage* page = m_pages[nPage] ;
3ef585df 246 m_pages.RemoveAt(nPage);
5aed9d50 247
c854c7d9 248 MacSetupTabs();
5aed9d50 249
19c43a77 250 if(m_nSelection >= (int)GetPageCount()) {
c854c7d9
GD
251 m_nSelection = GetPageCount() - 1;
252 }
253 if(m_nSelection >= 0) {
90b959ae 254 m_pages[m_nSelection]->Show(true);
c854c7d9 255 }
37144cf0 256 InvalidateBestSize();
90b959ae 257 return page;
ee6b1d97
SC
258}
259
260// remove all pages
261bool wxNotebook::DeleteAllPages()
262{
90b959ae 263 WX_CLEAR_ARRAY(m_pages) ;
c854c7d9 264 MacSetupTabs();
061174e3 265 m_nSelection = -1 ;
37144cf0 266 InvalidateBestSize();
ee6b1d97
SC
267 return TRUE;
268}
269
ee6b1d97
SC
270
271// same as AddPage() but does it at given position
8f83dfee 272bool wxNotebook::InsertPage(size_t nPage,
ee6b1d97
SC
273 wxNotebookPage *pPage,
274 const wxString& strText,
275 bool bSelect,
276 int imageId)
277{
19c43a77
VZ
278 if ( !wxNotebookBase::InsertPage(nPage, pPage, strText, bSelect, imageId) )
279 return false;
5aed9d50 280
461fe6e2
SC
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
c854c7d9 287 pPage->SetLabel(strText);
5aed9d50 288
2b5f62a0 289 m_images.Insert(imageId, nPage);
5aed9d50 290
c854c7d9 291 MacSetupTabs();
5aed9d50 292
63ff6f53
SC
293 wxRect rect = GetPageRect() ;
294 pPage->SetSize(rect);
c854c7d9
GD
295 if ( pPage->GetAutoLayout() ) {
296 pPage->Layout();
297 }
5aed9d50 298
461fe6e2
SC
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
5ca0d812 310 m_peer->SetValue( m_nSelection + 1 ) ;
461fe6e2
SC
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
37144cf0 324 InvalidateBestSize();
c854c7d9
GD
325 return true;
326}
327
328/* Added by Mark Newsam
e40298d5 329* When a page is added or deleted to the notebook this function updates
21fd5529 330* information held in the control so that it matches the order
e40298d5
JS
331* the user would expect.
332*/
c854c7d9
GD
333void wxNotebook::MacSetupTabs()
334{
5ca0d812 335 m_peer->SetMaximum( GetPageCount() ) ;
5aed9d50 336
c854c7d9
GD
337 wxNotebookPage *page;
338 ControlTabInfoRec info;
5aed9d50 339
19c43a77
VZ
340 const size_t countPages = GetPageCount();
341 for(size_t ii = 0; ii < countPages; ii++)
c854c7d9 342 {
90b959ae 343 page = m_pages[ii];
c854c7d9
GD
344 info.version = 0;
345 info.iconSuiteID = 0;
427ff662 346 wxMacStringToPascal( page->GetLabel() , info.name ) ;
5ca0d812
SC
347 m_peer->SetData<ControlTabInfoRec>( ii+1, kControlTabInfoTag, &info ) ;
348 m_peer->SetTabEnabled( ii + 1 , true ) ;
20b69855 349
2b5f62a0
VZ
350 if ( GetImageList() && GetPageImage(ii) >= 0 && UMAGetSystemVersion() >= 0x1020 )
351 {
69efd83d 352 const wxBitmap* bmap = GetImageList()->GetBitmap( GetPageImage(ii ) ) ;
061174e3
SC
353 if ( bmap )
354 {
061174e3 355 ControlButtonContentInfo info ;
20b69855
SC
356
357 wxMacCreateBitmapButton( &info , *bmap ) ;
358 OSStatus err = m_peer->SetData<ControlButtonContentInfo>( ii+1,kControlTabImageContentTag, &info );
061174e3 359 wxASSERT_MSG( err == noErr , wxT("Error when setting icon on tab") ) ;
20b69855 360 wxMacReleaseBitmapButton( &info ) ;
061174e3 361 }
2b5f62a0 362 }
20b69855 363
c854c7d9
GD
364 }
365 Rect bounds;
5ca0d812 366 m_peer->GetRectInWindowCoords( &bounds ) ;
facd6764 367 InvalWindowRect((WindowRef)MacGetTopLevelWindowRef(), &bounds);
ee6b1d97
SC
368}
369
63ff6f53
SC
370wxRect wxNotebook::GetPageRect() const
371{
facd6764
SC
372 wxSize size = GetClientSize() ;
373 return wxRect( 0 , 0 , size.x , size.y ) ;
63ff6f53 374}
ee6b1d97
SC
375// ----------------------------------------------------------------------------
376// wxNotebook callbacks
377// ----------------------------------------------------------------------------
378
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)
381void wxNotebook::OnSize(wxSizeEvent& event)
382{
5aed9d50 383
90b959ae 384 unsigned int nCount = m_pages.Count();
63ff6f53 385 wxRect rect = GetPageRect() ;
ee6b1d97 386 for ( unsigned int nPage = 0; nPage < nCount; nPage++ ) {
90b959ae 387 wxNotebookPage *pPage = m_pages[nPage];
63ff6f53 388 pPage->SetSize(rect);
c854c7d9 389 if ( pPage->GetAutoLayout() ) {
ee6b1d97 390 pPage->Layout();
c854c7d9 391 }
ee6b1d97 392 }
5aed9d50 393
ee6b1d97
SC
394 // Processing continues to next OnSize
395 event.Skip();
396}
397
398void wxNotebook::OnSelChange(wxNotebookEvent& event)
399{
400 // is it our tab control?
401 if ( event.GetEventObject() == this )
402 ChangePage(event.GetOldSelection(), event.GetSelection());
5aed9d50 403
ee6b1d97
SC
404 // we want to give others a chance to process this message as well
405 event.Skip();
406}
407
408void wxNotebook::OnSetFocus(wxFocusEvent& event)
409{
410 // set focus to the currently selected page if any
411 if ( m_nSelection != -1 )
90b959ae 412 m_pages[m_nSelection]->SetFocus();
5aed9d50 413
ee6b1d97
SC
414 event.Skip();
415}
416
417void wxNotebook::OnNavigationKey(wxNavigationKeyEvent& event)
418{
419 if ( event.IsWindowChange() ) {
420 // change pages
421 AdvanceSelection(event.GetDirection());
422 }
423 else {
461fe6e2
SC
424 // we get this event in 2 cases
425 //
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
429 //
430 // or
431 //
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 )
440 {
441 // no, it doesn't come from child, case (b): forward to a page
442 if ( m_nSelection != -1 )
443 {
444 // so that the page knows that the event comes from it's parent
445 // and is being propagated downwards
446 event.SetEventObject(this);
447
448 wxWindow *page = m_pages[m_nSelection];
449 if ( !page->GetEventHandler()->ProcessEvent(event) )
450 {
451 page->SetFocus();
452 }
453 //else: page manages focus inside it itself
454 }
455 else
456 {
457 // we have no pages - still have to give focus to _something_
458 SetFocus();
459 }
460 }
461 else
462 {
463 // it comes from our child, case (a), pass to the parent
464 if ( parent ) {
465 event.SetCurrentFocus(this);
466 parent->GetEventHandler()->ProcessEvent(event);
467 }
ee6b1d97
SC
468 }
469 }
470}
471
472// ----------------------------------------------------------------------------
473// wxNotebook base class virtuals
474// ----------------------------------------------------------------------------
475
461fe6e2
SC
476#if wxUSE_CONSTRAINTS
477
ee6b1d97
SC
478// override these 2 functions to do nothing: everything is done in OnSize
479
461fe6e2 480void wxNotebook::SetConstraintSizes(bool WXUNUSED(recurse))
ee6b1d97 481{
461fe6e2
SC
482 // don't set the sizes of the pages - their correct size is not yet known
483 wxControl::SetConstraintSizes(FALSE);
ee6b1d97
SC
484}
485
461fe6e2 486bool wxNotebook::DoPhase(int WXUNUSED(nPhase))
ee6b1d97 487{
461fe6e2 488 return TRUE;
ee6b1d97
SC
489}
490
461fe6e2
SC
491#endif // wxUSE_CONSTRAINTS
492
ee6b1d97
SC
493void wxNotebook::Command(wxCommandEvent& event)
494{
427ff662 495 wxFAIL_MSG(wxT("wxNotebook::Command not implemented"));
ee6b1d97
SC
496}
497
498// ----------------------------------------------------------------------------
499// wxNotebook helper functions
500// ----------------------------------------------------------------------------
501
502// hide the currently active panel and show the new one
503void wxNotebook::ChangePage(int nOldSel, int nSel)
504{
461fe6e2
SC
505 if ( nOldSel != -1 )
506 {
507 m_pages[nOldSel]->Show(FALSE);
508 }
509
510 if ( nSel != -1 )
c854c7d9 511 {
90b959ae 512 wxNotebookPage *pPage = m_pages[nSel];
c854c7d9
GD
513 pPage->Show(TRUE);
514 pPage->SetFocus();
c854c7d9 515 }
461fe6e2 516
ee6b1d97 517 m_nSelection = nSel;
5ca0d812 518 m_peer->SetValue( m_nSelection + 1 ) ;
ee6b1d97
SC
519}
520
4c37f124 521wxInt32 wxNotebook::MacControlHit(WXEVENTHANDLERREF WXUNUSED(handler) , WXEVENTREF WXUNUSED(event) )
799690a0 522{
4c37f124
SC
523 OSStatus status = eventNotHandledErr ;
524
5ca0d812 525 SInt32 newSel = m_peer->GetValue() - 1 ;
4c37f124 526 if ( newSel != m_nSelection )
e40298d5 527 {
4c37f124
SC
528 wxNotebookEvent changing(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, m_windowId,
529 newSel , m_nSelection);
530 changing.SetEventObject(this);
531 GetEventHandler()->ProcessEvent(changing);
5aed9d50 532
4c37f124 533 if(changing.IsAllowed())
e40298d5 534 {
4c37f124
SC
535 wxNotebookEvent event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, m_windowId,
536 newSel, m_nSelection);
537 event.SetEventObject(this);
5aed9d50 538
4c37f124
SC
539 GetEventHandler()->ProcessEvent(event);
540 }
541 else
542 {
5ca0d812 543 m_peer->SetValue( m_nSelection + 1 ) ;
e40298d5 544 }
4c37f124 545 status = noErr ;
e40298d5 546 }
4c37f124 547 return status ;
ee6b1d97
SC
548}
549