]>
git.saurik.com Git - wxWidgets.git/blob - src/common/nbkbase.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/nbkbase.cpp
3 // Purpose: common wxNotebook methods
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "notebookbase.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/notebook.h"
35 #include "wx/imaglist.h"
38 // ============================================================================
40 // ============================================================================
42 // ----------------------------------------------------------------------------
43 // constructors and destructors
44 // ----------------------------------------------------------------------------
46 void wxNotebookBase::Init()
49 m_ownsImageList
= FALSE
;
52 wxNotebookBase::~wxNotebookBase()
54 if ( m_ownsImageList
)
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 void wxNotebookBase::SetImageList(wxImageList
* imageList
)
67 if ( m_ownsImageList
)
72 m_ownsImageList
= FALSE
;
75 m_imageList
= imageList
;
78 void wxNotebookBase::AssignImageList(wxImageList
* imageList
)
80 SetImageList(imageList
);
81 m_ownsImageList
= TRUE
;
84 // ----------------------------------------------------------------------------
86 // ----------------------------------------------------------------------------
88 wxSize
wxNotebookBase::CalcSizeFromPage(const wxSize
& sizePage
)
90 // this was just taken from wxNotebookSizer::CalcMin() and is, of
91 // course, totally bogus - just like the original code was
92 wxSize sizeTotal
= sizePage
;
93 if ( HasFlag(wxNB_LEFT
) || HasFlag(wxNB_RIGHT
) )
101 // ----------------------------------------------------------------------------
103 // ----------------------------------------------------------------------------
105 bool wxNotebookBase::DeletePage(int nPage
)
107 wxNotebookPage
*page
= DoRemovePage(nPage
);
116 wxNotebookPage
*wxNotebookBase::DoRemovePage(int nPage
)
118 wxCHECK_MSG( nPage
>= 0 && (size_t)nPage
< m_pages
.GetCount(), NULL
,
119 _T("invalid page index in wxNotebookBase::DoRemovePage()") );
121 wxNotebookPage
*pageRemoved
= m_pages
[nPage
];
122 m_pages
.Remove(nPage
);
127 int wxNotebookBase::GetNextPage(bool forward
) const
131 int nMax
= GetPageCount();
132 if ( nMax
-- ) // decrement it to get the last valid index
134 int nSel
= GetSelection();
136 // change selection wrapping if it becomes invalid
137 nPage
= forward
? nSel
== nMax
? 0
142 else // notebook is empty, no next page
150 #endif // wxUSE_NOTEBOOK