]> git.saurik.com Git - wxWidgets.git/blame - src/common/nbkbase.cpp
return immediately if the XPM is bad instead of spitting out thousands of error messages
[wxWidgets.git] / src / common / nbkbase.cpp
CommitLineData
07b8d7ec
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: src/common/nbkbase.cpp
3// Purpose: common wxNotebook methods
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 02.07.01
7// RCS-ID: $Id$
8// Copyright: (c) 2001 Vadim Zeitlin
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
14f355c2 20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
07b8d7ec
VZ
21 #pragma implementation "notebookbase.h"
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
28 #pragma hdrstop
29#endif
30
31#if wxUSE_NOTEBOOK
32
33#ifndef WX_PRECOMP
07b8d7ec
VZ
34#endif //WX_PRECOMP
35
bd52bee1
JS
36#include "wx/imaglist.h"
37#include "wx/notebook.h"
38
3fcea4b1
JS
39#ifdef __GNUWIN32_OLD__
40 #include "wx/msw/gnuwin32/extra.h"
41#endif
42
43#if defined(__WIN95__) && !(defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__))
c09615b8
JS
44#include "wx/msw/private.h"
45#include <commctrl.h>
46#include "wx/msw/winundef.h"
47#endif
48
07b8d7ec
VZ
49// ============================================================================
50// implementation
51// ============================================================================
52
53// ----------------------------------------------------------------------------
54// constructors and destructors
55// ----------------------------------------------------------------------------
56
57void wxNotebookBase::Init()
58{
59 m_imageList = NULL;
60 m_ownsImageList = FALSE;
61}
62
63wxNotebookBase::~wxNotebookBase()
64{
65 if ( m_ownsImageList )
66 {
67 // may be NULL, ok
68 delete m_imageList;
69 }
70}
71
72// ----------------------------------------------------------------------------
73// image list
74// ----------------------------------------------------------------------------
75
76void wxNotebookBase::SetImageList(wxImageList* imageList)
77{
78 if ( m_ownsImageList )
79 {
80 // may be NULL, ok
81 delete m_imageList;
82
83 m_ownsImageList = FALSE;
84 }
85
86 m_imageList = imageList;
87}
88
89void wxNotebookBase::AssignImageList(wxImageList* imageList)
90{
91 SetImageList(imageList);
92 m_ownsImageList = TRUE;
93}
94
95// ----------------------------------------------------------------------------
96// geometry
97// ----------------------------------------------------------------------------
98
2ce7af35 99wxSize wxNotebookBase::CalcSizeFromPage(const wxSize& sizePage) const
07b8d7ec 100{
550e6c01
VZ
101 // this is, of course, totally bogus -- but we must do something by
102 // default because not all ports implement this
07b8d7ec 103 wxSize sizeTotal = sizePage;
550e6c01 104
07b8d7ec 105 if ( HasFlag(wxNB_LEFT) || HasFlag(wxNB_RIGHT) )
eaf336e0 106 {
07b8d7ec 107 sizeTotal.x += 90;
eaf336e0 108 sizeTotal.y += 10;
eaf336e0 109 }
550e6c01 110 else // tabs on top/bottom side
eaf336e0 111 {
eaf336e0 112 sizeTotal.x += 10;
07b8d7ec 113 sizeTotal.y += 40;
eaf336e0 114 }
07b8d7ec
VZ
115
116 return sizeTotal;
117}
118
8d85bf5c
VZ
119wxSize wxNotebookBase::DoGetBestSize() const
120{
121 wxSize bestSize;
122
123 // iterate over all pages, get the largest width and height
124 const size_t nCount = m_pages.Count();
125 for ( size_t nPage = 0; nPage < nCount; nPage++ )
126 {
127 wxNotebookPage *pPage = m_pages[nPage];
128 wxSize childBestSize(pPage->GetBestSize());
129
130 if ( childBestSize.x > bestSize.x )
131 bestSize.x = childBestSize.x;
132
133 if ( childBestSize.y > bestSize.y )
134 bestSize.y = childBestSize.y;
135 }
136
137 // convert display area to window area, adding the size neccessary for the
138 // tabs
139 return CalcSizeFromPage(bestSize);
140}
141
07b8d7ec
VZ
142// ----------------------------------------------------------------------------
143// pages management
144// ----------------------------------------------------------------------------
145
146bool wxNotebookBase::DeletePage(int nPage)
147{
148 wxNotebookPage *page = DoRemovePage(nPage);
149 if ( !page )
150 return FALSE;
151
152 delete page;
153
154 return TRUE;
155}
156
10199e27
VZ
157wxNotebookPage *wxNotebookBase::DoRemovePage(int nPage)
158{
159 wxCHECK_MSG( nPage >= 0 && (size_t)nPage < m_pages.GetCount(), NULL,
160 _T("invalid page index in wxNotebookBase::DoRemovePage()") );
161
162 wxNotebookPage *pageRemoved = m_pages[nPage];
b54e41c5 163 m_pages.RemoveAt(nPage);
10199e27
VZ
164
165 return pageRemoved;
166}
167
07b8d7ec
VZ
168int wxNotebookBase::GetNextPage(bool forward) const
169{
170 int nPage;
171
172 int nMax = GetPageCount();
173 if ( nMax-- ) // decrement it to get the last valid index
174 {
175 int nSel = GetSelection();
176
177 // change selection wrapping if it becomes invalid
178 nPage = forward ? nSel == nMax ? 0
179 : nSel + 1
180 : nSel == 0 ? nMax
181 : nSel - 1;
182 }
183 else // notebook is empty, no next page
184 {
185 nPage = -1;
186 }
187
188 return nPage;
189}
190
191#endif // wxUSE_NOTEBOOK
192