]>
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()
58 m_ownsImageList
= false;
59 m_fitToCurrentPage
= false;
61 #if defined(__WXWINCE__)
68 m_controlSizer
= NULL
;
72 wxBookCtrlBase::Create(wxWindow
*parent
,
79 return wxControl::Create
91 wxBookCtrlBase::~wxBookCtrlBase()
93 if ( m_ownsImageList
)
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
104 void wxBookCtrlBase::SetImageList(wxImageList
*imageList
)
106 if ( m_ownsImageList
)
111 m_ownsImageList
= false;
114 m_imageList
= imageList
;
117 void wxBookCtrlBase::AssignImageList(wxImageList
* imageList
)
119 SetImageList(imageList
);
121 m_ownsImageList
= true;
124 // ----------------------------------------------------------------------------
126 // ----------------------------------------------------------------------------
128 void wxBookCtrlBase::SetPageSize(const wxSize
& size
)
130 SetClientSize(CalcSizeFromPage(size
));
133 wxSize
wxBookCtrlBase::DoGetBestSize() const
137 // iterate over all pages, get the largest width and height
138 const size_t nCount
= m_pages
.size();
139 for ( size_t nPage
= 0; nPage
< nCount
; nPage
++ )
141 const wxWindow
* const pPage
= m_pages
[nPage
];
144 wxSize
childBestSize(pPage
->GetBestSize());
146 if ( childBestSize
.x
> bestSize
.x
)
147 bestSize
.x
= childBestSize
.x
;
149 if ( childBestSize
.y
> bestSize
.y
)
150 bestSize
.y
= childBestSize
.y
;
154 if (m_fitToCurrentPage
&& GetCurrentPage())
155 bestSize
= GetCurrentPage()->GetBestSize();
157 // convert display area to window area, adding the size necessary for the
159 wxSize best
= CalcSizeFromPage(bestSize
);
166 void wxBookCtrlBase::OnHelp(wxHelpEvent
& event
)
168 // determine where does this even originate from to avoid redirecting it
169 // back to the page which generated it (resulting in an infinite loop)
171 // notice that we have to check in the hard(er) way instead of just testing
172 // if the event object == this because the book control can have other
173 // subcontrols inside it (e.g. wxSpinButton in case of a notebook in wxUniv)
174 wxWindow
*source
= wxStaticCast(event
.GetEventObject(), wxWindow
);
175 while ( source
&& source
!= this && source
->GetParent() != this )
177 source
= source
->GetParent();
180 if ( source
&& m_pages
.Index(source
) == wxNOT_FOUND
)
182 // this event is for the book control itself, redirect it to the
183 // corresponding page
184 wxWindow
*page
= NULL
;
186 if ( event
.GetOrigin() == wxHelpEvent::Origin_HelpButton
)
188 // show help for the page under the mouse
189 const int pagePos
= HitTest(ScreenToClient(event
.GetPosition()));
191 if ( pagePos
!= wxNOT_FOUND
)
193 page
= GetPage((size_t)pagePos
);
196 else // event from keyboard or unknown source
198 // otherwise show the current page help
199 page
= GetCurrentPage();
204 // change event object to the page to avoid infinite recursion if
205 // we get this event ourselves if the page doesn't handle it
206 event
.SetEventObject(page
);
208 if ( page
->GetEventHandler()->ProcessEvent(event
) )
210 // don't call event.Skip()
215 //else: event coming from one of our pages already
222 // ----------------------------------------------------------------------------
224 // ----------------------------------------------------------------------------
227 wxBookCtrlBase::InsertPage(size_t nPage
,
229 const wxString
& WXUNUSED(text
),
230 bool WXUNUSED(bSelect
),
231 int WXUNUSED(imageId
))
233 wxCHECK_MSG( page
|| AllowNullPage(), false,
234 _T("NULL page in wxBookCtrlBase::InsertPage()") );
235 wxCHECK_MSG( nPage
<= m_pages
.size(), false,
236 _T("invalid page index in wxBookCtrlBase::InsertPage()") );
238 m_pages
.Insert(page
, nPage
);
240 page
->SetSize(GetPageRect());
242 InvalidateBestSize();
247 bool wxBookCtrlBase::DeletePage(size_t nPage
)
249 wxWindow
*page
= DoRemovePage(nPage
);
250 if ( !(page
|| AllowNullPage()) )
253 // delete NULL is harmless
259 wxWindow
*wxBookCtrlBase::DoRemovePage(size_t nPage
)
261 wxCHECK_MSG( nPage
< m_pages
.size(), NULL
,
262 _T("invalid page index in wxBookCtrlBase::DoRemovePage()") );
264 wxWindow
*pageRemoved
= m_pages
[nPage
];
265 m_pages
.RemoveAt(nPage
);
266 InvalidateBestSize();
271 int wxBookCtrlBase::GetNextPage(bool forward
) const
275 int nMax
= GetPageCount();
276 if ( nMax
-- ) // decrement it to get the last valid index
278 int nSel
= GetSelection();
280 // change selection wrapping if it becomes invalid
281 nPage
= forward
? nSel
== nMax
? 0
286 else // notebook is empty, no next page
294 wxRect
wxBookCtrlBase::GetPageRect() const
296 const wxSize size
= GetControllerSize();
299 wxRect
rectPage(pt
, GetClientSize());
301 switch ( GetWindowStyle() & wxBK_ALIGN_MASK
)
304 wxFAIL_MSG( _T("unexpected alignment") );
308 rectPage
.y
= size
.y
+ GetInternalBorder();
312 rectPage
.height
-= size
.y
+ GetInternalBorder();
316 rectPage
.x
= size
.x
+ GetInternalBorder();
320 rectPage
.width
-= size
.x
+ GetInternalBorder();
328 void wxBookCtrlBase::DoSize()
332 // we're not fully created yet or OnSize() should be hidden by derived class
340 // resize controller and the page area to fit inside our new size
341 const wxSize
sizeClient( GetClientSize() ),
342 sizeBorder( m_bookctrl
->GetSize() - m_bookctrl
->GetClientSize() ),
343 sizeCtrl( GetControllerSize() );
345 m_bookctrl
->SetClientSize( sizeCtrl
.x
- sizeBorder
.x
, sizeCtrl
.y
- sizeBorder
.y
);
347 const wxSize sizeNew
= m_bookctrl
->GetSize();
349 switch ( GetWindowStyle() & wxBK_ALIGN_MASK
)
352 wxFAIL_MSG( _T("unexpected alignment") );
357 // posCtrl is already ok
361 posCtrl
.y
= sizeClient
.y
- sizeNew
.y
;
365 posCtrl
.x
= sizeClient
.x
- sizeNew
.x
;
369 if ( m_bookctrl
->GetPosition() != posCtrl
)
370 m_bookctrl
->Move(posCtrl
);
373 // resize all pages to fit the new control size
374 const wxRect pageRect
= GetPageRect();
375 const unsigned pagesCount
= m_pages
.Count();
376 for ( unsigned int i
= 0; i
< pagesCount
; ++i
)
378 wxWindow
* const page
= m_pages
[i
];
381 wxASSERT_MSG( AllowNullPage(),
382 _T("Null page in a control that does not allow null pages?") );
386 page
->SetSize(pageRect
);
390 void wxBookCtrlBase::OnSize(wxSizeEvent
& event
)
397 wxSize
wxBookCtrlBase::GetControllerSize() const
402 const wxSize sizeClient
= GetClientSize(),
403 sizeBorder
= m_bookctrl
->GetSize() - m_bookctrl
->GetClientSize(),
404 sizeCtrl
= m_bookctrl
->GetBestSize() + sizeBorder
;
410 size
.x
= sizeClient
.x
;
413 else // left/right aligned
416 size
.y
= sizeClient
.y
;
422 #endif // wxUSE_BOOKCTRL