For some reasons wxBookCtrlBase::GetControllerSize() was redefined in several
derived classes even though it did exactly the same thing in all of them.
Leave only the base class version and remove the other ones.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63630
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// resize the notebook so that all pages will have the specified size
virtual void SetPageSize(const wxSize& size);
+ // return the size of the area needed to accommodate the controller
+ wxSize GetControllerSize() const;
+
// calculate the size of the control from the size of its page
virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const = 0;
virtual wxRect GetPageRect() const;
// event handlers
- virtual wxSize GetControllerSize() const;
void OnSize(wxSizeEvent& event);
// controller buddy if available, NULL otherwise (usually for native book controls like wxNotebook)
virtual wxWindow *DoRemovePage(size_t page);
- // get the size which the choice control should have
- virtual wxSize GetControllerSize() const;
-
void UpdateSelectedPage(size_t newsel)
{
m_selection = static_cast<int>(newsel);
protected:
virtual wxWindow *DoRemovePage(size_t page);
- // get the size which the list control should have
- virtual wxSize GetControllerSize() const;
-
void UpdateSelectedPage(size_t newsel);
wxBookCtrlEvent* CreatePageChangingEvent() const;
protected:
virtual wxWindow *DoRemovePage(size_t page);
- // get the size which the list control should have
- virtual wxSize GetControllerSize() const;
-
// event handlers
void OnToolSelected(wxCommandEvent& event);
void OnSize(wxSizeEvent& event);
wxSize wxBookCtrlBase::GetControllerSize() const
{
- if(!m_bookctrl)
- return wxSize(0,0);
+ if ( !m_bookctrl )
+ return wxSize(0, 0);
const wxSize sizeClient = GetClientSize(),
- sizeBorder = m_bookctrl->GetSize() - m_bookctrl->GetClientSize(),
- sizeCtrl = m_bookctrl->GetBestSize() + sizeBorder;
+ sizeCtrl = m_bookctrl->GetBestSize();
wxSize size;
// wxChoicebook geometry management
// ----------------------------------------------------------------------------
-wxSize wxChoicebook::GetControllerSize() const
-{
- const wxSize sizeClient = GetClientSize(),
- sizeChoice = m_controlSizer->CalcMin();
-
- wxSize size;
- if ( IsVertical() )
- {
- size.x = sizeClient.x;
- size.y = sizeChoice.y;
- }
- else // left/right aligned
- {
- size.x = sizeChoice.x;
- size.y = sizeClient.y;
- }
-
- return size;
-}
-
wxSize wxChoicebook::CalcSizeFromPage(const wxSize& sizePage) const
{
// we need to add the size of the choice control and the border between
// wxListbook geometry management
// ----------------------------------------------------------------------------
-wxSize wxListbook::GetControllerSize() const
-{
- const wxSize sizeClient = GetClientSize(),
- sizeBorder = m_bookctrl->GetSize() - m_bookctrl->GetClientSize(),
- sizeList = GetListView()->GetViewRect().GetSize() + sizeBorder;
-
- wxSize size;
-
- if ( IsVertical() )
- {
- size.x = sizeClient.x;
- size.y = sizeList.y;
- }
- else // left/right aligned
- {
- size.x = sizeList.x;
- size.y = sizeClient.y;
- }
-
- return size;
-}
-
void wxListbook::OnSize(wxSizeEvent& event)
{
// arrange the icons before calling SetClientSize(), otherwise it wouldn't
// wxToolbook geometry management
// ----------------------------------------------------------------------------
-wxSize wxToolbook::GetControllerSize() const
-{
- const wxSize sizeClient = GetClientSize(),
- sizeToolBar = GetToolBar()->GetBestSize();
-
- wxSize size;
-
- if ( IsVertical() )
- {
- size.x = sizeClient.x;
- size.y = sizeToolBar.y;
- }
- else // left/right aligned
- {
- size.x = sizeToolBar.x;
- size.y = sizeClient.y;
- }
-
- return size;
-}
-
void wxToolbook::OnSize(wxSizeEvent& event)
{
if (m_needsRealizing)