]>
git.saurik.com Git - wxWidgets.git/blob - src/common/bookctrl.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/bookctrl.cpp
3 // Purpose: wxBookCtrlBase implementation
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/imaglist.h"
31 #include "wx/bookctrl.h"
33 // ============================================================================
35 // ============================================================================
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
41 IMPLEMENT_ABSTRACT_CLASS(wxBookCtrlBase
, wxControl
)
43 BEGIN_EVENT_TABLE(wxBookCtrlBase
, wxControl
)
44 EVT_SIZE(wxBookCtrlBase::OnSize
)
46 EVT_HELP(wxID_ANY
, wxBookCtrlBase::OnHelp
)
50 // ----------------------------------------------------------------------------
51 // constructors and destructors
52 // ----------------------------------------------------------------------------
54 void wxBookCtrlBase::Init()
56 m_selection
= wxNOT_FOUND
;
58 m_fitToCurrentPage
= false;
60 #if defined(__WXWINCE__)
67 m_controlSizer
= NULL
;
71 wxBookCtrlBase::Create(wxWindow
*parent
,
78 return wxControl::Create
90 // ----------------------------------------------------------------------------
92 // ----------------------------------------------------------------------------
94 void wxBookCtrlBase::DoInvalidateBestSize()
96 // notice that it is not necessary to invalidate our own best size
97 // explicitly if we have m_bookctrl as it will already invalidate the best
98 // size of its parent when its own size is invalidated and its parent is
101 m_bookctrl
->InvalidateBestSize();
103 wxControl::InvalidateBestSize();
106 wxSize
wxBookCtrlBase::CalcSizeFromPage(const wxSize
& sizePage
) const
108 // Add the size of the controller and the border between if it's shown.
109 if ( !m_bookctrl
|| !m_bookctrl
->IsShown() )
112 const wxSize sizeController
= GetControllerSize();
114 wxSize size
= sizePage
;
117 if ( sizeController
.x
> sizePage
.x
)
118 size
.x
= sizeController
.x
;
119 size
.y
+= sizeController
.y
+ GetInternalBorder();
121 else // left/right aligned
123 size
.x
+= sizeController
.x
+ GetInternalBorder();
124 if ( sizeController
.y
> sizePage
.y
)
125 size
.y
= sizeController
.y
;
131 void wxBookCtrlBase::SetPageSize(const wxSize
& size
)
133 SetClientSize(CalcSizeFromPage(size
));
136 wxSize
wxBookCtrlBase::DoGetBestSize() const
140 // iterate over all pages, get the largest width and height
141 const size_t nCount
= m_pages
.size();
142 for ( size_t nPage
= 0; nPage
< nCount
; nPage
++ )
144 const wxWindow
* const pPage
= m_pages
[nPage
];
147 wxSize
childBestSize(pPage
->GetBestSize());
149 if ( childBestSize
.x
> bestSize
.x
)
150 bestSize
.x
= childBestSize
.x
;
152 if ( childBestSize
.y
> bestSize
.y
)
153 bestSize
.y
= childBestSize
.y
;
157 if (m_fitToCurrentPage
&& GetCurrentPage())
158 bestSize
= GetCurrentPage()->GetBestSize();
160 // convert display area to window area, adding the size necessary for the
162 wxSize best
= CalcSizeFromPage(bestSize
);
167 wxRect
wxBookCtrlBase::GetPageRect() const
169 const wxSize size
= GetControllerSize();
172 wxRect
rectPage(pt
, GetClientSize());
174 switch ( GetWindowStyle() & wxBK_ALIGN_MASK
)
177 wxFAIL_MSG( wxT("unexpected alignment") );
181 rectPage
.y
= size
.y
+ GetInternalBorder();
185 rectPage
.height
-= size
.y
+ GetInternalBorder();
186 if (rectPage
.height
< 0)
191 rectPage
.x
= size
.x
+ GetInternalBorder();
195 rectPage
.width
-= size
.x
+ GetInternalBorder();
196 if (rectPage
.width
< 0)
205 void wxBookCtrlBase::DoSize()
209 // we're not fully created yet or OnSize() should be hidden by derived class
217 // resize controller and the page area to fit inside our new size
218 const wxSize
sizeClient( GetClientSize() ),
219 sizeBorder( m_bookctrl
->GetSize() - m_bookctrl
->GetClientSize() ),
220 sizeCtrl( GetControllerSize() );
222 m_bookctrl
->SetClientSize( sizeCtrl
.x
- sizeBorder
.x
, sizeCtrl
.y
- sizeBorder
.y
);
223 // if this changes the visibility of the scrollbars the best size changes, relayout in this case
224 wxSize sizeCtrl2
= GetControllerSize();
225 if ( sizeCtrl
!= sizeCtrl2
)
227 wxSize sizeBorder2
= m_bookctrl
->GetSize() - m_bookctrl
->GetClientSize();
228 m_bookctrl
->SetClientSize( sizeCtrl2
.x
- sizeBorder2
.x
, sizeCtrl2
.y
- sizeBorder2
.y
);
231 const wxSize sizeNew
= m_bookctrl
->GetSize();
233 switch ( GetWindowStyle() & wxBK_ALIGN_MASK
)
236 wxFAIL_MSG( wxT("unexpected alignment") );
241 // posCtrl is already ok
245 posCtrl
.y
= sizeClient
.y
- sizeNew
.y
;
249 posCtrl
.x
= sizeClient
.x
- sizeNew
.x
;
253 if ( m_bookctrl
->GetPosition() != posCtrl
)
254 m_bookctrl
->Move(posCtrl
);
257 // resize all pages to fit the new control size
258 const wxRect pageRect
= GetPageRect();
259 const unsigned pagesCount
= m_pages
.GetCount();
260 for ( unsigned int i
= 0; i
< pagesCount
; ++i
)
262 wxWindow
* const page
= m_pages
[i
];
265 wxASSERT_MSG( AllowNullPage(),
266 wxT("Null page in a control that does not allow null pages?") );
270 page
->SetSize(pageRect
);
274 void wxBookCtrlBase::OnSize(wxSizeEvent
& event
)
281 wxSize
wxBookCtrlBase::GetControllerSize() const
283 // For at least some book controls (e.g. wxChoicebook) it may make sense to
284 // (temporarily?) hide the controller and we shouldn't leave extra space
285 // for the hidden control in this case.
286 if ( !m_bookctrl
|| !m_bookctrl
->IsShown() )
289 const wxSize sizeClient
= GetClientSize();
293 // Ask for the best width/height considering the other direction.
296 size
.x
= sizeClient
.x
;
297 size
.y
= m_bookctrl
->GetBestHeight(sizeClient
.x
);
299 else // left/right aligned
301 size
.x
= m_bookctrl
->GetBestWidth(sizeClient
.y
);
302 size
.y
= sizeClient
.y
;
308 // ----------------------------------------------------------------------------
309 // miscellaneous stuff
310 // ----------------------------------------------------------------------------
314 void wxBookCtrlBase::OnHelp(wxHelpEvent
& event
)
316 // determine where does this even originate from to avoid redirecting it
317 // back to the page which generated it (resulting in an infinite loop)
319 // notice that we have to check in the hard(er) way instead of just testing
320 // if the event object == this because the book control can have other
321 // subcontrols inside it (e.g. wxSpinButton in case of a notebook in wxUniv)
322 wxWindow
*source
= wxStaticCast(event
.GetEventObject(), wxWindow
);
323 while ( source
&& source
!= this && source
->GetParent() != this )
325 source
= source
->GetParent();
328 if ( source
&& m_pages
.Index(source
) == wxNOT_FOUND
)
330 // this event is for the book control itself, redirect it to the
331 // corresponding page
332 wxWindow
*page
= NULL
;
334 if ( event
.GetOrigin() == wxHelpEvent::Origin_HelpButton
)
336 // show help for the page under the mouse
337 const int pagePos
= HitTest(ScreenToClient(event
.GetPosition()));
339 if ( pagePos
!= wxNOT_FOUND
)
341 page
= GetPage((size_t)pagePos
);
344 else // event from keyboard or unknown source
346 // otherwise show the current page help
347 page
= GetCurrentPage();
352 // change event object to the page to avoid infinite recursion if
353 // we get this event ourselves if the page doesn't handle it
354 event
.SetEventObject(page
);
356 if ( page
->GetEventHandler()->ProcessEvent(event
) )
358 // don't call event.Skip()
363 //else: event coming from one of our pages already
370 // ----------------------------------------------------------------------------
372 // ----------------------------------------------------------------------------
375 wxBookCtrlBase::InsertPage(size_t nPage
,
377 const wxString
& WXUNUSED(text
),
378 bool WXUNUSED(bSelect
),
379 int WXUNUSED(imageId
))
381 wxCHECK_MSG( page
|| AllowNullPage(), false,
382 wxT("NULL page in wxBookCtrlBase::InsertPage()") );
383 wxCHECK_MSG( nPage
<= m_pages
.size(), false,
384 wxT("invalid page index in wxBookCtrlBase::InsertPage()") );
386 m_pages
.Insert(page
, nPage
);
388 page
->SetSize(GetPageRect());
390 DoInvalidateBestSize();
395 bool wxBookCtrlBase::DeletePage(size_t nPage
)
397 wxWindow
*page
= DoRemovePage(nPage
);
398 if ( !(page
|| AllowNullPage()) )
401 // delete NULL is harmless
407 wxWindow
*wxBookCtrlBase::DoRemovePage(size_t nPage
)
409 wxCHECK_MSG( nPage
< m_pages
.size(), NULL
,
410 wxT("invalid page index in wxBookCtrlBase::DoRemovePage()") );
412 wxWindow
*pageRemoved
= m_pages
[nPage
];
413 m_pages
.RemoveAt(nPage
);
414 DoInvalidateBestSize();
419 int wxBookCtrlBase::GetNextPage(bool forward
) const
423 int nMax
= GetPageCount();
424 if ( nMax
-- ) // decrement it to get the last valid index
426 int nSel
= GetSelection();
428 // change selection wrapping if it becomes invalid
429 nPage
= forward
? nSel
== nMax
? 0
434 else // notebook is empty, no next page
442 bool wxBookCtrlBase::DoSetSelectionAfterInsertion(size_t n
, bool bSelect
)
446 else if ( m_selection
== wxNOT_FOUND
)
448 else // We're not going to select this page.
451 // Return true to indicate that we selected this page.
455 int wxBookCtrlBase::DoSetSelection(size_t n
, int flags
)
457 wxCHECK_MSG( n
< GetPageCount(), wxNOT_FOUND
,
458 wxT("invalid page index in wxBookCtrlBase::DoSetSelection()") );
460 const int oldSel
= GetSelection();
462 if ( n
!= (size_t)oldSel
)
464 wxBookCtrlEvent
*event
= CreatePageChangingEvent();
465 bool allowed
= false;
467 if ( flags
& SetSelection_SendEvent
)
469 event
->SetSelection(n
);
470 event
->SetOldSelection(oldSel
);
471 event
->SetEventObject(this);
473 allowed
= !GetEventHandler()->ProcessEvent(*event
) || event
->IsAllowed();
476 if ( !(flags
& SetSelection_SendEvent
) || allowed
)
478 if ( oldSel
!= wxNOT_FOUND
)
479 m_pages
[oldSel
]->Hide();
481 wxWindow
*page
= m_pages
[n
];
482 page
->SetSize(GetPageRect());
485 // change selection now to ignore the selection change event
486 UpdateSelectedPage(n
);
488 if ( flags
& SetSelection_SendEvent
)
490 // program allows the page change
491 MakeChangedEvent(*event
);
492 (void)GetEventHandler()->ProcessEvent(*event
);
502 IMPLEMENT_DYNAMIC_CLASS(wxBookCtrlEvent
, wxNotifyEvent
)
504 #endif // wxUSE_BOOKCTRL