Remove all lines containing cvs/svn "$Id$" keyword.
[wxWidgets.git] / src / ribbon / panel.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/ribbon/panel.cpp
3 // Purpose: Ribbon-style container for a group of related tools / controls
4 // Author: Peter Cawley
5 // Modified by:
6 // Created: 2009-05-25
7 // Copyright: (C) Peter Cawley
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 #include "wx/wxprec.h"
12
13 #ifdef __BORLANDC__
14 #pragma hdrstop
15 #endif
16
17 #if wxUSE_RIBBON
18
19 #include "wx/ribbon/panel.h"
20 #include "wx/ribbon/art.h"
21 #include "wx/ribbon/bar.h"
22 #include "wx/dcbuffer.h"
23 #include "wx/display.h"
24 #include "wx/sizer.h"
25
26 #ifndef WX_PRECOMP
27 #include "wx/frame.h"
28 #endif
29
30 #ifdef __WXMSW__
31 #include "wx/msw/private.h"
32 #endif
33
34 wxDEFINE_EVENT(wxEVT_RIBBONPANEL_EXTBUTTON_ACTIVATED, wxRibbonPanelEvent);
35
36 IMPLEMENT_DYNAMIC_CLASS(wxRibbonPanelEvent, wxCommandEvent)
37
38 IMPLEMENT_CLASS(wxRibbonPanel, wxRibbonControl)
39
40 BEGIN_EVENT_TABLE(wxRibbonPanel, wxRibbonControl)
41 EVT_ENTER_WINDOW(wxRibbonPanel::OnMouseEnter)
42 EVT_ERASE_BACKGROUND(wxRibbonPanel::OnEraseBackground)
43 EVT_KILL_FOCUS(wxRibbonPanel::OnKillFocus)
44 EVT_LEAVE_WINDOW(wxRibbonPanel::OnMouseLeave)
45 EVT_MOTION(wxRibbonPanel::OnMotion)
46 EVT_LEFT_DOWN(wxRibbonPanel::OnMouseClick)
47 EVT_PAINT(wxRibbonPanel::OnPaint)
48 EVT_SIZE(wxRibbonPanel::OnSize)
49 END_EVENT_TABLE()
50
51 wxRibbonPanel::wxRibbonPanel() : m_expanded_dummy(NULL), m_expanded_panel(NULL)
52 {
53 }
54
55 wxRibbonPanel::wxRibbonPanel(wxWindow* parent,
56 wxWindowID id,
57 const wxString& label,
58 const wxBitmap& minimised_icon,
59 const wxPoint& pos,
60 const wxSize& size,
61 long style)
62 : wxRibbonControl(parent, id, pos, size, wxBORDER_NONE)
63 {
64 CommonInit(label, minimised_icon, style);
65 }
66
67 wxRibbonPanel::~wxRibbonPanel()
68 {
69 if(m_expanded_panel)
70 {
71 m_expanded_panel->m_expanded_dummy = NULL;
72 m_expanded_panel->GetParent()->Destroy();
73 }
74 }
75
76 bool wxRibbonPanel::Create(wxWindow* parent,
77 wxWindowID id,
78 const wxString& label,
79 const wxBitmap& icon,
80 const wxPoint& pos,
81 const wxSize& size,
82 long style)
83 {
84 if(!wxRibbonControl::Create(parent, id, pos, size, wxBORDER_NONE))
85 {
86 return false;
87 }
88
89 CommonInit(label, icon, style);
90
91 return true;
92 }
93
94 void wxRibbonPanel::SetArtProvider(wxRibbonArtProvider* art)
95 {
96 m_art = art;
97 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
98 node;
99 node = node->GetNext() )
100 {
101 wxWindow* child = node->GetData();
102 wxRibbonControl* ribbon_child = wxDynamicCast(child, wxRibbonControl);
103 if(ribbon_child)
104 {
105 ribbon_child->SetArtProvider(art);
106 }
107 }
108 if(m_expanded_panel)
109 m_expanded_panel->SetArtProvider(art);
110 }
111
112 void wxRibbonPanel::CommonInit(const wxString& label, const wxBitmap& icon, long style)
113 {
114 SetName(label);
115 SetLabel(label);
116
117 m_minimised_size = wxDefaultSize; // Unknown / none
118 m_smallest_unminimised_size = wxDefaultSize;// Unknown / none for IsFullySpecified()
119 m_preferred_expand_direction = wxSOUTH;
120 m_expanded_dummy = NULL;
121 m_expanded_panel = NULL;
122 m_flags = style;
123 m_minimised_icon = icon;
124 m_minimised = false;
125 m_hovered = false;
126 m_ext_button_hovered = false;
127
128 if(m_art == NULL)
129 {
130 wxRibbonControl* parent = wxDynamicCast(GetParent(), wxRibbonControl);
131 if(parent != NULL)
132 {
133 m_art = parent->GetArtProvider();
134 }
135 }
136
137 SetAutoLayout(true);
138 SetBackgroundStyle(wxBG_STYLE_CUSTOM);
139 SetMinSize(wxSize(20, 20));
140 }
141
142 bool wxRibbonPanel::IsMinimised() const
143 {
144 return m_minimised;
145 }
146
147 bool wxRibbonPanel::IsHovered() const
148 {
149 return m_hovered;
150 }
151
152 bool wxRibbonPanel::IsExtButtonHovered() const
153 {
154 return m_ext_button_hovered;
155 }
156
157 void wxRibbonPanel::OnMouseEnter(wxMouseEvent& evt)
158 {
159 TestPositionForHover(evt.GetPosition());
160 }
161
162 void wxRibbonPanel::OnMouseEnterChild(wxMouseEvent& evt)
163 {
164 wxPoint pos = evt.GetPosition();
165 wxWindow *child = wxDynamicCast(evt.GetEventObject(), wxWindow);
166 if(child)
167 {
168 pos += child->GetPosition();
169 TestPositionForHover(pos);
170 }
171 evt.Skip();
172 }
173
174 void wxRibbonPanel::OnMouseLeave(wxMouseEvent& evt)
175 {
176 TestPositionForHover(evt.GetPosition());
177 }
178
179 void wxRibbonPanel::OnMouseLeaveChild(wxMouseEvent& evt)
180 {
181 wxPoint pos = evt.GetPosition();
182 wxWindow *child = wxDynamicCast(evt.GetEventObject(), wxWindow);
183 if(child)
184 {
185 pos += child->GetPosition();
186 TestPositionForHover(pos);
187 }
188 evt.Skip();
189 }
190
191 void wxRibbonPanel::OnMotion(wxMouseEvent& evt)
192 {
193 TestPositionForHover(evt.GetPosition());
194 }
195
196 void wxRibbonPanel::TestPositionForHover(const wxPoint& pos)
197 {
198 bool hovered = false, ext_button_hovered = false;
199 if(pos.x >= 0 && pos.y >= 0)
200 {
201 wxSize size = GetSize();
202 if(pos.x < size.GetWidth() && pos.y < size.GetHeight())
203 {
204 hovered = true;
205 }
206 }
207 if(hovered)
208 {
209 if(HasExtButton())
210 ext_button_hovered = m_ext_button_rect.Contains(pos);
211 else
212 ext_button_hovered = false;
213 }
214 if(hovered != m_hovered || ext_button_hovered != m_ext_button_hovered)
215 {
216 m_hovered = hovered;
217 m_ext_button_hovered = ext_button_hovered;
218 Refresh(false);
219 }
220 }
221
222 void wxRibbonPanel::AddChild(wxWindowBase *child)
223 {
224 wxRibbonControl::AddChild(child);
225
226 // Window enter / leave events count for only the window in question, not
227 // for children of the window. The panel wants to be in the hovered state
228 // whenever the mouse cursor is within its boundary, so the events need to
229 // be attached to children too.
230 child->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)&wxRibbonPanel::OnMouseEnterChild, NULL, this);
231 child->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)&wxRibbonPanel::OnMouseLeaveChild, NULL, this);
232 }
233
234 void wxRibbonPanel::RemoveChild(wxWindowBase *child)
235 {
236 child->Disconnect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)&wxRibbonPanel::OnMouseEnterChild, NULL, this);
237 child->Disconnect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)&wxRibbonPanel::OnMouseLeaveChild, NULL, this);
238
239 wxRibbonControl::RemoveChild(child);
240 }
241
242 bool wxRibbonPanel::HasExtButton()const
243 {
244 wxRibbonBar* bar = GetAncestorRibbonBar();
245 if(bar==NULL)
246 return false;
247 return (m_flags & wxRIBBON_PANEL_EXT_BUTTON) &&
248 (bar->GetWindowStyleFlag() & wxRIBBON_BAR_SHOW_PANEL_EXT_BUTTONS);
249 }
250
251 void wxRibbonPanel::OnSize(wxSizeEvent& evt)
252 {
253 if(GetAutoLayout())
254 Layout();
255
256 evt.Skip();
257 }
258
259 void wxRibbonPanel::DoSetSize(int x, int y, int width, int height, int sizeFlags)
260 {
261 // At least on MSW, changing the size of a window will cause GetSize() to
262 // report the new size, but a size event may not be handled immediately.
263 // If this minimised check was performed in the OnSize handler, then
264 // GetSize() could return a size much larger than the minimised size while
265 // IsMinimised() returns true. This would then affect layout, as the panel
266 // will refuse to grow any larger while in limbo between minimised and non.
267
268 bool minimised = (m_flags & wxRIBBON_PANEL_NO_AUTO_MINIMISE) == 0 &&
269 IsMinimised(wxSize(width, height)); // check if would be at this size
270 if(minimised != m_minimised)
271 {
272 m_minimised = minimised;
273 // Note that for sizers, this routine disallows the use of mixed shown
274 // and hidden controls
275 // TODO ? use some list of user set invisible children to restore status.
276 for (wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
277 node;
278 node = node->GetNext())
279 {
280 node->GetData()->Show(!minimised);
281 }
282
283 Refresh();
284 }
285
286 wxRibbonControl::DoSetSize(x, y, width, height, sizeFlags);
287 }
288
289 // Checks if panel would be minimised at (client size) at_size
290 bool wxRibbonPanel::IsMinimised(wxSize at_size) const
291 {
292 if(GetSizer())
293 {
294 // we have no information on size change direction
295 // so check both
296 wxSize size = GetMinNotMinimisedSize();
297 if(size.x > at_size.x || size.y > at_size.y)
298 return true;
299
300 return false;
301 }
302
303 if(!m_minimised_size.IsFullySpecified())
304 return false;
305
306 return (at_size.GetX() <= m_minimised_size.GetX() &&
307 at_size.GetY() <= m_minimised_size.GetY()) ||
308 at_size.GetX() < m_smallest_unminimised_size.GetX() ||
309 at_size.GetY() < m_smallest_unminimised_size.GetY();
310 }
311
312 void wxRibbonPanel::OnEraseBackground(wxEraseEvent& WXUNUSED(evt))
313 {
314 // All painting done in main paint handler to minimise flicker
315 }
316
317 void wxRibbonPanel::OnPaint(wxPaintEvent& WXUNUSED(evt))
318 {
319 wxAutoBufferedPaintDC dc(this);
320
321 if(m_art != NULL)
322 {
323 if(IsMinimised())
324 {
325 m_art->DrawMinimisedPanel(dc, this, GetSize(), m_minimised_icon_resized);
326 }
327 else
328 {
329 m_art->DrawPanelBackground(dc, this, GetSize());
330 }
331 }
332 }
333
334 bool wxRibbonPanel::IsSizingContinuous() const
335 {
336 // A panel never sizes continuously, even if all of its children can,
337 // as it would appear out of place along side non-continuous panels.
338
339 // JS 2012-03-09: introducing wxRIBBON_PANEL_STRETCH to allow
340 // the panel to fill its parent page. For example we might have
341 // a list of styles in one of the pages, which should stretch to
342 // fill available space.
343 return (m_flags & wxRIBBON_PANEL_STRETCH) != 0;
344 }
345
346 // Finds the best width and height given the parent's width and height
347 wxSize wxRibbonPanel::GetBestSizeForParentSize(const wxSize& parentSize) const
348 {
349 if (GetChildren().GetCount() == 1)
350 {
351 wxWindow* win = GetChildren().GetFirst()->GetData();
352 wxRibbonControl* control = wxDynamicCast(win, wxRibbonControl);
353 if (control)
354 {
355 wxClientDC temp_dc((wxRibbonPanel*) this);
356 wxSize clientParentSize = m_art->GetPanelClientSize(temp_dc, this, parentSize, NULL);
357 wxSize childSize = control->GetBestSizeForParentSize(clientParentSize);
358 wxSize overallSize = m_art->GetPanelSize(temp_dc, this, childSize, NULL);
359 return overallSize;
360 }
361 }
362 return GetSize();
363 }
364
365 wxSize wxRibbonPanel::DoGetNextSmallerSize(wxOrientation direction,
366 wxSize relative_to) const
367 {
368 if(m_expanded_panel != NULL)
369 {
370 // Next size depends upon children, who are currently in the
371 // expanded panel
372 return m_expanded_panel->DoGetNextSmallerSize(direction, relative_to);
373 }
374
375 if(m_art != NULL)
376 {
377 wxClientDC dc((wxRibbonPanel*) this);
378 wxSize child_relative = m_art->GetPanelClientSize(dc, this, relative_to, NULL);
379 wxSize smaller(-1, -1);
380 bool minimise = false;
381
382 if(GetSizer())
383 {
384 // Get smallest non minimised size
385 smaller = GetMinSize();
386 // and adjust to child_relative for parent page
387 if(m_art->GetFlags() & wxRIBBON_BAR_FLOW_VERTICAL)
388 {
389 minimise = (child_relative.y <= smaller.y);
390 if(smaller.x < child_relative.x)
391 smaller.x = child_relative.x;
392 }
393 else
394 {
395 minimise = (child_relative.x <= smaller.x);
396 if(smaller.y < child_relative.y)
397 smaller.y = child_relative.y;
398 }
399 }
400 else if(GetChildren().GetCount() == 1)
401 {
402 // Simple (and common) case of single ribbon child or Sizer
403 wxWindow* child = GetChildren().Item(0)->GetData();
404 wxRibbonControl* ribbon_child = wxDynamicCast(child, wxRibbonControl);
405 if(ribbon_child != NULL)
406 {
407 smaller = ribbon_child->GetNextSmallerSize(direction, child_relative);
408 minimise = (smaller == child_relative);
409 }
410 }
411
412 if(minimise)
413 {
414 if(CanAutoMinimise())
415 {
416 wxSize minimised = m_minimised_size;
417 switch(direction)
418 {
419 case wxHORIZONTAL:
420 minimised.SetHeight(relative_to.GetHeight());
421 break;
422 case wxVERTICAL:
423 minimised.SetWidth(relative_to.GetWidth());
424 break;
425 default:
426 break;
427 }
428 return minimised;
429 }
430 else
431 {
432 return relative_to;
433 }
434 }
435 else if(smaller.IsFullySpecified()) // Use fallback if !(sizer/child = 1)
436 {
437 return m_art->GetPanelSize(dc, this, smaller, NULL);
438 }
439 }
440
441 // Fallback: Decrease by 20% (or minimum size, whichever larger)
442 wxSize current(relative_to);
443 wxSize minimum(GetMinSize());
444 if(direction & wxHORIZONTAL)
445 {
446 current.x = (current.x * 4) / 5;
447 if(current.x < minimum.x)
448 {
449 current.x = minimum.x;
450 }
451 }
452 if(direction & wxVERTICAL)
453 {
454 current.y = (current.y * 4) / 5;
455 if(current.y < minimum.y)
456 {
457 current.y = minimum.y;
458 }
459 }
460 return current;
461 }
462
463 wxSize wxRibbonPanel::DoGetNextLargerSize(wxOrientation direction,
464 wxSize relative_to) const
465 {
466 if(m_expanded_panel != NULL)
467 {
468 // Next size depends upon children, who are currently in the
469 // expanded panel
470 return m_expanded_panel->DoGetNextLargerSize(direction, relative_to);
471 }
472
473 if(IsMinimised(relative_to))
474 {
475 wxSize current = relative_to;
476 wxSize min_size = GetMinNotMinimisedSize();
477 switch(direction)
478 {
479 case wxHORIZONTAL:
480 if(min_size.x > current.x && min_size.y == current.y)
481 return min_size;
482 break;
483 case wxVERTICAL:
484 if(min_size.x == current.x && min_size.y > current.y)
485 return min_size;
486 break;
487 case wxBOTH:
488 if(min_size.x > current.x && min_size.y > current.y)
489 return min_size;
490 break;
491 default:
492 break;
493 }
494 }
495
496 if(m_art != NULL)
497 {
498 wxClientDC dc((wxRibbonPanel*) this);
499 wxSize child_relative = m_art->GetPanelClientSize(dc, this, relative_to, NULL);
500 wxSize larger(-1, -1);
501
502 if(GetSizer())
503 {
504 // We could just let the sizer expand in flow direction but see comment
505 // in IsSizingContinuous()
506 larger = GetPanelSizerBestSize();
507 // and adjust for page in non flow direction
508 if(m_art->GetFlags() & wxRIBBON_BAR_FLOW_VERTICAL)
509 {
510 if(larger.x != child_relative.x)
511 larger.x = child_relative.x;
512 }
513 else if(larger.y != child_relative.y)
514 {
515 larger.y = child_relative.y;
516 }
517 }
518 else if(GetChildren().GetCount() == 1)
519 {
520 // Simple (and common) case of single ribbon child
521 wxWindow* child = GetChildren().Item(0)->GetData();
522 wxRibbonControl* ribbon_child = wxDynamicCast(child, wxRibbonControl);
523 if(ribbon_child != NULL)
524 {
525 larger = ribbon_child->GetNextLargerSize(direction, child_relative);
526 }
527 }
528
529 if(larger.IsFullySpecified()) // Use fallback if !(sizer/child = 1)
530 {
531 if(larger == child_relative)
532 {
533 return relative_to;
534 }
535 else
536 {
537 return m_art->GetPanelSize(dc, this, larger, NULL);
538 }
539 }
540 }
541
542 // Fallback: Increase by 25% (equal to a prior or subsequent 20% decrease)
543 // Note that due to rounding errors, this increase may not exactly equal a
544 // matching decrease - an ideal solution would not have these errors, but
545 // avoiding them is non-trivial unless an increase is by 100% rather than
546 // a fractional amount. This would then be non-ideal as the resizes happen
547 // at very large intervals.
548 wxSize current(relative_to);
549 if(direction & wxHORIZONTAL)
550 {
551 current.x = (current.x * 5 + 3) / 4;
552 }
553 if(direction & wxVERTICAL)
554 {
555 current.y = (current.y * 5 + 3) / 4;
556 }
557 return current;
558 }
559
560 bool wxRibbonPanel::CanAutoMinimise() const
561 {
562 return (m_flags & wxRIBBON_PANEL_NO_AUTO_MINIMISE) == 0
563 && m_minimised_size.IsFullySpecified();
564 }
565
566 wxSize wxRibbonPanel::GetMinSize() const
567 {
568 if(m_expanded_panel != NULL)
569 {
570 // Minimum size depends upon children, who are currently in the
571 // expanded panel
572 return m_expanded_panel->GetMinSize();
573 }
574
575 if(CanAutoMinimise())
576 {
577 return m_minimised_size;
578 }
579 else
580 {
581 return GetMinNotMinimisedSize();
582 }
583 }
584
585 wxSize wxRibbonPanel::GetMinNotMinimisedSize() const
586 {
587 // Ask sizer if present
588 if(GetSizer())
589 {
590 wxClientDC dc((wxRibbonPanel*) this);
591 return m_art->GetPanelSize(dc, this, GetPanelSizerMinSize(), NULL);
592 }
593 else if(GetChildren().GetCount() == 1)
594 {
595 // Common case of single child taking up the entire panel
596 wxWindow* child = GetChildren().Item(0)->GetData();
597 wxClientDC dc((wxRibbonPanel*) this);
598 return m_art->GetPanelSize(dc, this, child->GetMinSize(), NULL);
599 }
600
601 return wxRibbonControl::GetMinSize();
602 }
603
604 wxSize wxRibbonPanel::GetPanelSizerMinSize() const
605 {
606 // Called from Realize() to set m_smallest_unminimised_size and from other
607 // functions to get the minimum size.
608 // The panel will be invisible when minimised and sizer calcs will be 0
609 // Uses m_smallest_unminimised_size in preference to GetSizer()->CalcMin()
610 // to eliminate flicker.
611
612 // Check if is visible and not previously calculated
613 if(IsShown() && !m_smallest_unminimised_size.IsFullySpecified())
614 {
615 return GetSizer()->CalcMin();
616 }
617 // else use previously calculated m_smallest_unminimised_size
618 wxClientDC dc((wxRibbonPanel*) this);
619 return m_art->GetPanelClientSize(dc,
620 this,
621 m_smallest_unminimised_size,
622 NULL);
623 }
624
625 wxSize wxRibbonPanel::GetPanelSizerBestSize() const
626 {
627 wxSize size = GetPanelSizerMinSize();
628 // TODO allow panel to increase its size beyond minimum size
629 // by steps similarly to ribbon control panels (preferred for aesthetics)
630 // or continuously.
631 return size;
632 }
633
634 wxSize wxRibbonPanel::DoGetBestSize() const
635 {
636 // Ask sizer if present
637 if( GetSizer())
638 {
639 wxClientDC dc((wxRibbonPanel*) this);
640 return m_art->GetPanelSize(dc, this, GetPanelSizerBestSize(), NULL);
641 }
642 else if(GetChildren().GetCount() == 1)
643 {
644 // Common case of no sizer and single child taking up the entire panel
645 wxWindow* child = GetChildren().Item(0)->GetData();
646 wxClientDC dc((wxRibbonPanel*) this);
647 return m_art->GetPanelSize(dc, this, child->GetBestSize(), NULL);
648 }
649
650 return wxRibbonControl::DoGetBestSize();
651 }
652
653 bool wxRibbonPanel::Realize()
654 {
655 bool status = true;
656
657 for (wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
658 node;
659 node = node->GetNext())
660 {
661 wxRibbonControl* child = wxDynamicCast(node->GetData(), wxRibbonControl);
662 if(child == NULL)
663 {
664 continue;
665 }
666 if(!child->Realize())
667 {
668 status = false;
669 }
670 }
671
672 wxSize minimum_children_size(0, 0);
673
674 // Ask sizer if there is one present
675 if(GetSizer())
676 {
677 minimum_children_size = GetPanelSizerMinSize();
678 }
679 else if(GetChildren().GetCount() == 1)
680 {
681 minimum_children_size = GetChildren().GetFirst()->GetData()->GetMinSize();
682 }
683
684 if(m_art != NULL)
685 {
686 wxClientDC temp_dc(this);
687
688 m_smallest_unminimised_size =
689 m_art->GetPanelSize(temp_dc, this, minimum_children_size, NULL);
690
691 wxSize bitmap_size;
692 wxSize panel_min_size = GetMinNotMinimisedSize();
693 m_minimised_size = m_art->GetMinimisedPanelMinimumSize(temp_dc, this,
694 &bitmap_size, &m_preferred_expand_direction);
695 if(m_minimised_icon.IsOk() && m_minimised_icon.GetSize() != bitmap_size)
696 {
697 wxImage img(m_minimised_icon.ConvertToImage());
698 img.Rescale(bitmap_size.GetWidth(), bitmap_size.GetHeight(), wxIMAGE_QUALITY_HIGH);
699 m_minimised_icon_resized = wxBitmap(img);
700 }
701 else
702 {
703 m_minimised_icon_resized = m_minimised_icon;
704 }
705 if(m_minimised_size.x > panel_min_size.x &&
706 m_minimised_size.y > panel_min_size.y)
707 {
708 // No point in having a minimised size which is larger than the
709 // minimum size which the children can go to.
710 m_minimised_size = wxSize(-1, -1);
711 }
712 else
713 {
714 if(m_art->GetFlags() & wxRIBBON_BAR_FLOW_VERTICAL)
715 {
716 m_minimised_size.x = panel_min_size.x;
717 }
718 else
719 {
720 m_minimised_size.y = panel_min_size.y;
721 }
722 }
723 }
724 else
725 {
726 m_minimised_size = wxSize(-1, -1);
727 }
728
729 return Layout() && status;
730 }
731
732 bool wxRibbonPanel::Layout()
733 {
734 if(IsMinimised())
735 {
736 // Children are all invisible when minimised
737 return true;
738 }
739
740 // Get wxRibbonPanel client size
741 wxPoint position;
742 wxClientDC dc(this);
743 wxSize size = m_art->GetPanelClientSize(dc, this, GetSize(), &position);
744
745 // If there is a sizer, use it
746 if(GetSizer())
747 {
748 GetSizer()->SetDimension(position, size); // SetSize and Layout()
749 }
750 else if(GetChildren().GetCount() == 1)
751 {
752 // Common case of no sizer and single child taking up the entire panel
753 wxWindow* child = GetChildren().Item(0)->GetData();
754 child->SetSize(position.x, position.y, size.GetWidth(), size.GetHeight());
755 }
756
757 if(HasExtButton())
758 m_ext_button_rect = m_art->GetPanelExtButtonArea(dc, this, GetSize());
759
760 return true;
761 }
762
763 void wxRibbonPanel::OnMouseClick(wxMouseEvent& WXUNUSED(evt))
764 {
765 if(IsMinimised())
766 {
767 if(m_expanded_panel != NULL)
768 {
769 HideExpanded();
770 }
771 else
772 {
773 ShowExpanded();
774 }
775 }
776 else if(IsExtButtonHovered())
777 {
778 wxRibbonPanelEvent notification(wxEVT_RIBBONPANEL_EXTBUTTON_ACTIVATED, GetId());
779 notification.SetEventObject(this);
780 notification.SetPanel(this);
781 ProcessEvent(notification);
782 }
783 }
784
785 wxRibbonPanel* wxRibbonPanel::GetExpandedDummy()
786 {
787 return m_expanded_dummy;
788 }
789
790 wxRibbonPanel* wxRibbonPanel::GetExpandedPanel()
791 {
792 return m_expanded_panel;
793 }
794
795 bool wxRibbonPanel::ShowExpanded()
796 {
797 if(!IsMinimised())
798 {
799 return false;
800 }
801 if(m_expanded_dummy != NULL || m_expanded_panel != NULL)
802 {
803 return false;
804 }
805
806 wxSize size = GetBestSize();
807
808 // Special case for flexible panel layout, where GetBestSize doesn't work
809 if (GetFlags() & wxRIBBON_PANEL_FLEXIBLE)
810 {
811 size = GetBestSizeForParentSize(wxSize(400, 1000));
812 }
813
814 wxPoint pos = GetExpandedPosition(wxRect(GetScreenPosition(), GetSize()),
815 size, m_preferred_expand_direction).GetTopLeft();
816
817 // Need a top-level frame to contain the expanded panel
818 wxFrame *container = new wxFrame(NULL, wxID_ANY, GetLabel(),
819 pos, size, wxFRAME_NO_TASKBAR | wxBORDER_NONE);
820
821 m_expanded_panel = new wxRibbonPanel(container, wxID_ANY,
822 GetLabel(), m_minimised_icon, wxPoint(0, 0), size, (m_flags /* & ~wxRIBBON_PANEL_FLEXIBLE */));
823
824 m_expanded_panel->SetArtProvider(m_art);
825 m_expanded_panel->m_expanded_dummy = this;
826
827 // Move all children to the new panel.
828 // Conceptually it might be simpler to reparent this entire panel to the
829 // container and create a new panel to sit in its place while expanded.
830 // This approach has a problem though - when the panel is reinserted into
831 // its original parent, it'll be at a different position in the child list
832 // and thus assume a new position.
833 // NB: Children iterators not used as behaviour is not well defined
834 // when iterating over a container which is being emptied
835 while(!GetChildren().IsEmpty())
836 {
837 wxWindow *child = GetChildren().GetFirst()->GetData();
838 child->Reparent(m_expanded_panel);
839 child->Show();
840 }
841
842 // Move sizer to new panel
843 if(GetSizer())
844 {
845 wxSizer* sizer = GetSizer();
846 SetSizer(NULL, false);
847 m_expanded_panel->SetSizer(sizer);
848 }
849
850 m_expanded_panel->Realize();
851 Refresh();
852 container->SetMinClientSize(size);
853 container->Show();
854 m_expanded_panel->SetFocus();
855
856 return true;
857 }
858
859 bool wxRibbonPanel::ShouldSendEventToDummy(wxEvent& evt)
860 {
861 // For an expanded panel, filter events between being sent up to the
862 // floating top level window or to the dummy panel sitting in the ribbon
863 // bar.
864
865 // Child focus events should not be redirected, as the child would not be a
866 // child of the window the event is redirected to. All other command events
867 // seem to be suitable for redirecting.
868 return evt.IsCommandEvent() && evt.GetEventType() != wxEVT_CHILD_FOCUS;
869 }
870
871 bool wxRibbonPanel::TryAfter(wxEvent& evt)
872 {
873 if(m_expanded_dummy && ShouldSendEventToDummy(evt))
874 {
875 wxPropagateOnce propagateOnce(evt);
876 return m_expanded_dummy->GetEventHandler()->ProcessEvent(evt);
877 }
878 else
879 {
880 return wxRibbonControl::TryAfter(evt);
881 }
882 }
883
884 static bool IsAncestorOf(wxWindow *ancestor, wxWindow *window)
885 {
886 while(window != NULL)
887 {
888 wxWindow *parent = window->GetParent();
889 if(parent == ancestor)
890 return true;
891 else
892 window = parent;
893 }
894 return false;
895 }
896
897 void wxRibbonPanel::OnKillFocus(wxFocusEvent& evt)
898 {
899 if(m_expanded_dummy)
900 {
901 wxWindow *receiver = evt.GetWindow();
902 if(IsAncestorOf(this, receiver))
903 {
904 m_child_with_focus = receiver;
905 receiver->Connect(wxEVT_KILL_FOCUS,
906 wxFocusEventHandler(wxRibbonPanel::OnChildKillFocus),
907 NULL, this);
908 }
909 else if(receiver == NULL || receiver != m_expanded_dummy)
910 {
911 HideExpanded();
912 }
913 }
914 }
915
916 void wxRibbonPanel::OnChildKillFocus(wxFocusEvent& evt)
917 {
918 if(m_child_with_focus == NULL)
919 return; // Should never happen, but a check can't hurt
920
921 m_child_with_focus->Disconnect(wxEVT_KILL_FOCUS,
922 wxFocusEventHandler(wxRibbonPanel::OnChildKillFocus), NULL, this);
923 m_child_with_focus = NULL;
924
925 wxWindow *receiver = evt.GetWindow();
926 if(receiver == this || IsAncestorOf(this, receiver))
927 {
928 m_child_with_focus = receiver;
929 receiver->Connect(wxEVT_KILL_FOCUS,
930 wxFocusEventHandler(wxRibbonPanel::OnChildKillFocus), NULL, this);
931 evt.Skip();
932 }
933 else if(receiver == NULL || receiver != m_expanded_dummy)
934 {
935 HideExpanded();
936 // Do not skip event, as the panel has been de-expanded, causing the
937 // child with focus to be reparented (and hidden). If the event
938 // continues propagation then bad things happen.
939 }
940 else
941 {
942 evt.Skip();
943 }
944 }
945
946 bool wxRibbonPanel::HideExpanded()
947 {
948 if(m_expanded_dummy == NULL)
949 {
950 if(m_expanded_panel)
951 {
952 return m_expanded_panel->HideExpanded();
953 }
954 else
955 {
956 return false;
957 }
958 }
959
960 // Move children back to original panel
961 // NB: Children iterators not used as behaviour is not well defined
962 // when iterating over a container which is being emptied
963 while(!GetChildren().IsEmpty())
964 {
965 wxWindow *child = GetChildren().GetFirst()->GetData();
966 child->Reparent(m_expanded_dummy);
967 child->Hide();
968 }
969
970 // Move sizer back
971 if(GetSizer())
972 {
973 wxSizer* sizer = GetSizer();
974 SetSizer(NULL, false);
975 m_expanded_dummy->SetSizer(sizer);
976 }
977
978 m_expanded_dummy->m_expanded_panel = NULL;
979 m_expanded_dummy->Realize();
980 m_expanded_dummy->Refresh();
981 wxWindow *parent = GetParent();
982 Destroy();
983 parent->Destroy();
984
985 return true;
986 }
987
988 wxRect wxRibbonPanel::GetExpandedPosition(wxRect panel,
989 wxSize expanded_size,
990 wxDirection direction)
991 {
992 // Strategy:
993 // 1) Determine primary position based on requested direction
994 // 2) Move the position so that it sits entirely within a display
995 // (for single monitor systems, this moves it into the display region,
996 // but for multiple monitors, it does so without splitting it over
997 // more than one display)
998 // 2.1) Move in the primary axis
999 // 2.2) Move in the secondary axis
1000
1001 wxPoint pos;
1002 bool primary_x = false;
1003 int secondary_x = 0;
1004 int secondary_y = 0;
1005 switch(direction)
1006 {
1007 case wxNORTH:
1008 pos.x = panel.GetX() + (panel.GetWidth() - expanded_size.GetWidth()) / 2;
1009 pos.y = panel.GetY() - expanded_size.GetHeight();
1010 primary_x = true;
1011 secondary_y = 1;
1012 break;
1013 case wxEAST:
1014 pos.x = panel.GetRight();
1015 pos.y = panel.GetY() + (panel.GetHeight() - expanded_size.GetHeight()) / 2;
1016 secondary_x = -1;
1017 break;
1018 case wxSOUTH:
1019 pos.x = panel.GetX() + (panel.GetWidth() - expanded_size.GetWidth()) / 2;
1020 pos.y = panel.GetBottom();
1021 primary_x = true;
1022 secondary_y = -1;
1023 break;
1024 case wxWEST:
1025 default:
1026 pos.x = panel.GetX() - expanded_size.GetWidth();
1027 pos.y = panel.GetY() + (panel.GetHeight() - expanded_size.GetHeight()) / 2;
1028 secondary_x = 1;
1029 break;
1030 }
1031 wxRect expanded(pos, expanded_size);
1032
1033 wxRect best(expanded);
1034 int best_distance = INT_MAX;
1035
1036 const unsigned display_n = wxDisplay::GetCount();
1037 unsigned display_i;
1038 for(display_i = 0; display_i < display_n; ++display_i)
1039 {
1040 wxRect display = wxDisplay(display_i).GetGeometry();
1041
1042 if(display.Contains(expanded))
1043 {
1044 return expanded;
1045 }
1046 else if(display.Intersects(expanded))
1047 {
1048 wxRect new_rect(expanded);
1049 int distance = 0;
1050
1051 if(primary_x)
1052 {
1053 if(expanded.GetRight() > display.GetRight())
1054 {
1055 distance = expanded.GetRight() - display.GetRight();
1056 new_rect.x -= distance;
1057 }
1058 else if(expanded.GetLeft() < display.GetLeft())
1059 {
1060 distance = display.GetLeft() - expanded.GetLeft();
1061 new_rect.x += distance;
1062 }
1063 }
1064 else
1065 {
1066 if(expanded.GetBottom() > display.GetBottom())
1067 {
1068 distance = expanded.GetBottom() - display.GetBottom();
1069 new_rect.y -= distance;
1070 }
1071 else if(expanded.GetTop() < display.GetTop())
1072 {
1073 distance = display.GetTop() - expanded.GetTop();
1074 new_rect.y += distance;
1075 }
1076 }
1077 if(!display.Contains(new_rect))
1078 {
1079 // Tried moving in primary axis, but failed.
1080 // Hence try moving in the secondary axis.
1081 int dx = secondary_x * (panel.GetWidth() + expanded_size.GetWidth());
1082 int dy = secondary_y * (panel.GetHeight() + expanded_size.GetHeight());
1083 new_rect.x += dx;
1084 new_rect.y += dy;
1085
1086 // Squaring makes secondary moves more expensive (and also
1087 // prevents a negative cost)
1088 distance += dx * dx + dy * dy;
1089 }
1090 if(display.Contains(new_rect) && distance < best_distance)
1091 {
1092 best = new_rect;
1093 best_distance = distance;
1094 }
1095 }
1096 }
1097
1098 return best;
1099 }
1100
1101 void wxRibbonPanel::HideIfExpanded()
1102 {
1103 wxStaticCast(m_parent, wxRibbonPage)->HideIfExpanded();
1104 }
1105
1106 #endif // wxUSE_RIBBON