]>
git.saurik.com Git - wxWidgets.git/blob - src/common/bookctrl.cpp
992b2a67132305d469df4921fe27ac58425e3cdd
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: 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 // ----------------------------------------------------------------------------
38 // constructors and destructors
39 // ----------------------------------------------------------------------------
41 void wxBookCtrlBase::Init()
44 m_ownsImageList
= false;
46 #if defined(__WXWINCE__)
54 wxBookCtrlBase::Create(wxWindow
*parent
,
61 return wxControl::Create
73 wxBookCtrlBase::~wxBookCtrlBase()
75 if ( m_ownsImageList
)
82 // ----------------------------------------------------------------------------
84 // ----------------------------------------------------------------------------
86 void wxBookCtrlBase::SetImageList(wxImageList
*imageList
)
88 if ( m_ownsImageList
)
93 m_ownsImageList
= false;
96 m_imageList
= imageList
;
99 void wxBookCtrlBase::AssignImageList(wxImageList
* imageList
)
101 SetImageList(imageList
);
103 m_ownsImageList
= true;
106 // ----------------------------------------------------------------------------
108 // ----------------------------------------------------------------------------
110 void wxBookCtrlBase::SetPageSize(const wxSize
& size
)
112 SetClientSize(CalcSizeFromPage(size
));
115 wxSize
wxBookCtrlBase::DoGetBestSize() const
119 // iterate over all pages, get the largest width and height
120 const size_t nCount
= m_pages
.size();
121 for ( size_t nPage
= 0; nPage
< nCount
; nPage
++ )
123 const wxWindow
* const pPage
= m_pages
[nPage
];
126 wxSize
childBestSize(pPage
->GetBestSize());
128 if ( childBestSize
.x
> bestSize
.x
)
129 bestSize
.x
= childBestSize
.x
;
131 if ( childBestSize
.y
> bestSize
.y
)
132 bestSize
.y
= childBestSize
.y
;
136 // convert display area to window area, adding the size necessary for the
138 wxSize best
= CalcSizeFromPage(bestSize
);
143 // ----------------------------------------------------------------------------
145 // ----------------------------------------------------------------------------
148 wxBookCtrlBase::InsertPage(size_t nPage
,
150 const wxString
& WXUNUSED(text
),
151 bool WXUNUSED(bSelect
),
152 int WXUNUSED(imageId
))
154 wxCHECK_MSG( page
|| AllowNullPage(), false, _T("NULL page in wxBookCtrlBase::InsertPage()") );
155 wxCHECK_MSG( nPage
<= m_pages
.size(), false,
156 _T("invalid page index in wxBookCtrlBase::InsertPage()") );
158 m_pages
.Insert(page
, nPage
);
159 InvalidateBestSize();
164 bool wxBookCtrlBase::DeletePage(size_t nPage
)
166 wxWindow
*page
= DoRemovePage(nPage
);
167 if ( !(page
|| AllowNullPage()) )
170 // delete NULL is harmless
176 wxWindow
*wxBookCtrlBase::DoRemovePage(size_t nPage
)
178 wxCHECK_MSG( nPage
< m_pages
.size(), NULL
,
179 _T("invalid page index in wxBookCtrlBase::DoRemovePage()") );
181 wxWindow
*pageRemoved
= m_pages
[nPage
];
182 m_pages
.RemoveAt(nPage
);
183 InvalidateBestSize();
188 int wxBookCtrlBase::GetNextPage(bool forward
) const
192 int nMax
= GetPageCount();
193 if ( nMax
-- ) // decrement it to get the last valid index
195 int nSel
= GetSelection();
197 // change selection wrapping if it becomes invalid
198 nPage
= forward
? nSel
== nMax
? 0
203 else // notebook is empty, no next page
211 #endif // wxUSE_BOOKCTRL