1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/toolbkg.cpp
3 // Purpose: generic implementation of wxToolbook
4 // Author: Julian Smart
8 // Copyright: (c) 2006 Julian Smart
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
23 #include "wx/settings.h"
24 #include "wx/toolbar.h"
27 #include "wx/imaglist.h"
28 #include "wx/sysopt.h"
29 #include "wx/toolbook.h"
31 #if defined(__WXMAC__) && wxUSE_TOOLBAR && wxUSE_BMPBUTTON
32 #include "wx/generic/buttonbar.h"
35 // ----------------------------------------------------------------------------
36 // various wxWidgets macros
37 // ----------------------------------------------------------------------------
39 // check that the page index is valid
40 #define IS_VALID_PAGE(nPage) ((nPage) < GetPageCount())
42 // ----------------------------------------------------------------------------
44 // ----------------------------------------------------------------------------
46 IMPLEMENT_DYNAMIC_CLASS(wxToolbook
, wxBookCtrlBase
)
47 IMPLEMENT_DYNAMIC_CLASS(wxToolbookEvent
, wxNotifyEvent
)
49 #if !WXWIN_COMPATIBILITY_EVENT_TYPES
50 const wxEventType wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
= wxNewEventType();
51 const wxEventType wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
= wxNewEventType();
53 const int wxID_TOOLBOOKTOOLBAR
= wxNewId();
55 BEGIN_EVENT_TABLE(wxToolbook
, wxBookCtrlBase
)
56 EVT_SIZE(wxToolbook::OnSize
)
57 EVT_TOOL_RANGE(1, 50, wxToolbook::OnToolSelected
)
58 EVT_IDLE(wxToolbook::OnIdle
)
61 // ============================================================================
62 // wxToolbook implementation
63 // ============================================================================
65 // ----------------------------------------------------------------------------
66 // wxToolbook creation
67 // ----------------------------------------------------------------------------
69 void wxToolbook::Init()
71 m_selection
= wxNOT_FOUND
;
72 m_needsRealizing
= false;
75 bool wxToolbook::Create(wxWindow
*parent
,
82 if ( (style
& wxBK_ALIGN_MASK
) == wxBK_DEFAULT
)
85 // no border for this control
86 style
&= ~wxBORDER_MASK
;
87 style
|= wxBORDER_NONE
;
89 if ( !wxControl::Create(parent
, id
, pos
, size
, style
,
90 wxDefaultValidator
, name
) )
93 int orient
= wxTB_HORIZONTAL
;
94 if ( (style
& (wxBK_LEFT
| wxBK_RIGHT
)) != 0)
95 orient
= wxTB_VERTICAL
;
97 // TODO: make more configurable
99 #if defined(__WXMAC__) && wxUSE_TOOLBAR && wxUSE_BMPBUTTON
100 if (style
& wxBK_BUTTONBAR
)
102 m_bookctrl
= new wxButtonToolBar
105 wxID_TOOLBOOKTOOLBAR
,
108 orient
|wxTB_TEXT
|wxTB_FLAT
|wxNO_BORDER
114 m_bookctrl
= new wxToolBar
117 wxID_TOOLBOOKTOOLBAR
,
120 orient
|wxTB_TEXT
|wxTB_FLAT
|wxTB_NODIVIDER
|wxNO_BORDER
127 // ----------------------------------------------------------------------------
128 // wxToolbook geometry management
129 // ----------------------------------------------------------------------------
131 wxSize
wxToolbook::GetControllerSize() const
133 const wxSize sizeClient
= GetClientSize(),
134 sizeBorder
= m_bookctrl
->GetSize() - m_bookctrl
->GetClientSize(),
135 sizeToolBar
= GetToolBar()->GetSize() + sizeBorder
;
141 size
.x
= sizeClient
.x
;
142 size
.y
= sizeToolBar
.y
;
144 else // left/right aligned
146 size
.x
= sizeToolBar
.x
;
147 size
.y
= sizeClient
.y
;
153 void wxToolbook::OnSize(wxSizeEvent
& event
)
155 if (m_needsRealizing
)
158 wxBookCtrlBase::OnSize(event
);
161 wxSize
wxToolbook::CalcSizeFromPage(const wxSize
& sizePage
) const
163 // we need to add the size of the list control and the border between
164 const wxSize sizeToolBar
= GetControllerSize();
166 wxSize size
= sizePage
;
169 size
.y
+= sizeToolBar
.y
+ GetInternalBorder();
171 else // left/right aligned
173 size
.x
+= sizeToolBar
.x
+ GetInternalBorder();
179 // ----------------------------------------------------------------------------
180 // accessing the pages
181 // ----------------------------------------------------------------------------
183 bool wxToolbook::SetPageText(size_t n
, const wxString
& strText
)
185 // Assume tool ids start from 1
186 wxToolBarToolBase
* tool
= GetToolBar()->FindById(n
+ 1);
189 tool
->SetLabel(strText
);
196 wxString
wxToolbook::GetPageText(size_t n
) const
198 wxToolBarToolBase
* tool
= GetToolBar()->FindById(n
+ 1);
200 return tool
->GetLabel();
202 return wxEmptyString
;
205 int wxToolbook::GetPageImage(size_t WXUNUSED(n
)) const
207 wxFAIL_MSG( _T("wxToolbook::GetPageImage() not implemented") );
212 bool wxToolbook::SetPageImage(size_t n
, int imageId
)
214 wxASSERT( GetImageList() != NULL
);
218 wxToolBarToolBase
* tool
= GetToolBar()->FindById(n
+ 1);
221 // Find the image list index for this tool
222 wxBitmap bitmap
= GetImageList()->GetBitmap(imageId
);
223 tool
->SetNormalBitmap(bitmap
);
230 // ----------------------------------------------------------------------------
232 // ----------------------------------------------------------------------------
234 void wxToolbook::SetImageList(wxImageList
*imageList
)
236 wxBookCtrlBase::SetImageList(imageList
);
239 // ----------------------------------------------------------------------------
241 // ----------------------------------------------------------------------------
243 int wxToolbook::GetSelection() const
248 int wxToolbook::DoSetSelection(size_t n
, int flags
)
250 wxToolbookEvent
event(wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
, m_windowId
);
251 return wxBookCtrlBase::DoSetSelection(n
, flags
, event
);
254 void wxToolbook::UpdateSelectedPage(size_t newsel
)
256 m_selection
= newsel
;
257 GetToolBar()->ToggleTool(newsel
+ 1, true);
260 // Not part of the wxBookctrl API, but must be called in OnIdle or
261 // by application to realize the toolbar and select the initial page.
262 void wxToolbook::Realize()
264 if (m_needsRealizing
)
266 GetToolBar()->SetToolBitmapSize(m_maxBitmapSize
);
268 int remap
= wxSystemOptions::GetOptionInt(wxT("msw.remap"));
269 wxSystemOptions::SetOption(wxT("msw.remap"), 0);
270 GetToolBar()->Realize();
271 wxSystemOptions::SetOption(wxT("msw.remap"), remap
);
274 m_needsRealizing
= false;
276 if (m_selection
== -1)
279 if (GetPageCount() > 0)
281 int sel
= m_selection
;
289 int wxToolbook::HitTest(const wxPoint
& pt
, long *flags
) const
291 int pagePos
= wxNOT_FOUND
;
294 *flags
= wxBK_HITTEST_NOWHERE
;
296 // convert from wxToolbook coordinates to wxToolBar ones
297 const wxToolBarBase
* const tbar
= GetToolBar();
298 const wxPoint tbarPt
= tbar
->ScreenToClient(ClientToScreen(pt
));
300 // is the point over the toolbar?
301 if ( wxRect(tbar
->GetSize()).Contains(tbarPt
) )
303 const wxToolBarToolBase
* const
304 tool
= tbar
->FindToolForPosition(tbarPt
.x
, tbarPt
.y
);
308 pagePos
= tbar
->GetToolPos(tool
->GetId());
310 *flags
= wxBK_HITTEST_ONICON
| wxBK_HITTEST_ONLABEL
;
313 else // not over the toolbar
315 if ( flags
&& GetPageRect().Contains(pt
) )
316 *flags
|= wxBK_HITTEST_ONPAGE
;
322 void wxToolbook::OnIdle(wxIdleEvent
& event
)
324 if (m_needsRealizing
)
329 // ----------------------------------------------------------------------------
330 // adding/removing the pages
331 // ----------------------------------------------------------------------------
333 bool wxToolbook::InsertPage(size_t n
,
335 const wxString
& text
,
339 if ( !wxBookCtrlBase::InsertPage(n
, page
, text
, bSelect
, imageId
) )
342 m_needsRealizing
= true;
344 wxASSERT(GetImageList() != NULL
);
349 // TODO: make sure all platforms can convert between icon and bitmap,
350 // and/or test whether the image is a bitmap or an icon.
352 wxBitmap bitmap
= GetImageList()->GetBitmap(imageId
);
354 // On Windows, we can lose information by using GetBitmap, so extract icon instead
355 wxIcon icon
= GetImageList()->GetIcon(imageId
);
357 bitmap
.CopyFromIcon(icon
);
360 m_maxBitmapSize
.x
= wxMax(bitmap
.GetWidth(), m_maxBitmapSize
.x
);
361 m_maxBitmapSize
.y
= wxMax(bitmap
.GetHeight(), m_maxBitmapSize
.y
);
363 GetToolBar()->SetToolBitmapSize(m_maxBitmapSize
);
364 GetToolBar()->AddRadioTool(n
+ 1, text
, bitmap
, wxNullBitmap
, text
);
368 GetToolBar()->ToggleTool(n
, true);
374 InvalidateBestSize();
378 wxWindow
*wxToolbook::DoRemovePage(size_t page
)
380 const size_t page_count
= GetPageCount();
381 wxWindow
*win
= wxBookCtrlBase::DoRemovePage(page
);
385 GetToolBar()->DeleteTool(page
+ 1);
387 if (m_selection
>= (int)page
)
389 // force new sel valid if possible
390 int sel
= m_selection
- 1;
393 else if ((page_count
== 2) || (sel
== -1))
396 // force sel invalid if deleting current page - don't try to hide it
397 m_selection
= (m_selection
== (int)page
) ? wxNOT_FOUND
: m_selection
- 1;
399 if ((sel
!= wxNOT_FOUND
) && (sel
!= m_selection
))
408 bool wxToolbook::DeleteAllPages()
410 GetToolBar()->ClearTools();
411 return wxBookCtrlBase::DeleteAllPages();
414 // ----------------------------------------------------------------------------
416 // ----------------------------------------------------------------------------
418 void wxToolbook::OnToolSelected(wxCommandEvent
& event
)
420 const int selNew
= event
.GetId() - 1;
422 if ( selNew
== m_selection
)
424 // this event can only come from our own Select(m_selection) below
425 // which we call when the page change is vetoed, so we should simply
430 SetSelection(selNew
);
432 // change wasn't allowed, return to previous state
433 if (m_selection
!= selNew
)
435 GetToolBar()->ToggleTool(m_selection
, false);
439 #endif // wxUSE_TOOLBOOK