1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/univ/themes/mono.cpp
3 // Purpose: wxUniversal theme for monochrome displays
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2006 REA Elektronik GmbH
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #if wxUSE_ALL_THEMES || wxUSE_THEME_MONO
33 #include "wx/artprov.h"
34 #include "wx/univ/stdrend.h"
35 #include "wx/univ/inphand.h"
36 #include "wx/univ/colschem.h"
37 #include "wx/univ/theme.h"
39 class wxMonoColourScheme
;
41 #define wxMONO_BG_COL (*wxWHITE)
42 #define wxMONO_FG_COL (*wxBLACK)
44 // ----------------------------------------------------------------------------
45 // wxMonoRenderer: draw the GUI elements in simplest possible way
46 // ----------------------------------------------------------------------------
48 // Warning: many of the methods here are not implemented, the code won't work
49 // if any but a few wxUSE_XXXs are on
50 class wxMonoRenderer
: public wxStdRenderer
53 wxMonoRenderer(const wxColourScheme
*scheme
);
55 virtual void DrawButtonLabel(wxDC
& dc
,
56 const wxString
& label
,
57 const wxBitmap
& image
,
60 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
62 wxRect
*rectBounds
= NULL
);
64 virtual void DrawButtonBorder(wxDC
& dc
,
67 wxRect
*rectIn
= NULL
);
69 virtual void DrawHorizontalLine(wxDC
& dc
,
70 wxCoord y
, wxCoord x1
, wxCoord x2
);
72 virtual void DrawVerticalLine(wxDC
& dc
,
73 wxCoord x
, wxCoord y1
, wxCoord y2
);
75 virtual void DrawArrow(wxDC
& dc
,
79 virtual void DrawScrollbarThumb(wxDC
& dc
,
83 virtual void DrawScrollbarShaft(wxDC
& dc
,
89 virtual void DrawToolBarButton(wxDC
& dc
,
90 const wxString
& label
,
91 const wxBitmap
& bitmap
,
96 #endif // wxUSE_TOOLBAR
99 virtual void DrawTab(wxDC
& dc
,
102 const wxString
& label
,
103 const wxBitmap
& bitmap
= wxNullBitmap
,
105 int indexAccel
= -1);
106 #endif // wxUSE_NOTEBOOK
109 virtual void DrawSliderShaft(wxDC
& dc
,
112 wxOrientation orient
,
115 wxRect
*rectShaft
= NULL
);
117 virtual void DrawSliderThumb(wxDC
& dc
,
119 wxOrientation orient
,
123 virtual void DrawSliderTicks(wxDC
& dc
,
126 wxOrientation orient
,
132 #endif // wxUSE_SLIDER
135 virtual void DrawMenuBarItem(wxDC
& dc
,
137 const wxString
& label
,
139 int indexAccel
= -1);
141 virtual void DrawMenuItem(wxDC
& dc
,
143 const wxMenuGeometryInfo
& geometryInfo
,
144 const wxString
& label
,
145 const wxString
& accel
,
146 const wxBitmap
& bitmap
= wxNullBitmap
,
148 int indexAccel
= -1);
150 virtual void DrawMenuSeparator(wxDC
& dc
,
152 const wxMenuGeometryInfo
& geomInfo
);
153 #endif // wxUSE_MENUS
156 virtual void GetComboBitmaps(wxBitmap
*bmpNormal
,
158 wxBitmap
*bmpPressed
,
159 wxBitmap
*bmpDisabled
);
160 #endif // wxUSE_COMBOBOX
163 virtual wxRect
GetBorderDimensions(wxBorder border
) const;
166 virtual wxSize
GetScrollbarArrowSize() const { return GetStdBmpSize(); }
167 #endif // wxUSE_SCROLLBAR
169 virtual wxSize
GetCheckBitmapSize() const { return GetStdBmpSize(); }
170 virtual wxSize
GetRadioBitmapSize() const { return GetStdBmpSize(); }
173 virtual wxSize
GetToolBarButtonSize(wxCoord
*separator
) const;
175 virtual wxSize
GetToolBarMargin() const;
176 #endif // wxUSE_TOOLBAR
179 virtual wxSize
GetTabIndent() const;
181 virtual wxSize
GetTabPadding() const;
182 #endif // wxUSE_NOTEBOOK
185 virtual wxCoord
GetSliderDim() const;
187 virtual wxCoord
GetSliderTickLen() const;
189 virtual wxRect
GetSliderShaftRect(const wxRect
& rect
,
191 wxOrientation orient
,
192 long style
= 0) const;
194 virtual wxSize
GetSliderThumbSize(const wxRect
& rect
,
196 wxOrientation orient
) const;
197 #endif // wxUSE_SLIDER
199 virtual wxSize
GetProgressBarStep() const;
202 virtual wxSize
GetMenuBarItemSize(const wxSize
& sizeText
) const;
204 virtual wxMenuGeometryInfo
*GetMenuGeometry(wxWindow
*win
,
205 const wxMenu
& menu
) const;
206 #endif // wxUSE_MENUS
209 // override base class border drawing routines: we always draw just a
210 // single simple border
211 void DrawSimpleBorder(wxDC
& dc
, wxRect
*rect
)
212 { DrawRect(dc
, rect
, m_penFg
); }
214 virtual void DrawRaisedBorder(wxDC
& dc
, wxRect
*rect
)
215 { DrawSimpleBorder(dc
, rect
); }
216 virtual void DrawSunkenBorder(wxDC
& dc
, wxRect
*rect
)
217 { DrawSimpleBorder(dc
, rect
); }
218 virtual void DrawAntiSunkenBorder(wxDC
& dc
, wxRect
*rect
)
219 { DrawSimpleBorder(dc
, rect
); }
220 virtual void DrawBoxBorder(wxDC
& dc
, wxRect
*rect
)
221 { DrawSimpleBorder(dc
, rect
); }
222 virtual void DrawStaticBorder(wxDC
& dc
, wxRect
*rect
)
223 { DrawSimpleBorder(dc
, rect
); }
224 virtual void DrawExtraBorder(wxDC
& WXUNUSED(dc
), wxRect
* WXUNUSED(rect
))
225 { /* no extra borders for us */ }
227 // all our XPMs are of this size
228 static wxSize
GetStdBmpSize() { return wxSize(8, 8); }
230 wxBitmap
GetIndicator(IndicatorType indType
, int flags
);
231 virtual wxBitmap
GetCheckBitmap(int flags
)
232 { return GetIndicator(IndicatorType_Check
, flags
); }
233 virtual wxBitmap
GetRadioBitmap(int flags
)
234 { return GetIndicator(IndicatorType_Radio
, flags
); }
236 virtual wxBitmap
GetFrameButtonBitmap(FrameButtonType type
);
237 virtual int GetFrameBorderWidth(int flags
) const;
240 // the bitmaps returned by GetIndicator()
241 wxBitmap m_bmpIndicators
[IndicatorType_MaxCtrl
]
242 [IndicatorState_MaxCtrl
]
243 [IndicatorStatus_Max
];
245 static const char **ms_xpmIndicators
[IndicatorType_MaxCtrl
]
246 [IndicatorState_MaxCtrl
]
247 [IndicatorStatus_Max
];
249 // the arrow bitmaps used by DrawArrow()
250 wxBitmap m_bmpArrows
[Arrow_Max
];
252 static const char **ms_xpmArrows
[Arrow_Max
];
254 // the close bitmap for the frame for GetFrameButtonBitmap()
255 wxBitmap m_bmpFrameClose
;
257 // pen used for foreground drawing
261 // ----------------------------------------------------------------------------
263 // ----------------------------------------------------------------------------
265 static const char *xpmUnchecked
[] = {
266 /* columns rows colors chars-per-pixel */
281 static const char *xpmChecked
[] = {
282 /* columns rows colors chars-per-pixel */
297 static const char *xpmUndeterminate
[] = {
298 /* columns rows colors chars-per-pixel */
313 static const char *xpmRadioUnchecked
[] = {
314 /* columns rows colors chars-per-pixel */
329 static const char *xpmRadioChecked
[] = {
330 /* columns rows colors chars-per-pixel */
345 const char **wxMonoRenderer::ms_xpmIndicators
[IndicatorType_MaxCtrl
]
346 [IndicatorState_MaxCtrl
]
347 [IndicatorStatus_Max
] =
352 { xpmChecked
, xpmUnchecked
, xpmUndeterminate
},
355 { xpmUndeterminate
, xpmUndeterminate
, xpmUndeterminate
},
358 { xpmUndeterminate
, xpmUndeterminate
, xpmUndeterminate
},
364 { xpmRadioChecked
, xpmRadioUnchecked
, xpmUndeterminate
},
367 { xpmUndeterminate
, xpmUndeterminate
, xpmUndeterminate
},
370 { xpmUndeterminate
, xpmUndeterminate
, xpmUndeterminate
},
374 static const char *xpmLeftArrow
[] = {
375 /* columns rows colors chars-per-pixel */
390 static const char *xpmRightArrow
[] = {
391 /* columns rows colors chars-per-pixel */
406 static const char *xpmUpArrow
[] = {
407 /* columns rows colors chars-per-pixel */
422 static const char *xpmDownArrow
[] = {
423 /* columns rows colors chars-per-pixel */
438 const char **wxMonoRenderer::ms_xpmArrows
[Arrow_Max
] =
440 xpmLeftArrow
, xpmRightArrow
, xpmUpArrow
, xpmDownArrow
,
443 // ----------------------------------------------------------------------------
444 // wxMonoColourScheme: uses just white and black
445 // ----------------------------------------------------------------------------
447 class wxMonoColourScheme
: public wxColourScheme
450 // we use only 2 colours, white and black, but we avoid referring to them
451 // like this, instead use the functions below
452 wxColour
GetFg() const { return wxMONO_FG_COL
; }
453 wxColour
GetBg() const { return wxMONO_BG_COL
; }
455 // implement base class pure virtuals
456 virtual wxColour
Get(StdColour col
) const;
457 virtual wxColour
GetBackground(wxWindow
*win
) const;
460 // ----------------------------------------------------------------------------
462 // ----------------------------------------------------------------------------
464 class wxMonoArtProvider
: public wxArtProvider
467 virtual wxBitmap
CreateBitmap(const wxArtID
& id
,
468 const wxArtClient
& client
,
472 // ----------------------------------------------------------------------------
474 // ----------------------------------------------------------------------------
476 class wxMonoTheme
: public wxTheme
480 virtual ~wxMonoTheme();
482 virtual wxRenderer
*GetRenderer();
483 virtual wxArtProvider
*GetArtProvider();
484 virtual wxInputHandler
*GetInputHandler(const wxString
& control
,
485 wxInputConsumer
*consumer
);
486 virtual wxColourScheme
*GetColourScheme();
489 wxMonoRenderer
*m_renderer
;
490 wxMonoArtProvider
*m_artProvider
;
491 wxMonoColourScheme
*m_scheme
;
493 WX_DECLARE_THEME(mono
)
496 // ============================================================================
498 // ============================================================================
500 WX_IMPLEMENT_THEME(wxMonoTheme
, mono
, wxTRANSLATE("Simple monochrome theme"));
502 // ----------------------------------------------------------------------------
504 // ----------------------------------------------------------------------------
506 wxMonoTheme::wxMonoTheme()
510 m_artProvider
= NULL
;
513 wxMonoTheme::~wxMonoTheme()
517 delete m_artProvider
;
520 wxRenderer
*wxMonoTheme::GetRenderer()
524 m_renderer
= new wxMonoRenderer(GetColourScheme());
530 wxArtProvider
*wxMonoTheme::GetArtProvider()
532 if ( !m_artProvider
)
534 m_artProvider
= new wxMonoArtProvider
;
537 return m_artProvider
;
540 wxColourScheme
*wxMonoTheme::GetColourScheme()
544 m_scheme
= new wxMonoColourScheme
;
550 wxInputHandler
*wxMonoTheme::GetInputHandler(const wxString
& WXUNUSED(control
),
551 wxInputConsumer
*consumer
)
553 // no special input handlers so far
554 return consumer
->DoGetStdInputHandler(NULL
);
557 // ============================================================================
558 // wxMonoColourScheme
559 // ============================================================================
561 wxColour
wxMonoColourScheme::GetBackground(wxWindow
*win
) const
564 if ( win
->UseBgCol() )
566 // use the user specified colour
567 col
= win
->GetBackgroundColour();
570 // doesn't depend on the state
579 wxColour
wxMonoColourScheme::Get(wxMonoColourScheme::StdColour col
) const
585 case CONTROL_PRESSED
:
586 case CONTROL_CURRENT
:
588 case SCROLLBAR_PRESSED
:
591 case TITLEBAR_ACTIVE
:
598 wxFAIL_MSG(_T("invalid standard colour"));
602 case SHADOW_HIGHLIGHT
:
606 case CONTROL_TEXT_DISABLED
:
607 case CONTROL_TEXT_DISABLED_SHADOW
:
609 case TITLEBAR_ACTIVE_TEXT
:
616 // ============================================================================
618 // ============================================================================
620 // ----------------------------------------------------------------------------
622 // ----------------------------------------------------------------------------
624 wxMonoRenderer::wxMonoRenderer(const wxColourScheme
*scheme
)
625 : wxStdRenderer(scheme
)
627 m_penFg
= wxPen(wxMONO_FG_COL
);
630 // ----------------------------------------------------------------------------
632 // ----------------------------------------------------------------------------
634 wxRect
wxMonoRenderer::GetBorderDimensions(wxBorder border
) const
639 case wxBORDER_SIMPLE
:
640 case wxBORDER_STATIC
:
641 case wxBORDER_RAISED
:
642 case wxBORDER_SUNKEN
:
646 case wxBORDER_DOUBLE
:
651 wxFAIL_MSG(_T("unknown border type"));
654 case wxBORDER_DEFAULT
:
669 void wxMonoRenderer::DrawButtonBorder(wxDC
& dc
,
674 DrawBorder(dc
, wxBORDER_SIMPLE
, rect
, flags
, rectIn
);
677 // ----------------------------------------------------------------------------
679 // ----------------------------------------------------------------------------
682 wxMonoRenderer::DrawHorizontalLine(wxDC
& dc
, wxCoord y
, wxCoord x1
, wxCoord x2
)
685 dc
.DrawLine(x1
, y
, x2
+ 1, y
);
689 wxMonoRenderer::DrawVerticalLine(wxDC
& dc
, wxCoord x
, wxCoord y1
, wxCoord y2
)
692 dc
.DrawLine(x
, y1
, x
, y2
+ 1);
695 // ----------------------------------------------------------------------------
697 // ----------------------------------------------------------------------------
699 void wxMonoRenderer::DrawButtonLabel(wxDC
& dc
,
700 const wxString
& label
,
701 const wxBitmap
& image
,
708 dc
.SetTextForeground(m_penFg
.GetColour());
709 dc
.DrawLabel(label
, image
, rect
, alignment
, indexAccel
, rectBounds
);
711 if ( flags
& wxCONTROL_DISABLED
)
713 // this is ugly but I don't know how to show disabled button visually
714 // in monochrome theme otherwise, so cross it out
716 dc
.DrawLine(rect
.GetTopLeft(), rect
.GetBottomRight());
717 dc
.DrawLine(rect
.GetTopRight(), rect
.GetBottomLeft());
721 // ----------------------------------------------------------------------------
723 // ----------------------------------------------------------------------------
725 wxBitmap
wxMonoRenderer::GetIndicator(IndicatorType indType
, int flags
)
727 IndicatorState indState
;
728 IndicatorStatus indStatus
;
729 GetIndicatorsFromFlags(flags
, indState
, indStatus
);
731 wxBitmap
& bmp
= m_bmpIndicators
[indType
][indState
][indStatus
];
734 const char **xpm
= ms_xpmIndicators
[indType
][indState
][indStatus
];
737 // create and cache it
745 wxBitmap
wxMonoRenderer::GetFrameButtonBitmap(FrameButtonType type
)
747 if ( type
== FrameButton_Close
)
749 if ( !m_bmpFrameClose
.Ok() )
751 static const char *xpmFrameClose
[] = {
752 /* columns rows colors chars-per-pixel */
767 m_bmpFrameClose
= wxBitmap(xpmFrameClose
);
770 return m_bmpFrameClose
;
773 // we don't show any other buttons than close
777 // ----------------------------------------------------------------------------
779 // ----------------------------------------------------------------------------
783 void wxMonoRenderer::DrawToolBarButton(wxDC
& dc
,
784 const wxString
& label
,
785 const wxBitmap
& bitmap
,
791 wxFAIL_MSG(_T("TODO"));
794 wxSize
wxMonoRenderer::GetToolBarButtonSize(wxCoord
*separator
) const
796 wxFAIL_MSG(_T("TODO"));
801 wxSize
wxMonoRenderer::GetToolBarMargin() const
803 wxFAIL_MSG(_T("TODO"));
808 #endif // wxUSE_TOOLBAR
810 // ----------------------------------------------------------------------------
812 // ----------------------------------------------------------------------------
816 void wxMonoRenderer::DrawTab(wxDC
& dc
,
819 const wxString
& label
,
820 const wxBitmap
& bitmap
,
824 wxFAIL_MSG(_T("TODO"));
827 wxSize
wxMonoRenderer::GetTabIndent() const
829 wxFAIL_MSG(_T("TODO"));
834 wxSize
wxMonoRenderer::GetTabPadding() const
836 wxFAIL_MSG(_T("TODO"));
841 #endif // wxUSE_NOTEBOOK
843 // ----------------------------------------------------------------------------
845 // ----------------------------------------------------------------------------
849 void wxMonoRenderer::GetComboBitmaps(wxBitmap
*bmpNormal
,
851 wxBitmap
*bmpPressed
,
852 wxBitmap
*bmpDisabled
)
854 wxFAIL_MSG(_T("TODO"));
857 #endif // wxUSE_COMBOBOX
859 // ----------------------------------------------------------------------------
861 // ----------------------------------------------------------------------------
865 void wxMonoRenderer::DrawMenuBarItem(wxDC
& dc
,
867 const wxString
& label
,
871 wxFAIL_MSG(_T("TODO"));
874 void wxMonoRenderer::DrawMenuItem(wxDC
& dc
,
876 const wxMenuGeometryInfo
& geometryInfo
,
877 const wxString
& label
,
878 const wxString
& accel
,
879 const wxBitmap
& bitmap
,
883 wxFAIL_MSG(_T("TODO"));
886 void wxMonoRenderer::DrawMenuSeparator(wxDC
& dc
,
888 const wxMenuGeometryInfo
& geomInfo
)
890 wxFAIL_MSG(_T("TODO"));
893 wxSize
wxMonoRenderer::GetMenuBarItemSize(const wxSize
& sizeText
) const
895 wxFAIL_MSG(_T("TODO"));
900 wxMenuGeometryInfo
*wxMonoRenderer::GetMenuGeometry(wxWindow
*win
,
901 const wxMenu
& menu
) const
903 wxFAIL_MSG(_T("TODO"));
908 #endif // wxUSE_MENUS
910 // ----------------------------------------------------------------------------
912 // ----------------------------------------------------------------------------
916 void wxMonoRenderer::DrawSliderShaft(wxDC
& dc
,
919 wxOrientation orient
,
924 wxFAIL_MSG(_T("TODO"));
928 void wxMonoRenderer::DrawSliderThumb(wxDC
& dc
,
930 wxOrientation orient
,
934 wxFAIL_MSG(_T("TODO"));
937 void wxMonoRenderer::DrawSliderTicks(wxDC
& dc
,
940 wxOrientation orient
,
947 wxFAIL_MSG(_T("TODO"));
950 wxCoord
wxMonoRenderer::GetSliderDim() const
952 wxFAIL_MSG(_T("TODO"));
957 wxCoord
wxMonoRenderer::GetSliderTickLen() const
959 wxFAIL_MSG(_T("TODO"));
965 wxRect
wxMonoRenderer::GetSliderShaftRect(const wxRect
& rect
,
967 wxOrientation orient
,
970 wxFAIL_MSG(_T("TODO"));
975 wxSize
wxMonoRenderer::GetSliderThumbSize(const wxRect
& rect
,
977 wxOrientation orient
) const
979 wxFAIL_MSG(_T("TODO"));
984 #endif // wxUSE_SLIDER
986 wxSize
wxMonoRenderer::GetProgressBarStep() const
988 wxFAIL_MSG(_T("TODO"));
994 // ----------------------------------------------------------------------------
996 // ----------------------------------------------------------------------------
998 void wxMonoRenderer::DrawArrow(wxDC
& dc
,
1001 int WXUNUSED(flags
))
1003 ArrowDirection arrowDir
= GetArrowDirection(dir
);
1004 wxCHECK_RET( arrowDir
!= Arrow_Max
, _T("invalid arrow direction") );
1006 wxBitmap
& bmp
= m_bmpArrows
[arrowDir
];
1009 bmp
= wxBitmap(ms_xpmArrows
[arrowDir
]);
1012 wxRect
rectArrow(0, 0, bmp
.GetWidth(), bmp
.GetHeight());
1013 dc
.DrawBitmap(bmp
, rectArrow
.CentreIn(rect
).GetPosition(), true /* use mask */);
1016 void wxMonoRenderer::DrawScrollbarThumb(wxDC
& dc
,
1017 wxOrientation
WXUNUSED(orient
),
1019 int WXUNUSED(flags
))
1021 DrawSolidRect(dc
, wxMONO_FG_COL
, rect
);
1024 void wxMonoRenderer::DrawScrollbarShaft(wxDC
& dc
,
1025 wxOrientation
WXUNUSED(orient
),
1027 int WXUNUSED(flags
))
1029 DrawSolidRect(dc
, wxMONO_BG_COL
, rect
);
1032 // ----------------------------------------------------------------------------
1033 // top level windows
1034 // ----------------------------------------------------------------------------
1036 int wxMonoRenderer::GetFrameBorderWidth(int WXUNUSED(flags
)) const
1038 // all our borders are simple
1042 // ----------------------------------------------------------------------------
1043 // wxMonoArtProvider
1044 // ----------------------------------------------------------------------------
1046 wxBitmap
wxMonoArtProvider::CreateBitmap(const wxArtID
& WXUNUSED(id
),
1047 const wxArtClient
& WXUNUSED(client
),
1048 const wxSize
& WXUNUSED(size
))
1050 return wxNullBitmap
;
1053 #endif // wxUSE_ALL_THEMES || wxUSE_THEME_MONO