1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/ribbon/page.cpp
3 // Purpose: Container for ribbon-bar-style interface panels
4 // Author: Peter Cawley
8 // Copyright: (C) Peter Cawley
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11 #include "wx/wxprec.h"
19 #include "wx/ribbon/page.h"
20 #include "wx/ribbon/art.h"
21 #include "wx/ribbon/bar.h"
22 #include "wx/dcbuffer.h"
28 #include "wx/msw/private.h"
31 static int GetSizeInOrientation(wxSize size
, wxOrientation orientation
);
33 // As scroll buttons need to be rendered on top of a page's child windows, the
34 // buttons themselves have to be proper child windows (rather than just painted
35 // onto the page). In order to get proper clipping of a page's children (with
36 // regard to the scroll button), the scroll buttons are created as children of
37 // the ribbon bar rather than children of the page. This could not have been
38 // achieved by creating buttons as children of the page and then doing some Z-order
39 // manipulation, as this causes problems on win32 due to ribbon panels having the
40 // transparent flag set.
41 class wxRibbonPageScrollButton
: public wxRibbonControl
44 wxRibbonPageScrollButton(wxRibbonPage
* sibling
,
45 wxWindowID id
= wxID_ANY
,
46 const wxPoint
& pos
= wxDefaultPosition
,
47 const wxSize
& size
= wxDefaultSize
,
50 virtual ~wxRibbonPageScrollButton();
53 virtual wxBorder
GetDefaultBorder() const { return wxBORDER_NONE
; }
55 void OnEraseBackground(wxEraseEvent
& evt
);
56 void OnPaint(wxPaintEvent
& evt
);
57 void OnMouseEnter(wxMouseEvent
& evt
);
58 void OnMouseLeave(wxMouseEvent
& evt
);
59 void OnMouseDown(wxMouseEvent
& evt
);
60 void OnMouseUp(wxMouseEvent
& evt
);
62 wxRibbonPage
* m_sibling
;
65 DECLARE_CLASS(wxRibbonPageScrollButton
)
69 IMPLEMENT_CLASS(wxRibbonPageScrollButton
, wxRibbonControl
)
71 BEGIN_EVENT_TABLE(wxRibbonPageScrollButton
, wxRibbonControl
)
72 EVT_ENTER_WINDOW(wxRibbonPageScrollButton::OnMouseEnter
)
73 EVT_ERASE_BACKGROUND(wxRibbonPageScrollButton::OnEraseBackground
)
74 EVT_LEAVE_WINDOW(wxRibbonPageScrollButton::OnMouseLeave
)
75 EVT_LEFT_DOWN(wxRibbonPageScrollButton::OnMouseDown
)
76 EVT_LEFT_UP(wxRibbonPageScrollButton::OnMouseUp
)
77 EVT_PAINT(wxRibbonPageScrollButton::OnPaint
)
80 wxRibbonPageScrollButton::wxRibbonPageScrollButton(wxRibbonPage
* sibling
,
84 long style
) : wxRibbonControl(sibling
->GetParent(), id
, pos
, size
, wxBORDER_NONE
)
86 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
88 m_flags
= (style
& wxRIBBON_SCROLL_BTN_DIRECTION_MASK
) | wxRIBBON_SCROLL_BTN_FOR_PAGE
;
91 wxRibbonPageScrollButton::~wxRibbonPageScrollButton()
95 void wxRibbonPageScrollButton::OnEraseBackground(wxEraseEvent
& WXUNUSED(evt
))
97 // Do nothing - all painting done in main paint handler
100 void wxRibbonPageScrollButton::OnPaint(wxPaintEvent
& WXUNUSED(evt
))
102 wxAutoBufferedPaintDC
dc(this);
105 m_art
->DrawScrollButton(dc
, this, GetSize(), m_flags
);
109 void wxRibbonPageScrollButton::OnMouseEnter(wxMouseEvent
& WXUNUSED(evt
))
111 m_flags
|= wxRIBBON_SCROLL_BTN_HOVERED
;
115 void wxRibbonPageScrollButton::OnMouseLeave(wxMouseEvent
& WXUNUSED(evt
))
117 m_flags
&= ~wxRIBBON_SCROLL_BTN_HOVERED
;
118 m_flags
&= ~wxRIBBON_SCROLL_BTN_ACTIVE
;
122 void wxRibbonPageScrollButton::OnMouseDown(wxMouseEvent
& WXUNUSED(evt
))
124 m_flags
|= wxRIBBON_SCROLL_BTN_ACTIVE
;
128 void wxRibbonPageScrollButton::OnMouseUp(wxMouseEvent
& WXUNUSED(evt
))
130 if(m_flags
& wxRIBBON_SCROLL_BTN_ACTIVE
)
132 m_flags
&= ~wxRIBBON_SCROLL_BTN_ACTIVE
;
134 switch(m_flags
& wxRIBBON_SCROLL_BTN_DIRECTION_MASK
)
136 case wxRIBBON_SCROLL_BTN_DOWN
:
137 case wxRIBBON_SCROLL_BTN_RIGHT
:
138 m_sibling
->ScrollLines(1);
140 case wxRIBBON_SCROLL_BTN_UP
:
141 case wxRIBBON_SCROLL_BTN_LEFT
:
142 m_sibling
->ScrollLines(-1);
150 IMPLEMENT_CLASS(wxRibbonPage
, wxRibbonControl
)
152 BEGIN_EVENT_TABLE(wxRibbonPage
, wxRibbonControl
)
153 EVT_ERASE_BACKGROUND(wxRibbonPage::OnEraseBackground
)
154 EVT_PAINT(wxRibbonPage::OnPaint
)
155 EVT_SIZE(wxRibbonPage::OnSize
)
158 wxRibbonPage::wxRibbonPage()
160 m_scroll_left_btn
= NULL
;
161 m_scroll_right_btn
= NULL
;
163 m_scroll_buttons_visible
= false;
166 wxRibbonPage::wxRibbonPage(wxRibbonBar
* parent
,
168 const wxString
& label
,
169 const wxBitmap
& icon
,
170 long WXUNUSED(style
))
171 : wxRibbonControl(parent
, id
, wxDefaultPosition
, wxDefaultSize
, wxBORDER_NONE
)
173 CommonInit(label
, icon
);
176 wxRibbonPage::~wxRibbonPage()
178 delete[] m_size_calc_array
;
181 bool wxRibbonPage::Create(wxRibbonBar
* parent
,
183 const wxString
& label
,
184 const wxBitmap
& icon
,
185 long WXUNUSED(style
))
187 if(!wxRibbonControl::Create(parent
, id
, wxDefaultPosition
, wxDefaultSize
, wxBORDER_NONE
))
190 CommonInit(label
, icon
);
195 void wxRibbonPage::CommonInit(const wxString
& label
, const wxBitmap
& icon
)
200 m_old_size
= wxSize(0, 0);
202 m_scroll_left_btn
= NULL
;
203 m_scroll_right_btn
= NULL
;
204 m_size_calc_array
= NULL
;
205 m_size_calc_array_size
= 0;
207 m_scroll_buttons_visible
= false;
209 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
211 wxDynamicCast(GetParent(), wxRibbonBar
)->AddPage(this);
214 void wxRibbonPage::SetArtProvider(wxRibbonArtProvider
* art
)
217 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
219 node
= node
->GetNext() )
221 wxWindow
* child
= node
->GetData();
222 wxRibbonControl
* ribbon_child
= wxDynamicCast(child
, wxRibbonControl
);
225 ribbon_child
->SetArtProvider(art
);
230 void wxRibbonPage::AdjustRectToIncludeScrollButtons(wxRect
* rect
) const
232 if(m_scroll_buttons_visible
)
234 if(GetMajorAxis() == wxVERTICAL
)
236 if(m_scroll_left_btn
)
238 rect
->SetY(rect
->GetY() -
239 m_scroll_left_btn
->GetSize().GetHeight());
240 rect
->SetHeight(rect
->GetHeight() +
241 m_scroll_left_btn
->GetSize().GetHeight());
243 if(m_scroll_right_btn
)
245 rect
->SetHeight(rect
->GetHeight() +
246 m_scroll_right_btn
->GetSize().GetHeight());
251 if(m_scroll_left_btn
)
253 rect
->SetX(rect
->GetX() -
254 m_scroll_left_btn
->GetSize().GetWidth());
255 rect
->SetWidth(rect
->GetWidth() +
256 m_scroll_left_btn
->GetSize().GetWidth());
258 if(m_scroll_right_btn
)
260 rect
->SetWidth(rect
->GetWidth() +
261 m_scroll_right_btn
->GetSize().GetWidth());
267 void wxRibbonPage::OnEraseBackground(wxEraseEvent
& WXUNUSED(evt
))
269 // All painting done in main paint handler to minimise flicker
272 void wxRibbonPage::OnPaint(wxPaintEvent
& WXUNUSED(evt
))
274 // No foreground painting done by the page itself, but a paint DC
275 // must be created anyway.
276 wxAutoBufferedPaintDC
dc(this);
277 wxRect
rect(GetSize());
278 AdjustRectToIncludeScrollButtons(&rect
);
279 m_art
->DrawPageBackground(dc
, this, rect
);
282 wxOrientation
wxRibbonPage::GetMajorAxis() const
284 if(m_art
&& (m_art
->GetFlags() & wxRIBBON_BAR_FLOW_VERTICAL
))
294 bool wxRibbonPage::ScrollLines(int lines
)
296 return ScrollPixels(lines
* 8);
299 bool wxRibbonPage::ScrollPixels(int pixels
)
303 if(m_scroll_amount
== 0)
305 if(m_scroll_amount
< -pixels
)
306 pixels
= -m_scroll_amount
;
310 if(m_scroll_amount
== m_scroll_amount_limit
)
312 if(m_scroll_amount
+ pixels
> m_scroll_amount_limit
)
313 pixels
= m_scroll_amount_limit
- m_scroll_amount
;
318 m_scroll_amount
+= pixels
;
320 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
322 node
= node
->GetNext() )
324 wxWindow
* child
= node
->GetData();
326 child
->GetPosition(&x
, &y
);
327 if(GetMajorAxis() == wxHORIZONTAL
)
331 child
->SetPosition(wxPoint(x
, y
));
339 void wxRibbonPage::SetSizeWithScrollButtonAdjustment(int x
, int y
, int width
, int height
)
341 if(m_scroll_buttons_visible
)
343 if(GetMajorAxis() == wxHORIZONTAL
)
345 if(m_scroll_left_btn
)
347 int w
= m_scroll_left_btn
->GetSize().GetWidth();
348 m_scroll_left_btn
->SetPosition(wxPoint(x
, y
));
352 if(m_scroll_right_btn
)
354 int w
= m_scroll_right_btn
->GetSize().GetWidth();
356 m_scroll_right_btn
->SetPosition(wxPoint(x
+ width
, y
));
361 if(m_scroll_left_btn
)
363 int h
= m_scroll_left_btn
->GetSize().GetHeight();
364 m_scroll_left_btn
->SetPosition(wxPoint(x
, y
));
368 if(m_scroll_right_btn
)
370 int h
= m_scroll_right_btn
->GetSize().GetHeight();
372 m_scroll_right_btn
->SetPosition(wxPoint(x
, y
+ height
));
376 if (width
< 0) width
= 0;
377 if (height
< 0) height
= 0;
378 SetSize(x
, y
, width
, height
);
381 void wxRibbonPage::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
383 // When a resize triggers the scroll buttons to become visible, the page is resized.
384 // This resize from within a resize event can cause (MSW) wxWidgets some confusion,
385 // and report the 1st size to the 2nd size event. Hence the most recent size is
386 // remembered internally and used in Layout() where appropriate.
388 if(GetMajorAxis() == wxHORIZONTAL
)
390 m_size_in_major_axis_for_children
= width
;
391 if(m_scroll_buttons_visible
)
393 if(m_scroll_left_btn
)
394 m_size_in_major_axis_for_children
+= m_scroll_left_btn
->GetSize().GetWidth();
395 if(m_scroll_right_btn
)
396 m_size_in_major_axis_for_children
+= m_scroll_right_btn
->GetSize().GetWidth();
401 m_size_in_major_axis_for_children
= height
;
402 if(m_scroll_buttons_visible
)
404 if(m_scroll_left_btn
)
405 m_size_in_major_axis_for_children
+= m_scroll_left_btn
->GetSize().GetHeight();
406 if(m_scroll_right_btn
)
407 m_size_in_major_axis_for_children
+= m_scroll_right_btn
->GetSize().GetHeight();
411 wxRibbonControl::DoSetSize(x
, y
, width
, height
, sizeFlags
);
414 void wxRibbonPage::OnSize(wxSizeEvent
& evt
)
416 wxSize new_size
= evt
.GetSize();
421 wxRect invalid_rect
= m_art
->GetPageBackgroundRedrawArea(temp_dc
, this, m_old_size
, new_size
);
422 Refresh(true, &invalid_rect
);
425 m_old_size
= new_size
;
427 if(new_size
.GetX() > 0 && new_size
.GetY() > 0)
433 // Simplify other calculations by pretending new size is zero in both
436 // When size == 0, no point in doing any layout
442 void wxRibbonPage::RemoveChild(wxWindowBase
*child
)
444 // Remove all references to the child from the collapse stack
445 size_t count
= m_collapse_stack
.GetCount();
447 for(src
= 0, dst
= 0; src
< count
; ++src
, ++dst
)
449 wxRibbonControl
*item
= m_collapse_stack
.Item(src
);
460 m_collapse_stack
.Item(dst
) = item
;
465 m_collapse_stack
.RemoveAt(dst
, src
- dst
);
468 // ... and then proceed as normal
469 wxRibbonControl::RemoveChild(child
);
472 bool wxRibbonPage::Realize()
476 m_collapse_stack
.Clear();
477 for (wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
479 node
= node
->GetNext())
481 wxRibbonControl
* child
= wxDynamicCast(node
->GetData(), wxRibbonControl
);
486 if(!child
->Realize())
491 PopulateSizeCalcArray(&wxWindow::GetMinSize
);
493 return DoActualLayout() && status
;
496 void wxRibbonPage::PopulateSizeCalcArray(wxSize (wxWindow::*get_size
)(void) const)
498 wxSize parentSize
= GetSize();
499 parentSize
.x
-= m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_LEFT_SIZE
);
500 parentSize
.x
-= m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_RIGHT_SIZE
);
501 parentSize
.y
-= m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_TOP_SIZE
);
502 parentSize
.y
-= m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_BOTTOM_SIZE
);
504 if(m_size_calc_array_size
!= GetChildren().GetCount())
506 delete[] m_size_calc_array
;
507 m_size_calc_array_size
= GetChildren().GetCount();
508 m_size_calc_array
= new wxSize
[m_size_calc_array_size
];
511 wxSize
* node_size
= m_size_calc_array
;
512 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
514 node
= node
->GetNext(), ++node_size
)
516 wxWindow
* child
= node
->GetData();
517 wxRibbonPanel
* panel
= wxDynamicCast(child
, wxRibbonPanel
);
518 if (panel
&& panel
->GetFlags() & wxRIBBON_PANEL_FLEXIBLE
)
519 *node_size
= panel
->GetBestSizeForParentSize(parentSize
);
521 *node_size
= (child
->*get_size
)();
525 bool wxRibbonPage::Layout()
527 if(GetChildren().GetCount() == 0)
533 PopulateSizeCalcArray(&wxWindow::GetSize
);
534 return DoActualLayout();
538 bool wxRibbonPage::DoActualLayout()
540 wxPoint
origin(m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_LEFT_SIZE
), m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_TOP_SIZE
));
541 wxOrientation major_axis
= GetMajorAxis();
545 if(major_axis
== wxHORIZONTAL
)
547 gap
= m_art
->GetMetric(wxRIBBON_ART_PANEL_X_SEPARATION_SIZE
);
548 minor_axis_size
= GetSize().GetHeight() - origin
.y
- m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_BOTTOM_SIZE
);
549 available_space
= m_size_in_major_axis_for_children
- m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_RIGHT_SIZE
) - origin
.x
;
553 gap
= m_art
->GetMetric(wxRIBBON_ART_PANEL_Y_SEPARATION_SIZE
);
554 minor_axis_size
= GetSize().GetWidth() - origin
.x
- m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_RIGHT_SIZE
);
555 available_space
= m_size_in_major_axis_for_children
- m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_BOTTOM_SIZE
) - origin
.y
;
557 if (minor_axis_size
< 0) minor_axis_size
= 0;
559 for(size_index
= 0; size_index
< m_size_calc_array_size
; ++size_index
)
561 if(major_axis
== wxHORIZONTAL
)
563 available_space
-= m_size_calc_array
[size_index
].GetWidth();
564 m_size_calc_array
[size_index
].SetHeight(minor_axis_size
);
568 available_space
-= m_size_calc_array
[size_index
].GetHeight();
569 m_size_calc_array
[size_index
].SetWidth(minor_axis_size
);
572 available_space
-= gap
;
574 bool todo_hide_scroll_buttons
= false;
575 bool todo_show_scroll_buttons
= false;
576 if(available_space
>= 0)
578 if(m_scroll_buttons_visible
)
579 todo_hide_scroll_buttons
= true;
580 if(available_space
> 0)
581 ExpandPanels(major_axis
, available_space
);
585 if(m_scroll_buttons_visible
)
587 // Scroll buttons already visible - not going to be able to downsize any more
588 m_scroll_amount_limit
= -available_space
;
589 if(m_scroll_amount
> m_scroll_amount_limit
)
591 m_scroll_amount
= m_scroll_amount_limit
;
592 todo_show_scroll_buttons
= true;
597 if(!CollapsePanels(major_axis
, -available_space
))
600 m_scroll_amount_limit
= -available_space
;
601 todo_show_scroll_buttons
= true;
605 if(m_scroll_buttons_visible
)
607 if(major_axis
== wxHORIZONTAL
)
609 origin
.x
-= m_scroll_amount
;
610 if(m_scroll_left_btn
)
611 origin
.x
-= m_scroll_left_btn
->GetSize().GetWidth();
615 origin
.y
-= m_scroll_amount
;
616 if(m_scroll_left_btn
)
617 origin
.y
-= m_scroll_left_btn
->GetSize().GetHeight();
621 for(wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
623 node
= node
->GetNext(), ++size_index
)
625 wxWindow
* child
= node
->GetData();
626 int w
= m_size_calc_array
[size_index
].GetWidth();
627 int h
= m_size_calc_array
[size_index
].GetHeight();
628 child
->SetSize(origin
.x
, origin
.y
, w
, h
);
629 if(major_axis
== wxHORIZONTAL
)
639 if(todo_show_scroll_buttons
)
641 else if(todo_hide_scroll_buttons
)
643 else if(m_scroll_buttons_visible
)
650 bool wxRibbonPage::Show(bool show
)
652 if(m_scroll_left_btn
)
653 m_scroll_left_btn
->Show(show
);
654 if(m_scroll_right_btn
)
655 m_scroll_right_btn
->Show(show
);
656 return wxRibbonControl::Show(show
);
659 void wxRibbonPage::HideScrollButtons()
662 m_scroll_amount_limit
= 0;
666 void wxRibbonPage::ShowScrollButtons()
668 bool show_left
= true;
669 bool show_right
= true;
670 bool reposition
= false;
671 if(m_scroll_amount
== 0)
675 if(m_scroll_amount
>= m_scroll_amount_limit
)
678 m_scroll_amount
= m_scroll_amount_limit
;
680 m_scroll_buttons_visible
= show_left
|| show_right
;
687 if(GetMajorAxis() == wxHORIZONTAL
)
689 direction
= wxRIBBON_SCROLL_BTN_LEFT
;
690 size
= m_art
->GetScrollButtonMinimumSize(temp_dc
, GetParent(), direction
);
691 size
.SetHeight(GetSize().GetHeight());
695 direction
= wxRIBBON_SCROLL_BTN_UP
;
696 size
= m_art
->GetScrollButtonMinimumSize(temp_dc
, GetParent(), direction
);
697 size
.SetWidth(GetSize().GetWidth());
699 if (m_scroll_left_btn
)
701 m_scroll_left_btn
->SetSize(size
);
705 m_scroll_left_btn
= new wxRibbonPageScrollButton(this, wxID_ANY
, GetPosition(), size
, direction
);
710 m_scroll_left_btn
->Hide();
715 if(m_scroll_left_btn
!= NULL
)
717 m_scroll_left_btn
->Destroy();
718 m_scroll_left_btn
= NULL
;
728 if(GetMajorAxis() == wxHORIZONTAL
)
730 direction
= wxRIBBON_SCROLL_BTN_RIGHT
;
731 size
= m_art
->GetScrollButtonMinimumSize(temp_dc
, GetParent(), direction
);
732 size
.SetHeight(GetSize().GetHeight());
736 direction
= wxRIBBON_SCROLL_BTN_DOWN
;
737 size
= m_art
->GetScrollButtonMinimumSize(temp_dc
, GetParent(), direction
);
738 size
.SetWidth(GetSize().GetWidth());
740 wxPoint initial_pos
= GetPosition() + GetSize() - size
;
741 if (m_scroll_right_btn
)
743 m_scroll_right_btn
->SetSize(size
);
747 m_scroll_right_btn
= new wxRibbonPageScrollButton(this, wxID_ANY
, initial_pos
, size
, direction
);
752 m_scroll_right_btn
->Hide();
757 if(m_scroll_right_btn
!= NULL
)
759 m_scroll_right_btn
->Destroy();
760 m_scroll_right_btn
= NULL
;
767 wxDynamicCast(GetParent(), wxRibbonBar
)->RepositionPage(this);
771 static int GetSizeInOrientation(wxSize size
, wxOrientation orientation
)
775 case wxHORIZONTAL
: return size
.GetWidth();
776 case wxVERTICAL
: return size
.GetHeight();
777 case wxBOTH
: return size
.GetWidth() * size
.GetHeight();
782 bool wxRibbonPage::ExpandPanels(wxOrientation direction
, int maximum_amount
)
784 bool expanded_something
= false;
785 while(maximum_amount
> 0)
787 int smallest_size
= INT_MAX
;
788 wxRibbonPanel
* smallest_panel
= NULL
;
789 wxSize
* smallest_panel_size
= NULL
;
790 wxSize
* panel_size
= m_size_calc_array
;
791 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
793 node
= node
->GetNext(), ++panel_size
)
795 wxRibbonPanel
* panel
= wxDynamicCast(node
->GetData(), wxRibbonPanel
);
800 if (panel
->GetFlags() & wxRIBBON_PANEL_FLEXIBLE
)
802 // Don't change if it's flexible since we already calculated the
803 // correct size for the panel.
805 else if(panel
->IsSizingContinuous())
807 int size
= GetSizeInOrientation(*panel_size
, direction
);
808 if(size
< smallest_size
)
810 smallest_size
= size
;
811 smallest_panel
= panel
;
812 smallest_panel_size
= panel_size
;
817 int size
= GetSizeInOrientation(*panel_size
, direction
);
818 if(size
< smallest_size
)
820 wxSize larger
= panel
->GetNextLargerSize(direction
, *panel_size
);
821 if(larger
!= (*panel_size
) && GetSizeInOrientation(larger
, direction
) > size
)
823 smallest_size
= size
;
824 smallest_panel
= panel
;
825 smallest_panel_size
= panel_size
;
830 if(smallest_panel
!= NULL
)
832 if(smallest_panel
->IsSizingContinuous())
834 int amount
= maximum_amount
;
837 // For "large" growth, grow this panel a bit, and then re-allocate
838 // the remainder (which may come to this panel again anyway)
841 if(direction
& wxHORIZONTAL
)
843 smallest_panel_size
->x
+= amount
;
845 if(direction
& wxVERTICAL
)
847 smallest_panel_size
->y
+= amount
;
849 maximum_amount
-= amount
;
850 m_collapse_stack
.Add(smallest_panel
);
851 expanded_something
= true;
855 wxSize larger
= smallest_panel
->GetNextLargerSize(direction
, *smallest_panel_size
);
856 wxSize delta
= larger
- (*smallest_panel_size
);
857 if(GetSizeInOrientation(delta
, direction
) <= maximum_amount
)
859 *smallest_panel_size
= larger
;
860 maximum_amount
-= GetSizeInOrientation(delta
, direction
);
861 m_collapse_stack
.Add(smallest_panel
);
862 expanded_something
= true;
875 return expanded_something
;
878 bool wxRibbonPage::CollapsePanels(wxOrientation direction
, int minimum_amount
)
880 bool collapsed_something
= false;
881 while(minimum_amount
> 0)
883 int largest_size
= 0;
884 wxRibbonPanel
* largest_panel
= NULL
;
885 wxSize
* largest_panel_size
= NULL
;
886 wxSize
* panel_size
= m_size_calc_array
;
887 if(!m_collapse_stack
.IsEmpty())
889 // For a more consistent panel layout, try to collapse panels which
890 // were recently expanded.
891 largest_panel
= wxDynamicCast(m_collapse_stack
.Last(), wxRibbonPanel
);
892 m_collapse_stack
.RemoveAt(m_collapse_stack
.GetCount() - 1);
893 for(wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
895 node
= node
->GetNext(), ++panel_size
)
897 wxRibbonPanel
* panel
= wxDynamicCast(node
->GetData(), wxRibbonPanel
);
898 if(panel
== largest_panel
)
900 largest_panel_size
= panel_size
;
907 for(wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
909 node
= node
->GetNext(), ++panel_size
)
911 wxRibbonPanel
* panel
= wxDynamicCast(node
->GetData(), wxRibbonPanel
);
916 if(panel
->IsSizingContinuous())
918 int size
= GetSizeInOrientation(*panel_size
, direction
);
919 if(size
> largest_size
)
922 largest_panel
= panel
;
923 largest_panel_size
= panel_size
;
928 int size
= GetSizeInOrientation(*panel_size
, direction
);
929 if(size
> largest_size
)
931 wxSize smaller
= panel
->GetNextSmallerSize(direction
, *panel_size
);
932 if(smaller
!= (*panel_size
) &&
933 GetSizeInOrientation(smaller
, direction
) < size
)
936 largest_panel
= panel
;
937 largest_panel_size
= panel_size
;
943 if(largest_panel
!= NULL
)
945 if(largest_panel
->IsSizingContinuous())
947 int amount
= minimum_amount
;
950 // For "large" contraction, reduce this panel a bit, and
951 // then re-allocate the remainder of the quota (which may
952 // come to this panel again anyway)
955 if(direction
& wxHORIZONTAL
)
957 largest_panel_size
->x
-= amount
;
959 if(direction
& wxVERTICAL
)
961 largest_panel_size
->y
-= amount
;
963 minimum_amount
-= amount
;
964 collapsed_something
= true;
968 wxSize smaller
= largest_panel
->GetNextSmallerSize(direction
, *largest_panel_size
);
969 wxSize delta
= (*largest_panel_size
) - smaller
;
970 *largest_panel_size
= smaller
;
971 minimum_amount
-= GetSizeInOrientation(delta
, direction
);
972 collapsed_something
= true;
980 return collapsed_something
;
983 bool wxRibbonPage::DismissExpandedPanel()
985 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
987 node
= node
->GetNext() )
989 wxRibbonPanel
* panel
= wxDynamicCast(node
->GetData(), wxRibbonPanel
);
994 if(panel
->GetExpandedPanel() != NULL
)
996 return panel
->HideExpanded();
1002 wxSize
wxRibbonPage::GetMinSize() const
1004 wxSize
min(wxDefaultCoord
, wxDefaultCoord
);
1006 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1008 node
= node
->GetNext() )
1010 wxWindow
* child
= node
->GetData();
1011 wxSize
child_min(child
->GetMinSize());
1013 min
.x
= wxMax(min
.x
, child_min
.x
);
1014 min
.y
= wxMax(min
.y
, child_min
.y
);
1017 if(GetMajorAxis() == wxHORIZONTAL
)
1019 min
.x
= wxDefaultCoord
;
1020 if(min
.y
!= wxDefaultCoord
)
1022 min
.y
+= m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_TOP_SIZE
) + m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_BOTTOM_SIZE
);
1027 if(min
.x
!= wxDefaultCoord
)
1029 min
.x
+= m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_LEFT_SIZE
) + m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_RIGHT_SIZE
);
1031 min
.y
= wxDefaultCoord
;
1037 wxSize
wxRibbonPage::DoGetBestSize() const
1042 if(GetMajorAxis() == wxHORIZONTAL
)
1044 best
.y
= wxDefaultCoord
;
1046 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1048 node
= node
->GetNext() )
1050 wxWindow
* child
= node
->GetData();
1051 wxSize
child_best(child
->GetBestSize());
1053 if(child_best
.x
!= wxDefaultCoord
)
1055 best
.IncBy(child_best
.x
, 0);
1057 best
.y
= wxMax(best
.y
, child_best
.y
);
1064 best
.IncBy((count
- 1) * m_art
->GetMetric(wxRIBBON_ART_PANEL_X_SEPARATION_SIZE
), 0);
1069 best
.x
= wxDefaultCoord
;
1071 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
1073 node
= node
->GetNext() )
1075 wxWindow
* child
= node
->GetData();
1076 wxSize
child_best(child
->GetBestSize());
1078 best
.x
= wxMax(best
.x
, child_best
.x
);
1079 if(child_best
.y
!= wxDefaultCoord
)
1081 best
.IncBy(0, child_best
.y
);
1089 best
.IncBy(0, (count
- 1) * m_art
->GetMetric(wxRIBBON_ART_PANEL_Y_SEPARATION_SIZE
));
1093 if(best
.x
!= wxDefaultCoord
)
1095 best
.x
+= m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_LEFT_SIZE
) + m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_RIGHT_SIZE
);
1097 if(best
.y
!= wxDefaultCoord
)
1099 best
.y
+= m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_TOP_SIZE
) + m_art
->GetMetric(wxRIBBON_ART_PAGE_BORDER_BOTTOM_SIZE
);
1104 void wxRibbonPage::HideIfExpanded()
1106 wxStaticCast(m_parent
, wxRibbonBar
)->HideIfExpanded();
1109 #endif // wxUSE_RIBBON