1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/univ/ctrlrend.cpp
3 // Purpose: wxControlRenderer implementation
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/control.h"
30 #include "wx/checklst.h"
31 #include "wx/listbox.h"
32 #include "wx/scrolbar.h"
40 #include "wx/univ/theme.h"
41 #include "wx/univ/renderer.h"
42 #include "wx/univ/colschem.h"
44 // ============================================================================
46 // ============================================================================
48 // ----------------------------------------------------------------------------
49 // wxRenderer: drawing helpers
50 // ----------------------------------------------------------------------------
52 void wxRenderer::StandardDrawFrame(wxDC
& dc
,
53 const wxRect
& rectFrame
,
54 const wxRect
& rectLabel
)
56 // draw left, bottom and right lines entirely
57 DrawVerticalLine(dc
, rectFrame
.GetLeft(),
58 rectFrame
.GetTop(), rectFrame
.GetBottom() - 2);
59 DrawHorizontalLine(dc
, rectFrame
.GetBottom() - 1,
60 rectFrame
.GetLeft(), rectFrame
.GetRight());
61 DrawVerticalLine(dc
, rectFrame
.GetRight() - 1,
62 rectFrame
.GetTop(), rectFrame
.GetBottom() - 1);
64 // and 2 parts of the top line
65 DrawHorizontalLine(dc
, rectFrame
.GetTop(),
66 rectFrame
.GetLeft() + 1, rectLabel
.GetLeft());
67 DrawHorizontalLine(dc
, rectFrame
.GetTop(),
68 rectLabel
.GetRight(), rectFrame
.GetRight() - 2);
72 void wxRenderer::StandardDrawTextLine(wxDC
& dc
,
75 int selStart
, int selEnd
,
78 if ( (selStart
== -1) || !(flags
& wxCONTROL_FOCUSED
) )
81 dc
.DrawText(text
, rect
.x
, rect
.y
);
83 else // we have selection
88 // draw the part before selection
89 wxString
s(text
, (size_t)selStart
);
92 dc
.DrawText(s
, x
, rect
.y
);
94 dc
.GetTextExtent(s
, &width
, NULL
);
98 // draw the selection itself
99 s
= wxString(text
.c_str() + selStart
, text
.c_str() + selEnd
);
102 wxColour colFg
= dc
.GetTextForeground(),
103 colBg
= dc
.GetTextBackground();
104 dc
.SetTextForeground(wxTHEME_COLOUR(HIGHLIGHT_TEXT
));
105 dc
.SetTextBackground(wxTHEME_COLOUR(HIGHLIGHT
));
106 dc
.SetBackgroundMode(wxSOLID
);
108 dc
.DrawText(s
, x
, rect
.y
);
109 dc
.GetTextExtent(s
, &width
, NULL
);
112 dc
.SetBackgroundMode(wxTRANSPARENT
);
113 dc
.SetTextBackground(colBg
);
114 dc
.SetTextForeground(colFg
);
117 // draw the final part
118 s
= text
.c_str() + selEnd
;
121 dc
.DrawText(s
, x
, rect
.y
);
126 // ----------------------------------------------------------------------------
127 // wxRenderer: scrollbar geometry
128 // ----------------------------------------------------------------------------
131 void wxRenderer::StandardScrollBarThumbSize(wxCoord length
,
138 // the thumb can't be made less than this number of pixels
139 static const wxCoord thumbMinWidth
= 8; // FIXME: should be configurable
141 *thumbStart
= (length
*thumbPos
) / range
;
142 *thumbEnd
= (length
*(thumbPos
+ thumbSize
)) / range
;
144 if ( *thumbEnd
- *thumbStart
< thumbMinWidth
)
146 // adjust the end if possible
147 if ( *thumbStart
<= length
- thumbMinWidth
)
149 // yes, just make it wider
150 *thumbEnd
= *thumbStart
+ thumbMinWidth
;
152 else // it is at the bottom of the scrollbar
154 // so move it a bit up
155 *thumbStart
= length
- thumbMinWidth
;
162 wxRect
wxRenderer::StandardGetScrollbarRect(const wxScrollBar
*scrollbar
,
163 wxScrollBar::Element elem
,
165 const wxSize
& sizeArrow
)
167 if ( thumbPos
== -1 )
169 thumbPos
= scrollbar
->GetThumbPosition();
172 wxSize sizeTotal
= scrollbar
->GetClientSize();
173 wxCoord
*start
, *width
;
174 wxCoord length
, arrow
;
176 if ( scrollbar
->IsVertical() )
179 rect
.width
= sizeTotal
.x
;
180 length
= sizeTotal
.y
;
182 width
= &rect
.height
;
188 rect
.height
= sizeTotal
.y
;
189 length
= sizeTotal
.x
;
197 case wxScrollBar::Element_Arrow_Line_1
:
202 case wxScrollBar::Element_Arrow_Line_2
:
203 *start
= length
- arrow
;
207 case wxScrollBar::Element_Arrow_Page_1
:
208 case wxScrollBar::Element_Arrow_Page_2
:
209 // we don't have them at all
212 case wxScrollBar::Element_Thumb
:
213 case wxScrollBar::Element_Bar_1
:
214 case wxScrollBar::Element_Bar_2
:
215 // we need to calculate the thumb position - do it
218 wxCoord thumbStart
, thumbEnd
;
219 int range
= scrollbar
->GetRange();
227 StandardScrollBarThumbSize(length
,
229 scrollbar
->GetThumbSize(),
235 if ( elem
== wxScrollBar::Element_Thumb
)
238 *width
= thumbEnd
- thumbStart
;
240 else if ( elem
== wxScrollBar::Element_Bar_1
)
245 else // elem == wxScrollBar::Element_Bar_2
248 *width
= length
- thumbEnd
;
251 // everything is relative to the start of the shaft so far
256 case wxScrollBar::Element_Max
:
258 wxFAIL_MSG( _T("unknown scrollbar element") );
265 wxCoord
wxRenderer::StandardScrollBarSize(const wxScrollBar
*scrollbar
,
266 const wxSize
& sizeArrowSB
)
268 wxCoord sizeArrow
, sizeTotal
;
269 if ( scrollbar
->GetWindowStyle() & wxVERTICAL
)
271 sizeArrow
= sizeArrowSB
.y
;
272 sizeTotal
= scrollbar
->GetSize().y
;
276 sizeArrow
= sizeArrowSB
.x
;
277 sizeTotal
= scrollbar
->GetSize().x
;
280 return sizeTotal
- 2*sizeArrow
;
284 wxCoord
wxRenderer::StandardScrollbarToPixel(const wxScrollBar
*scrollbar
,
286 const wxSize
& sizeArrow
)
288 int range
= scrollbar
->GetRange();
291 // the only valid position anyhow
295 if ( thumbPos
== -1 )
297 // by default use the current thumb position
298 thumbPos
= scrollbar
->GetThumbPosition();
301 return ( thumbPos
*StandardScrollBarSize(scrollbar
, sizeArrow
) ) / range
302 + (scrollbar
->IsVertical() ? sizeArrow
.y
: sizeArrow
.x
);
306 int wxRenderer::StandardPixelToScrollbar(const wxScrollBar
*scrollbar
,
308 const wxSize
& sizeArrow
)
310 return ( (coord
- (scrollbar
->IsVertical() ? sizeArrow
.y
: sizeArrow
.x
)) *
311 scrollbar
->GetRange() ) /
312 StandardScrollBarSize(scrollbar
, sizeArrow
);
316 wxHitTest
wxRenderer::StandardHitTestScrollbar(const wxScrollBar
*scrollbar
,
318 const wxSize
& sizeArrowSB
)
320 // we only need to work with either x or y coord depending on the
321 // orientation, choose one (but still check the other one to verify if the
322 // mouse is in the window at all)
323 wxCoord coord
, sizeArrow
, sizeTotal
;
324 wxSize size
= scrollbar
->GetSize();
325 if ( scrollbar
->GetWindowStyle() & wxVERTICAL
)
327 if ( pt
.x
< 0 || pt
.x
> size
.x
)
331 sizeArrow
= sizeArrowSB
.y
;
336 if ( pt
.y
< 0 || pt
.y
> size
.y
)
340 sizeArrow
= sizeArrowSB
.x
;
344 // test for the arrows first as it's faster
345 if ( coord
< 0 || coord
> sizeTotal
)
349 else if ( coord
< sizeArrow
)
351 return wxHT_SCROLLBAR_ARROW_LINE_1
;
353 else if ( coord
> sizeTotal
- sizeArrow
)
355 return wxHT_SCROLLBAR_ARROW_LINE_2
;
359 // calculate the thumb position in pixels
360 sizeTotal
-= 2*sizeArrow
;
361 wxCoord thumbStart
, thumbEnd
;
362 int range
= scrollbar
->GetRange();
365 // clicking the scrollbar without range has no effect
370 StandardScrollBarThumbSize(sizeTotal
,
371 scrollbar
->GetThumbPosition(),
372 scrollbar
->GetThumbSize(),
378 // now compare with the thumb position
380 if ( coord
< thumbStart
)
381 return wxHT_SCROLLBAR_BAR_1
;
382 else if ( coord
> thumbEnd
)
383 return wxHT_SCROLLBAR_BAR_2
;
385 return wxHT_SCROLLBAR_THUMB
;
389 wxRenderer::~wxRenderer()
393 // ----------------------------------------------------------------------------
395 // ----------------------------------------------------------------------------
397 wxControlRenderer::wxControlRenderer(wxWindow
*window
,
399 wxRenderer
*renderer
)
403 m_renderer
= renderer
;
405 wxSize size
= m_window
->GetClientSize();
408 m_rect
.width
= size
.x
;
409 m_rect
.height
= size
.y
;
412 void wxControlRenderer::DrawLabel(const wxBitmap
& bitmap
,
413 wxCoord marginX
, wxCoord marginY
)
415 m_dc
.SetBackgroundMode(wxTRANSPARENT
);
416 m_dc
.SetFont(m_window
->GetFont());
417 m_dc
.SetTextForeground(m_window
->GetForegroundColour());
419 wxString label
= m_window
->GetLabel();
420 if ( !label
.empty() || bitmap
.Ok() )
422 wxRect rectLabel
= m_rect
;
425 rectLabel
.Inflate(-marginX
, -marginY
);
428 wxControl
*ctrl
= wxStaticCast(m_window
, wxControl
);
430 m_renderer
->DrawButtonLabel(m_dc
,
434 m_window
->GetStateFlags(),
435 ctrl
->GetAlignment(),
436 ctrl
->GetAccelIndex());
440 void wxControlRenderer::DrawFrame()
442 m_dc
.SetFont(m_window
->GetFont());
443 m_dc
.SetTextForeground(m_window
->GetForegroundColour());
444 m_dc
.SetTextBackground(m_window
->GetBackgroundColour());
446 wxControl
*ctrl
= wxStaticCast(m_window
, wxControl
);
448 m_renderer
->DrawFrame(m_dc
,
449 m_window
->GetLabel(),
451 m_window
->GetStateFlags(),
452 ctrl
->GetAlignment(),
453 ctrl
->GetAccelIndex());
456 void wxControlRenderer::DrawButtonBorder()
458 int flags
= m_window
->GetStateFlags();
460 m_renderer
->DrawButtonBorder(m_dc
, m_rect
, flags
, &m_rect
);
463 // m_renderer->DrawButtonSurface(m_dc, wxTHEME_BG_COLOUR(m_window), m_rect, flags );
466 void wxControlRenderer::DrawBitmap(const wxBitmap
& bitmap
)
468 int style
= m_window
->GetWindowStyle();
469 DrawBitmap(m_dc
, bitmap
, m_rect
,
470 style
& wxALIGN_MASK
,
471 style
& wxBI_EXPAND
? wxEXPAND
: wxSTRETCH_NOT
);
475 void wxControlRenderer::DrawBitmap(wxDC
&dc
,
476 const wxBitmap
& bitmap
,
481 // we may change the bitmap if we stretch it
482 wxBitmap bmp
= bitmap
;
486 int width
= bmp
.GetWidth(),
487 height
= bmp
.GetHeight();
491 if ( stretch
& wxTILE
)
494 for ( ; x
< rect
.width
; x
+= width
)
496 for ( y
= 0; y
< rect
.height
; y
+= height
)
498 // no need to use mask here as we cover the entire window area
499 dc
.DrawBitmap(bmp
, x
, y
);
503 else if ( stretch
& wxEXPAND
)
505 // stretch bitmap to fill the entire control
506 bmp
= wxBitmap(wxImage(bmp
.ConvertToImage()).Scale(rect
.width
, rect
.height
));
508 else // not stretched, not tiled
510 if ( alignment
& wxALIGN_RIGHT
)
512 x
= rect
.GetRight() - width
;
514 else if ( alignment
& wxALIGN_CENTRE
)
516 x
= (rect
.GetLeft() + rect
.GetRight() - width
+ 1) / 2;
518 else // alignment & wxALIGN_LEFT
523 if ( alignment
& wxALIGN_BOTTOM
)
525 y
= rect
.GetBottom() - height
;
527 else if ( alignment
& wxALIGN_CENTRE_VERTICAL
)
529 y
= (rect
.GetTop() + rect
.GetBottom() - height
+ 1) / 2;
531 else // alignment & wxALIGN_TOP
538 dc
.DrawBitmap(bmp
, x
, y
, true /* use mask */);
541 void wxControlRenderer::DrawScrollbar(const wxScrollBar
*scrollbar
,
542 int WXUNUSED(thumbPosOld
))
544 // we will only redraw the parts which must be redrawn and not everything
545 wxRegion rgnUpdate
= scrollbar
->GetUpdateRegion();
548 wxRect rectUpdate
= rgnUpdate
.GetBox();
549 wxLogTrace(_T("scrollbar"),
550 _T("%s redraw: update box is (%d, %d)-(%d, %d)"),
551 scrollbar
->IsVertical() ? _T("vert") : _T("horz"),
552 rectUpdate
.GetLeft(),
554 rectUpdate
.GetRight(),
555 rectUpdate
.GetBottom());
557 #if 0 //def WXDEBUG_SCROLLBAR
558 static bool s_refreshDebug
= false;
559 if ( s_refreshDebug
)
561 wxClientDC
dc(wxConstCast(scrollbar
, wxScrollBar
));
562 dc
.SetBrush(*wxRED_BRUSH
);
563 dc
.SetPen(*wxTRANSPARENT_PEN
);
564 dc
.DrawRectangle(rectUpdate
);
566 // under Unix we use "--sync" X option for this
572 #endif // WXDEBUG_SCROLLBAR
575 wxOrientation orient
= scrollbar
->IsVertical() ? wxVERTICAL
579 for ( int nBar
= 0; nBar
< 2; nBar
++ )
581 wxScrollBar::Element elem
=
582 (wxScrollBar::Element
)(wxScrollBar::Element_Bar_1
+ nBar
);
584 wxRect rectBar
= m_renderer
->GetScrollbarRect(scrollbar
, elem
);
586 if ( rgnUpdate
.Contains(rectBar
) )
588 wxLogTrace(_T("scrollbar"),
589 _T("drawing bar part %d at (%d, %d)-(%d, %d)"),
594 rectBar
.GetBottom());
596 m_renderer
->DrawScrollbarShaft(m_dc
,
599 scrollbar
->GetState(elem
));
604 for ( int nArrow
= 0; nArrow
< 2; nArrow
++ )
606 wxScrollBar::Element elem
=
607 (wxScrollBar::Element
)(wxScrollBar::Element_Arrow_Line_1
+ nArrow
);
609 wxRect rectArrow
= m_renderer
->GetScrollbarRect(scrollbar
, elem
);
610 if ( rgnUpdate
.Contains(rectArrow
) )
612 wxLogTrace(_T("scrollbar"),
613 _T("drawing arrow %d at (%d, %d)-(%d, %d)"),
617 rectArrow
.GetRight(),
618 rectArrow
.GetBottom());
620 scrollbar
->GetArrows().DrawArrow
622 (wxScrollArrows::Arrow
)nArrow
,
625 true // draw a scrollbar arrow, not just an arrow
630 // TODO: support for page arrows
633 wxScrollBar::Element elem
= wxScrollBar::Element_Thumb
;
634 wxRect rectThumb
= m_renderer
->GetScrollbarRect(scrollbar
, elem
);
635 if ( rectThumb
.width
&& rectThumb
.height
&& rgnUpdate
.Contains(rectThumb
) )
637 wxLogTrace(_T("scrollbar"),
638 _T("drawing thumb at (%d, %d)-(%d, %d)"),
641 rectThumb
.GetRight(),
642 rectThumb
.GetBottom());
644 m_renderer
->DrawScrollbarThumb(m_dc
,
647 scrollbar
->GetState(elem
));
651 void wxControlRenderer::DrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
653 wxASSERT_MSG( x1
== x2
|| y1
== y2
,
654 _T("line must be either horizontal or vertical") );
657 m_renderer
->DrawVerticalLine(m_dc
, x1
, y1
, y2
);
659 m_renderer
->DrawHorizontalLine(m_dc
, y1
, x1
, x2
);
664 void wxControlRenderer::DrawItems(const wxListBox
*lbox
,
665 size_t itemFirst
, size_t itemLast
)
667 DoDrawItems(lbox
, itemFirst
, itemLast
);
670 void wxControlRenderer::DoDrawItems(const wxListBox
*lbox
,
671 size_t itemFirst
, size_t itemLast
,
672 #if wxUSE_CHECKLISTBOX
675 bool WXUNUSED(isCheckLbox
))
678 // prepare for the drawing: calc the initial position
679 wxCoord lineHeight
= lbox
->GetLineHeight();
681 // note that SetClippingRegion() needs the physical (unscrolled)
682 // coordinates while we use the logical (scrolled) ones for the drawing
685 wxSize size
= lbox
->GetClientSize();
687 rect
.height
= size
.y
;
689 // keep the text inside the client rect or we will overwrite the vertical
690 // scrollbar for the long strings
691 m_dc
.SetClippingRegion(rect
.x
, rect
.y
, rect
.width
+ 1, rect
.height
+ 1);
693 // adjust the rect position now
694 lbox
->CalcScrolledPosition(rect
.x
, rect
.y
, &rect
.x
, &rect
.y
);
695 rect
.y
+= itemFirst
*lineHeight
;
696 rect
.height
= lineHeight
;
698 // the rect should go to the right visible border so adjust the width if x
699 // is shifted (rightmost point should stay the same)
700 rect
.width
-= rect
.x
;
702 // we'll keep the text colour unchanged
703 m_dc
.SetTextForeground(lbox
->GetForegroundColour());
705 // an item should have the focused rect only when the lbox has focus, so
706 // make sure that we never set wxCONTROL_FOCUSED flag if it doesn't
707 int itemCurrent
= wxWindow::FindFocus() == (wxWindow
*)lbox
// cast needed
708 ? lbox
->GetCurrentItem()
710 for ( size_t n
= itemFirst
; n
< itemLast
; n
++ )
713 if ( (int)n
== itemCurrent
)
714 flags
|= wxCONTROL_FOCUSED
;
715 if ( lbox
->IsSelected(n
) )
716 flags
|= wxCONTROL_SELECTED
;
718 #if wxUSE_CHECKLISTBOX
721 wxCheckListBox
*checklstbox
= wxStaticCast(lbox
, wxCheckListBox
);
722 if ( checklstbox
->IsChecked(n
) )
723 flags
|= wxCONTROL_CHECKED
;
725 m_renderer
->DrawCheckItem(m_dc
, lbox
->GetString(n
),
731 #endif // wxUSE_CHECKLISTBOX
733 m_renderer
->DrawItem(m_dc
, lbox
->GetString(n
), rect
, flags
);
736 rect
.y
+= lineHeight
;
740 #endif // wxUSE_LISTBOX
742 #if wxUSE_CHECKLISTBOX
744 void wxControlRenderer::DrawCheckItems(const wxCheckListBox
*lbox
,
745 size_t itemFirst
, size_t itemLast
)
747 DoDrawItems(lbox
, itemFirst
, itemLast
, true);
750 #endif // wxUSE_CHECKLISTBOX
754 void wxControlRenderer::DrawProgressBar(const wxGauge
*gauge
)
757 m_dc
.SetBrush(wxBrush(m_window
->GetBackgroundColour(), wxSOLID
));
758 m_dc
.SetPen(*wxTRANSPARENT_PEN
);
759 m_dc
.DrawRectangle(m_rect
);
761 int max
= gauge
->GetRange();
768 // calc the filled rect
769 int pos
= gauge
->GetValue();
770 int left
= max
- pos
;
772 wxRect rect
= m_rect
;
773 rect
.Deflate(1); // FIXME this depends on the border width
775 wxColour col
= m_window
->UseFgCol() ? m_window
->GetForegroundColour()
776 : wxTHEME_COLOUR(GAUGE
);
777 m_dc
.SetBrush(wxBrush(col
, wxSOLID
));
779 if ( gauge
->IsSmooth() )
781 // just draw the rectangle in one go
782 if ( gauge
->IsVertical() )
784 // vert bars grow from bottom to top
785 wxCoord dy
= ((rect
.height
- 1) * left
) / max
;
791 // grow from left to right
792 rect
.width
-= ((rect
.width
- 1) * left
) / max
;
795 m_dc
.DrawRectangle(rect
);
799 wxSize sizeStep
= m_renderer
->GetProgressBarStep();
800 int step
= gauge
->IsVertical() ? sizeStep
.y
: sizeStep
.x
;
802 // we divide by it below!
803 wxCHECK_RET( step
, _T("invalid wxGauge step") );
805 // round up to make the progress appear to start faster
806 int lenTotal
= gauge
->IsVertical() ? rect
.height
: rect
.width
;
807 int steps
= ((lenTotal
+ step
- 1) * pos
) / (max
* step
);
809 // calc the coords of one small rect
812 if ( gauge
->IsVertical() )
814 // draw from bottom to top: so first set y to the bottom
815 rect
.y
+= rect
.height
- 1;
817 // then adjust the height
820 // and then adjust y again to be what it should for the first rect
821 rect
.y
-= rect
.height
;
826 // remember that this will be the coord which will change
834 // don't leave 2 empty pixels in the beginning
844 for ( int n
= 0; n
< steps
; n
++ )
846 wxRect rectSegment
= rect
;
847 rectSegment
.Deflate(dx
, dy
);
849 m_dc
.DrawRectangle(rectSegment
);
854 // this can only happen for the last step of vertical gauge
855 rect
.height
= *px
- step
- 1;
858 else if ( *px
> lenTotal
- step
)
860 // this can only happen for the last step of horizontal gauge
861 rect
.width
= lenTotal
- *px
- 1;
867 #endif // wxUSE_GAUGE