1 /////////////////////////////////////////////////////////////////////////////
2 // Name: univ/notebook.cpp
3 // Purpose: wxNotebook implementation
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "univnotebook.h"
24 #include "wx/wxprec.h"
32 #include "wx/imaglist.h"
33 #include "wx/notebook.h"
34 #include "wx/spinbutt.h"
35 #include "wx/dcmemory.h"
37 #include "wx/univ/renderer.h"
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
43 #define IS_VALID_PAGE(nPage) (((nPage) >= 0) && ((nPage) < GetPageCount()))
45 // ----------------------------------------------------------------------------
47 // ----------------------------------------------------------------------------
49 static const size_t INVALID_PAGE
= (size_t)-1;
51 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
)
52 DEFINE_EVENT_TYPE(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
)
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 class wxNotebookSpinBtn
: public wxSpinButton
61 wxNotebookSpinBtn(wxNotebook
*nb
)
62 : wxSpinButton(nb
, -1,
63 wxDefaultPosition
, wxDefaultSize
,
64 nb
->IsVertical() ? wxSP_VERTICAL
: wxSP_HORIZONTAL
)
70 void OnSpin(wxSpinEvent
& event
)
72 m_nb
->PerformAction(wxACTION_NOTEBOOK_GOTO
, event
.GetPosition());
81 BEGIN_EVENT_TABLE(wxNotebookSpinBtn
, wxSpinButton
)
82 EVT_SPIN(-1, wxNotebookSpinBtn::OnSpin
)
85 // ============================================================================
87 // ============================================================================
89 IMPLEMENT_DYNAMIC_CLASS(wxNotebook
, wxControl
)
90 IMPLEMENT_DYNAMIC_CLASS(wxNotebookEvent
, wxCommandEvent
)
92 // ----------------------------------------------------------------------------
93 // wxNotebook creation
94 // ----------------------------------------------------------------------------
96 void wxNotebook::Init()
105 m_lastFullyVisible
= 0;
112 bool wxNotebook::Create(wxWindow
*parent
,
117 const wxString
& name
)
119 if ( !wxControl::Create(parent
, id
, pos
, size
, style
,
120 wxDefaultValidator
, name
) )
123 m_sizePad
= GetRenderer()->GetTabPadding();
127 CreateInputHandler(wxINP_HANDLER_NOTEBOOK
);
132 // ----------------------------------------------------------------------------
133 // wxNotebook page titles and images
134 // ----------------------------------------------------------------------------
136 wxString
wxNotebook::GetPageText(int nPage
) const
138 wxCHECK_MSG( IS_VALID_PAGE(nPage
), _T(""), _T("invalid notebook page") );
140 return m_titles
[nPage
];
143 bool wxNotebook::SetPageText(int nPage
, const wxString
& strText
)
145 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, _T("invalid notebook page") );
147 if ( strText
!= m_titles
[nPage
] )
149 m_accels
[nPage
] = FindAccelIndex(strText
, &m_titles
[nPage
]);
151 if ( FixedSizeTabs() )
153 // it's enough to just reresh this one
156 else // var width tabs
158 // we need to resize the tab to fit the new string
166 int wxNotebook::GetPageImage(int nPage
) const
168 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, _T("invalid notebook page") );
170 return m_images
[nPage
];
173 bool wxNotebook::SetPageImage(int nPage
, int nImage
)
175 wxCHECK_MSG( IS_VALID_PAGE(nPage
), FALSE
, _T("invalid notebook page") );
177 wxCHECK_MSG( m_imageList
&& nImage
< m_imageList
->GetImageCount(), FALSE
,
178 _T("invalid image index in SetPageImage()") );
180 if ( nImage
!= m_images
[nPage
] )
182 // if the item didn't have an icon before or, on the contrary, did have
183 // it but has lost it now, its size will change - but if the icon just
185 bool tabSizeChanges
= nImage
== -1 || m_images
[nPage
] == -1;
186 m_images
[nPage
] = nImage
;
188 if ( tabSizeChanges
)
197 wxNotebook::~wxNotebook()
201 // ----------------------------------------------------------------------------
202 // wxNotebook page switching
203 // ----------------------------------------------------------------------------
205 int wxNotebook::SetSelection(int nPage
)
207 wxCHECK_MSG( IS_VALID_PAGE(nPage
), -1, _T("invalid notebook page") );
209 if ( (size_t)nPage
== m_sel
)
211 // don't do anything if there is nothing to do
215 // we need to change m_sel first, before calling RefreshTab() below as
216 // otherwise the previously selected tab wouldn't be redrawn properly under
217 // wxGTK which calls Refresh() immediately and not during the next event
218 // loop iteration as wxMSW does and as it should
219 size_t selOld
= m_sel
;
223 if ( selOld
!= INVALID_PAGE
)
225 RefreshTab(selOld
, TRUE
/* this tab was selected */);
227 m_pages
[selOld
]->Hide();
230 if ( m_sel
!= INVALID_PAGE
) // this is impossible - but test nevertheless
235 m_spinbtn
->SetValue(m_sel
);
238 if ( m_sel
< m_firstVisible
)
240 // selection is to the left of visible part of tabs
243 else if ( m_sel
> m_lastFullyVisible
)
245 // selection is to the right of visible part of tabs
248 else // we already see this tab
254 m_pages
[m_sel
]->SetSize(GetPageRect());
255 m_pages
[m_sel
]->Show();
261 void wxNotebook::ChangePage(int nPage
)
263 wxCHECK_RET( IS_VALID_PAGE(nPage
), _T("invalid notebook page") );
265 if ( (size_t)nPage
== m_sel
)
271 wxNotebookEvent
event(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, m_windowId
);
272 event
.SetSelection(nPage
);
273 event
.SetOldSelection(m_sel
);
274 event
.SetEventObject(this);
275 if ( GetEventHandler()->ProcessEvent(event
) && !event
.IsAllowed() )
277 // program doesn't allow the page change
283 event
.SetEventType(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
);
284 GetEventHandler()->ProcessEvent(event
);
287 // ----------------------------------------------------------------------------
288 // wxNotebook pages adding/deleting
289 // ----------------------------------------------------------------------------
291 bool wxNotebook::InsertPage(int nPage
,
292 wxNotebookPage
*pPage
,
293 const wxString
& strText
,
297 int nPages
= GetPageCount();
298 wxCHECK_MSG( nPage
== nPages
|| IS_VALID_PAGE(nPage
), FALSE
,
299 _T("invalid notebook page in InsertPage()") );
302 m_pages
.Insert(pPage
, nPage
);
305 m_accels
.Insert(FindAccelIndex(strText
, &label
), nPage
);
306 m_titles
.Insert(label
, nPage
);
308 m_images
.Insert(imageId
, nPage
);
310 // cache the tab geometry here
311 wxSize sizeTab
= CalcTabSize(nPage
);
313 if ( sizeTab
.y
> m_heightTab
)
314 m_heightTab
= sizeTab
.y
;
316 if ( FixedSizeTabs() && sizeTab
.x
> m_widthMax
)
317 m_widthMax
= sizeTab
.x
;
319 m_widths
.Insert(sizeTab
.x
, nPage
);
321 // spin button may appear if we didn't have it before - but even if we did,
322 // its range should change, so update it unconditionally
325 // if the tab has just appeared, we have to relayout everything, otherwise
326 // it's enough to just redraw the tabs
329 // always select the first tab to have at least some selection
334 else // not the first tab
343 else // pages added to the notebook are initially hidden
351 bool wxNotebook::DeleteAllPages()
353 if ( !wxNotebookBase::DeleteAllPages() )
356 // clear the other arrays as well
362 // it is not valid any longer
363 m_sel
= INVALID_PAGE
;
365 // spin button is not needed any more
373 wxNotebookPage
*wxNotebook::DoRemovePage(int nPage
)
375 wxCHECK_MSG( IS_VALID_PAGE(nPage
), NULL
, _T("invalid notebook page") );
377 wxNotebookPage
*page
= m_pages
[nPage
];
378 m_pages
.RemoveAt(nPage
);
379 m_titles
.RemoveAt(nPage
);
380 m_accels
.RemoveAt(nPage
);
381 m_widths
.RemoveAt(nPage
);
382 m_images
.RemoveAt(nPage
);
384 // the spin button might not be needed any more
385 // 2002-08-12 'if' commented out by JACS on behalf
386 // of Hans Van Leemputten <Hansvl@softhome.net> who
387 // points out that UpdateSpinBtn should always be called,
388 // to ensure m_lastVisible is up to date.
389 // if ( HasSpinBtn() )
394 int count
= GetPageCount();
397 if ( m_sel
== (size_t)nPage
)
399 // avoid sending event to this page which doesn't exist in the
401 m_sel
= INVALID_PAGE
;
403 SetSelection(nPage
== count
? nPage
- 1 : nPage
);
405 else if ( m_sel
> (size_t)nPage
)
407 // no need to change selection, just adjust the index
411 else // no more tabs left
413 m_sel
= INVALID_PAGE
;
416 // have to refresh everything
422 // ----------------------------------------------------------------------------
423 // wxNotebook drawing
424 // ----------------------------------------------------------------------------
426 void wxNotebook::RefreshCurrent()
428 if ( m_sel
!= INVALID_PAGE
)
434 void wxNotebook::RefreshTab(int page
, bool forceSelected
)
436 wxCHECK_RET( IS_VALID_PAGE(page
), _T("invalid notebook page") );
438 wxRect rect
= GetTabRect(page
);
439 if ( forceSelected
|| ((size_t)page
== m_sel
) )
441 const wxSize indent
= GetRenderer()->GetTabIndent();
442 rect
.Inflate(indent
.x
, indent
.y
);
448 void wxNotebook::RefreshAllTabs()
450 wxRect rect
= GetAllTabsRect();
451 if ( rect
.width
|| rect
.height
)
455 //else: we don't have tabs at all
458 void wxNotebook::DoDrawTab(wxDC
& dc
, const wxRect
& rect
, size_t n
)
463 int image
= m_images
[n
];
465 // Not needed now that wxGenericImageList is being
466 // used for wxUniversal under MSW
467 #if 0 // def __WXMSW__ // FIXME
469 m_imageList
->GetSize(n
, w
, h
);
472 dc
.SelectObject(bmp
);
473 dc
.SetBackground(wxBrush(GetBackgroundColour(), wxSOLID
));
474 m_imageList
->Draw(image
, dc
, 0, 0, wxIMAGELIST_DRAW_NORMAL
, TRUE
);
475 dc
.SelectObject(wxNullBitmap
);
477 bmp
= *m_imageList
->GetBitmap(image
);
484 flags
|= wxCONTROL_SELECTED
;
487 flags
|= wxCONTROL_FOCUSED
;
490 GetRenderer()->DrawTab
502 void wxNotebook::DoDraw(wxControlRenderer
*renderer
)
504 //wxRect rectUpdate = GetUpdateClientRect(); -- unused
506 wxDC
& dc
= renderer
->GetDC();
507 dc
.SetFont(GetFont());
508 dc
.SetTextForeground(GetForegroundColour());
510 // redraw the border - it's simpler to always do it instead of checking
511 // whether this needs to be done
512 GetRenderer()->DrawBorder(dc
, wxBORDER_RAISED
, GetPagePart());
514 // avoid overwriting the spin button
517 wxRect rectTabs
= GetAllTabsRect();
518 wxSize sizeSpinBtn
= m_spinbtn
->GetSize();
521 rectTabs
.height
-= sizeSpinBtn
.y
;
523 rectTabs
.width
-= sizeSpinBtn
.x
;
525 dc
.SetClippingRegion(rectTabs
);
528 wxRect rect
= GetTabsPart();
529 bool isVertical
= IsVertical();
532 for ( size_t n
= m_firstVisible
; n
< m_lastVisible
; n
++ )
534 GetTabSize(n
, &rect
.width
, &rect
.height
);
538 // don't redraw it now as this tab has to be drawn over the other
539 // ones as it takes more place and spills over to them
542 else // not selected tab
544 // unfortunately we can't do this because the selected tab hangs
545 // over its neighbours and so we might need to refresh more tabs -
546 // of course, we could still avoid rereshing some of them with more
547 // complicated checks, but it doesn't seem too bad to refresh all
548 // of them, I still don't see flicker, so leaving as is for now
550 //if ( rectUpdate.Intersects(rect) )
552 DoDrawTab(dc
, rect
, n
);
554 //else: doesn't need to be refreshed
557 // move the rect to the next tab
559 rect
.y
+= rect
.height
;
561 rect
.x
+= rect
.width
;
564 // now redraw the selected tab
567 DoDrawTab(dc
, rectSel
, m_sel
);
571 // ----------------------------------------------------------------------------
572 // wxNotebook geometry
573 // ----------------------------------------------------------------------------
575 int wxNotebook::HitTest(const wxPoint
& pt
) const
577 // first check that it is in this window at all
578 if ( !GetClientRect().Inside(pt
) )
583 wxRect rectTabs
= GetAllTabsRect();
585 switch ( GetTabOrientation() )
588 wxFAIL_MSG(_T("unknown tab orientation"));
592 if ( pt
.y
> rectTabs
.GetBottom() )
597 if ( pt
.y
< rectTabs
.y
)
602 if ( pt
.x
> rectTabs
.GetRight() )
607 if ( pt
.x
< rectTabs
.x
)
612 for ( size_t n
= m_firstVisible
; n
< m_lastVisible
; n
++ )
614 GetTabSize(n
, &rectTabs
.width
, &rectTabs
.height
);
616 if ( rectTabs
.Inside(pt
) )
619 // move the rectTabs to the next tab
621 rectTabs
.y
+= rectTabs
.height
;
623 rectTabs
.x
+= rectTabs
.width
;
629 bool wxNotebook::IsVertical() const
631 wxDirection dir
= GetTabOrientation();
633 return dir
== wxLEFT
|| dir
== wxRIGHT
;
636 wxDirection
wxNotebook::GetTabOrientation() const
638 long style
= GetWindowStyle();
639 if ( style
& wxNB_BOTTOM
)
641 else if ( style
& wxNB_RIGHT
)
643 else if ( style
& wxNB_LEFT
)
646 // wxNB_TOP == 0 so we don't have to test for it
650 wxRect
wxNotebook::GetTabRect(int page
) const
653 wxCHECK_MSG( IS_VALID_PAGE(page
), rect
, _T("invalid notebook page") );
655 // calc the size of this tab and of the preceding ones
656 wxCoord widthThis
, widthBefore
;
657 if ( FixedSizeTabs() )
659 widthThis
= m_widthMax
;
660 widthBefore
= page
*m_widthMax
;
665 for ( int n
= 0; n
< page
; n
++ )
667 widthBefore
+= m_widths
[n
];
670 widthThis
= m_widths
[page
];
673 rect
= GetTabsPart();
676 rect
.y
+= widthBefore
- m_offset
;
677 rect
.height
= widthThis
;
681 rect
.x
+= widthBefore
- m_offset
;
682 rect
.width
= widthThis
;
688 wxRect
wxNotebook::GetAllTabsRect() const
692 if ( GetPageCount() )
694 const wxSize indent
= GetRenderer()->GetTabIndent();
695 wxSize size
= GetClientSize();
699 rect
.width
= m_heightTab
+ indent
.x
;
700 rect
.x
= GetTabOrientation() == wxLEFT
? 0 : size
.x
- rect
.width
;
702 rect
.height
= size
.y
;
708 rect
.height
= m_heightTab
+ indent
.y
;
709 rect
.y
= GetTabOrientation() == wxTOP
? 0 : size
.y
- rect
.height
;
717 wxRect
wxNotebook::GetTabsPart() const
719 wxRect rect
= GetAllTabsRect();
721 wxDirection dir
= GetTabOrientation();
723 const wxSize indent
= GetRenderer()->GetTabIndent();
735 rect
.height
-= indent
.y
;
739 rect
.height
-= indent
.y
;
746 void wxNotebook::GetTabSize(int page
, wxCoord
*w
, wxCoord
*h
) const
748 wxCHECK_RET( w
&& h
, _T("NULL pointer in GetTabSize") );
752 // width and height have inverted meaning
758 // height is always fixed
761 // width may also be fixed and be the same for all tabs
762 *w
= GetTabWidth(page
);
765 void wxNotebook::SetTabSize(const wxSize
& sz
)
767 wxCHECK_RET( FixedSizeTabs(), _T("SetTabSize() ignored") );
781 wxSize
wxNotebook::CalcTabSize(int page
) const
783 // NB: don't use m_widthMax, m_heightTab or m_widths here because this
784 // method is called to calculate them
788 wxCHECK_MSG( IS_VALID_PAGE(page
), size
, _T("invalid notebook page") );
790 GetTextExtent(m_titles
[page
], &size
.x
, &size
.y
);
792 if ( HasImage(page
) )
795 m_imageList
->GetSize(m_images
[page
], sizeImage
.x
, sizeImage
.y
);
797 size
.x
+= sizeImage
.x
+ 5; // FIXME: hard coded margin
799 if ( sizeImage
.y
> size
.y
)
800 size
.y
= sizeImage
.y
;
803 size
.x
+= 2*m_sizePad
.x
;
804 size
.y
+= 2*m_sizePad
.y
;
809 void wxNotebook::ResizeTab(int page
)
811 wxSize sizeTab
= CalcTabSize(page
);
813 // we only need full relayout if the page size changes
814 bool needsRelayout
= FALSE
;
819 wxCoord tmp
= sizeTab
.x
;
820 sizeTab
.x
= sizeTab
.y
;
824 if ( sizeTab
.y
> m_heightTab
)
826 needsRelayout
= TRUE
;
828 m_heightTab
= sizeTab
.y
;
831 m_widths
[page
] = sizeTab
.x
;
833 if ( sizeTab
.x
> m_widthMax
)
834 m_widthMax
= sizeTab
.x
;
836 // the total of the tabs has changed too
845 void wxNotebook::SetPadding(const wxSize
& padding
)
847 if ( padding
!= m_sizePad
)
855 void wxNotebook::Relayout()
857 if ( GetPageCount() )
863 if ( m_sel
!= INVALID_PAGE
)
865 // resize the currently shown page
866 wxRect rectPage
= GetPageRect();
868 m_pages
[m_sel
]->SetSize(rectPage
);
870 // also scroll it into view if needed (note that m_lastVisible
871 // was updated by the call to UpdateSpinBtn() above, this is why it
875 if ( m_sel
< m_firstVisible
)
877 // selection is to the left of visible part of tabs
880 else if ( m_sel
> m_lastFullyVisible
)
882 // selection is to the right of visible part of tabs
888 else // we have no pages
890 // just refresh everything
895 wxRect
wxNotebook::GetPagePart() const
897 wxRect rectPage
= GetClientRect();
899 if ( GetPageCount() )
901 wxRect rectTabs
= GetAllTabsRect();
902 wxDirection dir
= GetTabOrientation();
905 rectPage
.width
-= rectTabs
.width
;
907 rectPage
.x
+= rectTabs
.width
;
911 rectPage
.height
-= rectTabs
.height
;
913 rectPage
.y
+= rectTabs
.height
;
916 //else: no pages at all
921 wxRect
wxNotebook::GetPageRect() const
923 wxRect rect
= GetPagePart();
925 // leave space for the border
926 wxRect rectBorder
= GetRenderer()->GetBorderDimensions(wxBORDER_RAISED
);
928 // FIXME: hardcoded +2!
929 rect
.Inflate(-(rectBorder
.x
+ rectBorder
.width
+ 2),
930 -(rectBorder
.y
+ rectBorder
.height
+ 2));
935 wxSize
wxNotebook::GetSizeForPage(const wxSize
& size
) const
937 wxSize sizeNb
= size
;
938 wxRect rect
= GetAllTabsRect();
940 sizeNb
.x
+= rect
.width
;
942 sizeNb
.y
+= rect
.height
;
947 void wxNotebook::SetPageSize(const wxSize
& size
)
949 SetClientSize(GetSizeForPage(size
));
952 wxSize
wxNotebook::CalcSizeFromPage(const wxSize
& sizePage
)
954 return AdjustSize(GetSizeForPage(sizePage
));
957 // ----------------------------------------------------------------------------
958 // wxNotebook spin button
959 // ----------------------------------------------------------------------------
961 bool wxNotebook::HasSpinBtn() const
963 return m_spinbtn
&& m_spinbtn
->IsShown();
966 void wxNotebook::CalcLastVisibleTab()
968 bool isVertical
= IsVertical();
970 wxCoord width
= GetClientSize().x
;
972 wxRect rect
= GetTabsPart();
974 size_t count
= GetPageCount();
976 wxCoord widthLast
= 0;
978 for ( n
= m_firstVisible
; n
< count
; n
++ )
980 GetTabSize(n
, &rect
.width
, &rect
.height
);
981 if ( rect
.GetRight() > width
)
986 // remember it to use below
987 widthLast
= rect
.GetRight();
989 // move the rect to the next tab
991 rect
.y
+= rect
.height
;
993 rect
.x
+= rect
.width
;
996 if ( n
== m_firstVisible
)
998 // even the first tab isn't fully visible - but still pretend it is as
999 // we have to show something
1000 m_lastFullyVisible
= m_firstVisible
;
1002 else // more than one tab visible
1004 m_lastFullyVisible
= n
- 1;
1006 // but is it really fully visible? it shouldn't overlap with the spin
1007 // button if it is present (again, even if the first button does
1008 // overlap with it, we pretend that it doesn't as there is not much
1010 if ( (m_lastFullyVisible
> m_firstVisible
) && HasSpinBtn() )
1012 // adjust width to be the width before the spin button
1013 wxSize sizeSpinBtn
= m_spinbtn
->GetSize();
1015 width
-= sizeSpinBtn
.y
;
1017 width
-= sizeSpinBtn
.x
;
1019 if ( widthLast
> width
)
1021 // the last button overlaps with spin button, so take he
1023 m_lastFullyVisible
--;
1030 // everything is visible
1035 // this tab is still (partially) visible, so m_lastVisible is the
1036 // next tab (remember, this is "exclusive" last)
1037 m_lastVisible
= n
+ 1;
1042 void wxNotebook::UpdateSpinBtn()
1044 // first decide if we need a spin button
1047 size_t count
= (size_t)GetPageCount();
1050 // this case is special, get rid of it immediately: everything is
1051 // visible and we don't need any spin buttons
1052 allTabsShown
= TRUE
;
1054 // have to reset them manually as we don't call CalcLastVisibleTab()
1057 m_lastFullyVisible
= 0;
1061 CalcLastVisibleTab();
1063 // if all tabs after the first visible one are shown, it doesn't yet
1064 // mean that all tabs are shown - so we go backwards until we arrive to
1065 // the beginning (then all tabs are indeed shown) or find a tab such
1066 // that not all tabs after it are shown
1067 while ( (m_lastFullyVisible
== count
- 1) && (m_firstVisible
> 0) )
1069 // this is equivalent to ScrollTo(m_firstVisible - 1) but more
1071 m_offset
-= GetTabWidth(m_firstVisible
--);
1073 // reclaculate after m_firstVisible change
1074 CalcLastVisibleTab();
1077 allTabsShown
= m_lastFullyVisible
== count
- 1;
1080 if ( !allTabsShown
)
1084 // create it once only
1085 m_spinbtn
= new wxNotebookSpinBtn(this);
1087 // set the correct value to keep it in sync
1088 m_spinbtn
->SetValue(m_sel
);
1091 // position it correctly
1097 // also set/update the range
1098 m_spinbtn
->SetRange(0, count
- 1);
1100 // update m_lastFullyVisible once again as it might have changed
1101 // because the spin button appeared
1103 // FIXME: might do it more efficiently
1104 CalcLastVisibleTab();
1106 else // all tabs are visible, we don't need spin button
1115 void wxNotebook::PositionSpinBtn()
1121 m_spinbtn
->GetSize(&wBtn
, &hBtn
);
1123 wxRect rectTabs
= GetAllTabsRect();
1126 switch ( GetTabOrientation() )
1129 wxFAIL_MSG(_T("unknown tab orientation"));
1133 x
= rectTabs
.GetRight() - wBtn
;
1134 y
= rectTabs
.GetBottom() - hBtn
;
1138 x
= rectTabs
.GetRight() - wBtn
;
1139 y
= rectTabs
.GetTop();
1143 x
= rectTabs
.GetRight() - wBtn
;
1144 y
= rectTabs
.GetBottom() - hBtn
;
1148 x
= rectTabs
.GetLeft();
1149 y
= rectTabs
.GetBottom() - hBtn
;
1153 m_spinbtn
->Move(x
, y
);
1156 // ----------------------------------------------------------------------------
1157 // wxNotebook scrolling
1158 // ----------------------------------------------------------------------------
1160 void wxNotebook::ScrollTo(int page
)
1162 wxCHECK_RET( IS_VALID_PAGE(page
), _T("invalid notebook page") );
1164 // set the first visible tab and offset (easy)
1165 m_firstVisible
= (size_t)page
;
1167 for ( size_t n
= 0; n
< m_firstVisible
; n
++ )
1169 m_offset
+= GetTabWidth(n
);
1172 // find the last visible tab too
1173 CalcLastVisibleTab();
1178 void wxNotebook::ScrollLastTo(int page
)
1180 wxCHECK_RET( IS_VALID_PAGE(page
), _T("invalid notebook page") );
1182 // go backwards until we find the first tab which can be made visible
1183 // without hiding the given one
1184 wxSize size
= GetClientSize();
1185 wxCoord widthAll
= IsVertical() ? size
.y
: size
.x
,
1186 widthTabs
= GetTabWidth(page
);
1188 // the total width is less than the width of the window if we have the spin
1192 wxSize sizeSpinBtn
= m_spinbtn
->GetSize();
1194 widthAll
-= sizeSpinBtn
.y
;
1196 widthAll
-= sizeSpinBtn
.x
;
1199 m_firstVisible
= page
;
1200 while ( (m_firstVisible
> 0) && (widthTabs
<= widthAll
) )
1202 widthTabs
+= GetTabWidth(--m_firstVisible
);
1205 if ( widthTabs
> widthAll
)
1207 // take one step back (that it is forward) if we can
1208 if ( m_firstVisible
< (size_t)GetPageCount() - 1 )
1213 ScrollTo(m_firstVisible
);
1215 // consitency check: the page we were asked to show should be shown
1216 wxASSERT_MSG( (size_t)page
< m_lastVisible
, _T("bug in ScrollLastTo") );
1219 // ----------------------------------------------------------------------------
1220 // wxNotebook sizing/moving
1221 // ----------------------------------------------------------------------------
1223 wxSize
wxNotebook::DoGetBestClientSize() const
1225 // calculate the max page size
1228 size_t count
= GetPageCount();
1231 for ( size_t n
= 0; n
< count
; n
++ )
1233 wxSize sizePage
= m_pages
[n
]->GetSize();
1235 if ( size
.x
< sizePage
.x
)
1236 size
.x
= sizePage
.x
;
1237 if ( size
.y
< sizePage
.y
)
1238 size
.y
= sizePage
.y
;
1243 // use some arbitrary default size
1248 return GetSizeForPage(size
);
1251 void wxNotebook::DoMoveWindow(int x
, int y
, int width
, int height
)
1253 wxControl::DoMoveWindow(x
, y
, width
, height
);
1255 // move the spin ctrl too (NOP if it doesn't exist)
1259 void wxNotebook::DoSetSize(int x
, int y
,
1260 int width
, int height
,
1263 wxSize old_client_size
= GetClientSize();
1265 wxControl::DoSetSize(x
, y
, width
, height
, sizeFlags
);
1267 wxSize new_client_size
= GetClientSize();
1269 if (old_client_size
!= new_client_size
)
1273 // ----------------------------------------------------------------------------
1274 // wxNotebook input processing
1275 // ----------------------------------------------------------------------------
1277 bool wxNotebook::PerformAction(const wxControlAction
& action
,
1279 const wxString
& strArg
)
1281 if ( action
== wxACTION_NOTEBOOK_NEXT
)
1282 ChangePage(GetNextPage(TRUE
));
1283 else if ( action
== wxACTION_NOTEBOOK_PREV
)
1284 ChangePage(GetNextPage(FALSE
));
1285 else if ( action
== wxACTION_NOTEBOOK_GOTO
)
1286 ChangePage((int)numArg
);
1288 return wxControl::PerformAction(action
, numArg
, strArg
);
1293 // ----------------------------------------------------------------------------
1294 // wxStdNotebookInputHandler
1295 // ----------------------------------------------------------------------------
1297 wxStdNotebookInputHandler::wxStdNotebookInputHandler(wxInputHandler
*inphand
)
1298 : wxStdInputHandler(inphand
)
1302 bool wxStdNotebookInputHandler::HandleKey(wxInputConsumer
*consumer
,
1303 const wxKeyEvent
& event
,
1306 // ignore the key releases
1309 wxNotebook
*notebook
= wxStaticCast(consumer
->GetInputWindow(), wxNotebook
);
1312 wxControlAction action
;
1313 switch ( event
.GetKeyCode() )
1316 if ( notebook
->IsVertical() )
1317 action
= wxACTION_NOTEBOOK_PREV
;
1321 if ( !notebook
->IsVertical() )
1322 action
= wxACTION_NOTEBOOK_PREV
;
1326 if ( notebook
->IsVertical() )
1327 action
= wxACTION_NOTEBOOK_NEXT
;
1331 if ( !notebook
->IsVertical() )
1332 action
= wxACTION_NOTEBOOK_NEXT
;
1336 action
= wxACTION_NOTEBOOK_GOTO
;
1337 // page = 0; -- already has this value
1341 action
= wxACTION_NOTEBOOK_GOTO
;
1342 page
= notebook
->GetPageCount() - 1;
1348 return consumer
->PerformAction(action
, page
);
1352 return wxStdInputHandler::HandleKey(consumer
, event
, pressed
);
1355 bool wxStdNotebookInputHandler::HandleMouse(wxInputConsumer
*consumer
,
1356 const wxMouseEvent
& event
)
1358 if ( event
.ButtonDown(1) )
1360 wxNotebook
*notebook
= wxStaticCast(consumer
->GetInputWindow(), wxNotebook
);
1361 int page
= notebook
->HitTest(event
.GetPosition());
1364 consumer
->PerformAction(wxACTION_NOTEBOOK_GOTO
, page
);
1370 return wxStdInputHandler::HandleMouse(consumer
, event
);
1373 bool wxStdNotebookInputHandler::HandleMouseMove(wxInputConsumer
*consumer
,
1374 const wxMouseEvent
& event
)
1376 return wxStdInputHandler::HandleMouseMove(consumer
, event
);
1379 bool wxStdNotebookInputHandler::HandleFocus(wxInputConsumer
*consumer
,
1380 const wxFocusEvent
& event
)
1382 HandleFocusChange(consumer
);
1387 bool wxStdNotebookInputHandler::HandleActivation(wxInputConsumer
*consumer
,
1388 bool WXUNUSED(activated
))
1390 // we react to the focus change in the same way as to the [de]activation
1391 HandleFocusChange(consumer
);
1396 void wxStdNotebookInputHandler::HandleFocusChange(wxInputConsumer
*consumer
)
1398 wxNotebook
*notebook
= wxStaticCast(consumer
->GetInputWindow(), wxNotebook
);
1399 notebook
->RefreshCurrent();
1402 #endif // wxUSE_NOTEBOOK