]>
Commit | Line | Data |
---|---|---|
3c3ead1d PC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/ribbon/art_msw.cpp | |
3 | // Purpose: MSW style art provider for ribbon interface | |
4 | // Author: Peter Cawley | |
5 | // Modified by: | |
6 | // Created: 2009-05-25 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (C) Peter Cawley | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
3c3ead1d PC |
18 | #if wxUSE_RIBBON |
19 | ||
4cf018e1 | 20 | #include "wx/ribbon/art.h" |
3c3ead1d PC |
21 | #include "wx/ribbon/art_internal.h" |
22 | #include "wx/ribbon/bar.h" | |
23 | #include "wx/ribbon/buttonbar.h" | |
24 | #include "wx/ribbon/gallery.h" | |
25 | #include "wx/ribbon/toolbar.h" | |
26 | ||
27 | #ifndef WX_PRECOMP | |
4cf018e1 | 28 | #include "wx/dcmemory.h" |
3c3ead1d PC |
29 | #endif |
30 | ||
31 | #ifdef __WXMSW__ | |
32 | #include "wx/msw/private.h" | |
33 | #endif | |
34 | ||
35 | static const char* const gallery_up_xpm[] = { | |
36 | "5 5 2 1", | |
37 | " c None", | |
38 | "x c #FF00FF", | |
39 | " ", | |
40 | " x ", | |
41 | " xxx ", | |
42 | "xxxxx", | |
43 | " "}; | |
44 | ||
45 | static const char* const gallery_down_xpm[] = { | |
46 | "5 5 2 1", | |
47 | " c None", | |
48 | "x c #FF00FF", | |
49 | " ", | |
50 | "xxxxx", | |
51 | " xxx ", | |
52 | " x ", | |
53 | " "}; | |
54 | ||
55 | static const char* const gallery_left_xpm[] = { | |
56 | "5 5 2 1", | |
57 | " c None", | |
58 | "x c #FF00FF", | |
59 | " x ", | |
60 | " xx ", | |
61 | " xxx ", | |
62 | " xx ", | |
63 | " x "}; | |
64 | ||
65 | static const char* const gallery_right_xpm[] = { | |
66 | "5 5 2 1", | |
67 | " c None", | |
68 | "x c #FF00FF", | |
69 | " x ", | |
70 | " xx ", | |
71 | " xxx ", | |
72 | " xx ", | |
73 | " x "}; | |
74 | ||
75 | static const char* const gallery_extension_xpm[] = { | |
76 | "5 5 2 1", | |
77 | " c None", | |
78 | "x c #FF00FF", | |
79 | "xxxxx", | |
80 | " ", | |
81 | "xxxxx", | |
82 | " xxx ", | |
83 | " x "}; | |
84 | ||
85 | wxRibbonMSWArtProvider::wxRibbonMSWArtProvider(bool set_colour_scheme) | |
86 | { | |
87 | m_flags = 0; | |
7d8c1fbc | 88 | m_tab_label_font = *wxNORMAL_FONT; |
3c3ead1d PC |
89 | m_button_bar_label_font = m_tab_label_font; |
90 | m_panel_label_font = m_tab_label_font; | |
91 | ||
92 | if(set_colour_scheme) | |
93 | { | |
94 | SetColourScheme( | |
95 | wxColour(194, 216, 241), | |
96 | wxColour(255, 223, 114), | |
97 | wxColour( 0, 0, 0)); | |
98 | } | |
99 | ||
100 | m_cached_tab_separator_visibility = -10.0; // valid visibilities are in range [0, 1] | |
101 | m_tab_separation_size = 3; | |
102 | m_page_border_left = 2; | |
103 | m_page_border_top = 1; | |
104 | m_page_border_right = 2; | |
105 | m_page_border_bottom = 3; | |
106 | m_panel_x_separation_size = 1; | |
107 | m_panel_y_separation_size = 1; | |
108 | m_tool_group_separation_size = 3; | |
109 | m_gallery_bitmap_padding_left_size = 4; | |
110 | m_gallery_bitmap_padding_right_size = 4; | |
111 | m_gallery_bitmap_padding_top_size = 4; | |
112 | m_gallery_bitmap_padding_bottom_size = 4; | |
113 | } | |
114 | ||
115 | wxRibbonMSWArtProvider::~wxRibbonMSWArtProvider() | |
116 | { | |
117 | } | |
118 | ||
119 | void wxRibbonMSWArtProvider::GetColourScheme( | |
120 | wxColour* primary, | |
121 | wxColour* secondary, | |
122 | wxColour* tertiary) const | |
123 | { | |
124 | if(primary != NULL) | |
125 | *primary = m_primary_scheme_colour; | |
126 | if(secondary != NULL) | |
127 | *secondary = m_secondary_scheme_colour; | |
128 | if(tertiary != NULL) | |
129 | *tertiary = m_tertiary_scheme_colour; | |
130 | } | |
131 | ||
132 | void wxRibbonMSWArtProvider::SetColourScheme( | |
133 | const wxColour& primary, | |
134 | const wxColour& secondary, | |
135 | const wxColour& tertiary) | |
136 | { | |
137 | m_primary_scheme_colour = primary; | |
138 | m_secondary_scheme_colour = secondary; | |
139 | m_tertiary_scheme_colour = tertiary; | |
140 | ||
141 | wxRibbonHSLColour primary_hsl(primary); | |
142 | wxRibbonHSLColour secondary_hsl(secondary); | |
143 | // tertiary not used for anything | |
144 | ||
145 | // Map primary saturation from [0, 1] to [.25, .75] | |
1edd6079 | 146 | bool primary_is_gray = false; |
4082ff84 | 147 | static const double gray_saturation_threshold = 0.01; |
1edd6079 PC |
148 | if(primary_hsl.saturation <= gray_saturation_threshold) |
149 | primary_is_gray = true; | |
150 | else | |
151 | { | |
152 | primary_hsl.saturation = cos(primary_hsl.saturation * M_PI) | |
153 | * -0.25 + 0.5; | |
154 | } | |
3c3ead1d PC |
155 | |
156 | // Map primary luminance from [0, 1] to [.23, .83] | |
157 | primary_hsl.luminance = cos(primary_hsl.luminance * M_PI) * -0.3 + 0.53; | |
158 | ||
159 | // Map secondary saturation from [0, 1] to [0.16, 0.84] | |
1edd6079 PC |
160 | bool secondary_is_gray = false; |
161 | if(secondary_hsl.saturation <= gray_saturation_threshold) | |
162 | secondary_is_gray = true; | |
163 | else | |
164 | { | |
165 | secondary_hsl.saturation = cos(secondary_hsl.saturation * M_PI) | |
166 | * -0.34 + 0.5; | |
167 | } | |
3c3ead1d PC |
168 | |
169 | // Map secondary luminance from [0, 1] to [0.1, 0.9] | |
170 | secondary_hsl.luminance = cos(secondary_hsl.luminance * M_PI) * -0.4 + 0.5; | |
171 | ||
172 | #define LikePrimary(h, s, l) \ | |
1edd6079 PC |
173 | primary_hsl.ShiftHue(h ## f).Saturated(primary_is_gray ? 0 : s ## f) \ |
174 | .Lighter(l ## f).ToRGB() | |
3c3ead1d | 175 | #define LikeSecondary(h, s, l) \ |
1edd6079 PC |
176 | secondary_hsl.ShiftHue(h ## f).Saturated(secondary_is_gray ? 0 : s ## f) \ |
177 | .Lighter(l ## f).ToRGB() | |
3c3ead1d PC |
178 | |
179 | m_page_border_pen = LikePrimary(1.4, 0.00, -0.08); | |
180 | ||
181 | m_page_background_top_colour = LikePrimary(-0.1, -0.03, 0.12); | |
182 | m_page_hover_background_top_colour = LikePrimary(-2.8, 0.27, 0.17); | |
183 | m_page_background_top_gradient_colour = LikePrimary(0.1, -0.10, 0.08); | |
184 | m_page_hover_background_top_gradient_colour = LikePrimary(3.2, 0.16, 0.13); | |
185 | m_page_background_colour = LikePrimary(0.4, -0.09, 0.05); | |
186 | m_page_hover_background_colour = LikePrimary(0.1, 0.19, 0.10); | |
187 | m_page_background_gradient_colour = LikePrimary(-3.2, 0.27, 0.10); | |
188 | m_page_hover_background_gradient_colour = LikePrimary(1.8, 0.01, 0.15); | |
189 | ||
190 | m_tab_active_background_colour = LikePrimary(-0.1, -0.31, 0.16); | |
191 | m_tab_active_background_gradient_colour = LikePrimary(-0.1, -0.03, 0.12); | |
192 | m_tab_separator_colour = LikePrimary(0.9, 0.24, 0.05); | |
193 | m_tab_ctrl_background_brush = LikePrimary(1.0, 0.39, 0.07); | |
194 | m_tab_hover_background_colour = LikePrimary(1.3, 0.15, 0.10); | |
195 | m_tab_hover_background_top_colour = LikePrimary(1.4, 0.36, 0.08); | |
ce00f59b | 196 | m_tab_border_pen = LikePrimary(1.4, 0.03, -0.05); |
3c3ead1d | 197 | m_tab_separator_gradient_colour = LikePrimary(1.7, -0.15, -0.18); |
ce00f59b | 198 | m_tab_hover_background_top_gradient_colour = LikePrimary(1.8, 0.34, 0.13); |
3c3ead1d PC |
199 | m_tab_label_colour = LikePrimary(4.3, 0.13, -0.49); |
200 | m_tab_hover_background_gradient_colour = LikeSecondary(-1.5, -0.34, 0.01); | |
201 | ||
202 | m_panel_minimised_border_gradient_pen = LikePrimary(-6.9, -0.17, -0.09); | |
203 | m_panel_minimised_border_pen = LikePrimary(-5.3, -0.24, -0.06); | |
204 | m_panel_border_gradient_pen = LikePrimary(-5.2, -0.15, -0.06); | |
205 | m_panel_border_pen = LikePrimary(-2.8, -0.32, 0.02); | |
206 | m_panel_label_background_brush = LikePrimary(-1.5, 0.03, 0.05); | |
207 | m_panel_active_background_gradient_colour = LikePrimary(0.5, 0.34, 0.05); | |
208 | m_panel_hover_label_background_brush = LikePrimary(1.0, 0.30, 0.09); | |
209 | m_panel_active_background_top_gradient_colour = LikePrimary(1.4, -0.17, -0.13); | |
210 | m_panel_active_background_colour = LikePrimary(1.6, -0.18, -0.18); | |
211 | m_panel_active_background_top_colour = LikePrimary(1.7, -0.20, -0.03); | |
212 | m_panel_label_colour = LikePrimary(2.8, -0.14, -0.35); | |
213 | m_panel_hover_label_colour = m_panel_label_colour; | |
214 | m_panel_minimised_label_colour = m_tab_label_colour; | |
215 | ||
216 | m_gallery_button_disabled_background_colour = LikePrimary(-2.8, -0.46, 0.09); | |
ce00f59b | 217 | m_gallery_button_disabled_background_top_brush = LikePrimary(-2.8, -0.36, 0.15); |
3c3ead1d PC |
218 | m_gallery_hover_background_brush = LikePrimary(-0.8, 0.05, 0.15); |
219 | m_gallery_border_pen = LikePrimary(0.7, -0.02, 0.03); | |
220 | m_gallery_button_background_top_brush = LikePrimary(0.8, 0.34, 0.13); | |
221 | m_gallery_button_background_colour = LikePrimary(1.3, 0.10, 0.08); | |
222 | // SetColour used so that the relevant bitmaps are generated | |
223 | SetColour(wxRIBBON_ART_GALLERY_BUTTON_FACE_COLOUR, LikePrimary(1.4, -0.21, -0.23)); | |
224 | SetColour(wxRIBBON_ART_GALLERY_BUTTON_HOVER_FACE_COLOUR, LikePrimary(1.5, -0.24, -0.29)); | |
225 | SetColour(wxRIBBON_ART_GALLERY_BUTTON_ACTIVE_FACE_COLOUR, LikePrimary(1.5, -0.24, -0.29)); | |
226 | SetColour(wxRIBBON_ART_GALLERY_BUTTON_DISABLED_FACE_COLOUR, LikePrimary(0.0, -1.0, 0.0)); | |
227 | m_gallery_button_disabled_background_gradient_colour = LikePrimary(1.5, -0.43, 0.12); | |
228 | m_gallery_button_background_gradient_colour = LikePrimary(1.7, 0.11, 0.09); | |
229 | m_gallery_item_border_pen = LikeSecondary(-3.9, -0.16, -0.14); | |
230 | m_gallery_button_hover_background_colour = LikeSecondary(-0.9, 0.16, -0.07); | |
231 | m_gallery_button_hover_background_gradient_colour = LikeSecondary(0.1, 0.12, 0.03); | |
232 | m_gallery_button_hover_background_top_brush = LikeSecondary(4.3, 0.16, 0.17); | |
233 | ||
234 | m_gallery_button_active_background_colour = LikeSecondary(-9.9, 0.03, -0.22); | |
235 | m_gallery_button_active_background_gradient_colour = LikeSecondary(-9.5, 0.14, -0.11); | |
236 | m_gallery_button_active_background_top_brush = LikeSecondary(-9.0, 0.15, -0.08); | |
ce00f59b | 237 | |
3c3ead1d PC |
238 | m_button_bar_label_colour = m_tab_label_colour; |
239 | m_button_bar_hover_border_pen = LikeSecondary(-6.2, -0.47, -0.14); | |
240 | m_button_bar_hover_background_gradient_colour = LikeSecondary(-0.6, 0.16, 0.04); | |
241 | m_button_bar_hover_background_colour = LikeSecondary(-0.2, 0.16, -0.10); | |
242 | m_button_bar_hover_background_top_gradient_colour = LikeSecondary(0.2, 0.16, 0.03); | |
243 | m_button_bar_hover_background_top_colour = LikeSecondary(8.8, 0.16, 0.17); | |
244 | m_button_bar_active_border_pen = LikeSecondary(-6.2, -0.47, -0.25); | |
245 | m_button_bar_active_background_top_colour = LikeSecondary(-8.4, 0.08, 0.06); | |
246 | m_button_bar_active_background_top_gradient_colour = LikeSecondary(-9.7, 0.13, -0.07); | |
247 | m_button_bar_active_background_colour = LikeSecondary(-9.9, 0.14, -0.14); | |
248 | m_button_bar_active_background_gradient_colour = LikeSecondary(-8.7, 0.17, -0.03); | |
249 | ||
250 | m_toolbar_border_pen = LikePrimary(1.4, -0.21, -0.16); | |
251 | SetColour(wxRIBBON_ART_TOOLBAR_FACE_COLOUR, LikePrimary(1.4, -0.17, -0.22)); | |
252 | m_tool_background_top_colour = LikePrimary(-1.9, -0.07, 0.06); | |
253 | m_tool_background_top_gradient_colour = LikePrimary(1.4, 0.12, 0.08); | |
254 | m_tool_background_colour = LikePrimary(1.4, -0.09, 0.03); | |
255 | m_tool_background_gradient_colour = LikePrimary(1.9, 0.11, 0.09); | |
256 | m_tool_hover_background_top_colour = LikeSecondary(3.4, 0.11, 0.16); | |
257 | m_tool_hover_background_top_gradient_colour = LikeSecondary(-1.4, 0.04, 0.08); | |
258 | m_tool_hover_background_colour = LikeSecondary(-1.8, 0.16, -0.12); | |
259 | m_tool_hover_background_gradient_colour = LikeSecondary(-2.6, 0.16, 0.05); | |
260 | m_tool_active_background_top_colour = LikeSecondary(-9.9, -0.12, -0.09); | |
261 | m_tool_active_background_top_gradient_colour = LikeSecondary(-8.5, 0.16, -0.12); | |
262 | m_tool_active_background_colour = LikeSecondary(-7.9, 0.16, -0.20); | |
263 | m_tool_active_background_gradient_colour = LikeSecondary(-6.6, 0.16, -0.10); | |
264 | ||
265 | #undef LikePrimary | |
266 | #undef LikeSecondary | |
267 | ||
268 | // Invalidate cached tab separator | |
269 | m_cached_tab_separator_visibility = -1.0; | |
270 | } | |
271 | ||
272 | wxRibbonArtProvider* wxRibbonMSWArtProvider::Clone() const | |
273 | { | |
274 | wxRibbonMSWArtProvider *copy = new wxRibbonMSWArtProvider; | |
275 | CloneTo(copy); | |
276 | return copy; | |
277 | } | |
278 | ||
279 | void wxRibbonMSWArtProvider::CloneTo(wxRibbonMSWArtProvider* copy) const | |
280 | { | |
281 | for(int i = 0; i < 4; ++i) | |
282 | { | |
283 | copy->m_gallery_up_bitmap[i] = m_gallery_up_bitmap[i]; | |
284 | copy->m_gallery_down_bitmap[i] = m_gallery_down_bitmap[i]; | |
285 | copy->m_gallery_extension_bitmap[i] = m_gallery_extension_bitmap[i]; | |
286 | } | |
287 | copy->m_toolbar_drop_bitmap = m_toolbar_drop_bitmap; | |
288 | ||
289 | copy->m_primary_scheme_colour = m_primary_scheme_colour; | |
290 | copy->m_secondary_scheme_colour = m_secondary_scheme_colour; | |
291 | copy->m_tertiary_scheme_colour = m_tertiary_scheme_colour; | |
292 | ||
293 | copy->m_button_bar_label_colour = m_button_bar_label_colour; | |
294 | copy->m_tab_label_colour = m_tab_label_colour; | |
295 | copy->m_tab_separator_colour = m_tab_separator_colour; | |
296 | copy->m_tab_separator_gradient_colour = m_tab_separator_gradient_colour; | |
297 | copy->m_tab_active_background_colour = m_tab_hover_background_colour; | |
298 | copy->m_tab_active_background_gradient_colour = m_tab_hover_background_gradient_colour; | |
299 | copy->m_tab_hover_background_colour = m_tab_hover_background_colour; | |
300 | copy->m_tab_hover_background_gradient_colour = m_tab_hover_background_gradient_colour; | |
301 | copy->m_tab_hover_background_top_colour = m_tab_hover_background_top_colour; | |
302 | copy->m_tab_hover_background_top_gradient_colour = m_tab_hover_background_top_gradient_colour; | |
303 | copy->m_panel_label_colour = m_panel_label_colour; | |
304 | copy->m_panel_hover_label_colour = m_panel_hover_label_colour; | |
305 | copy->m_panel_minimised_label_colour = m_panel_minimised_label_colour; | |
306 | copy->m_panel_active_background_colour = m_panel_active_background_colour; | |
307 | copy->m_panel_active_background_gradient_colour = m_panel_active_background_gradient_colour; | |
308 | copy->m_panel_active_background_top_colour = m_panel_active_background_top_colour; | |
309 | copy->m_panel_active_background_top_gradient_colour = m_panel_active_background_top_gradient_colour; | |
310 | copy->m_page_background_colour = m_page_background_colour; | |
311 | copy->m_page_background_gradient_colour = m_page_background_gradient_colour; | |
312 | copy->m_page_background_top_colour = m_page_background_top_colour; | |
313 | copy->m_page_background_top_gradient_colour = m_page_background_top_gradient_colour; | |
314 | copy->m_page_hover_background_colour = m_page_hover_background_colour; | |
315 | copy->m_page_hover_background_gradient_colour = m_page_hover_background_gradient_colour; | |
316 | copy->m_page_hover_background_top_colour = m_page_hover_background_top_colour; | |
317 | copy->m_page_hover_background_top_gradient_colour = m_page_hover_background_top_gradient_colour; | |
318 | copy->m_button_bar_hover_background_colour = m_button_bar_hover_background_colour; | |
319 | copy->m_button_bar_hover_background_gradient_colour = m_button_bar_hover_background_gradient_colour; | |
320 | copy->m_button_bar_hover_background_top_colour = m_button_bar_hover_background_top_colour; | |
321 | copy->m_button_bar_hover_background_top_gradient_colour = m_button_bar_hover_background_top_gradient_colour; | |
322 | copy->m_button_bar_active_background_colour = m_button_bar_active_background_colour; | |
323 | copy->m_button_bar_active_background_gradient_colour = m_button_bar_active_background_gradient_colour; | |
324 | copy->m_button_bar_active_background_top_colour = m_button_bar_active_background_top_colour; | |
325 | copy->m_button_bar_active_background_top_gradient_colour = m_button_bar_active_background_top_gradient_colour; | |
326 | copy->m_gallery_button_background_colour = m_gallery_button_background_colour; | |
ce00f59b | 327 | copy->m_gallery_button_background_gradient_colour = m_gallery_button_background_gradient_colour; |
3c3ead1d PC |
328 | copy->m_gallery_button_hover_background_colour = m_gallery_button_hover_background_colour; |
329 | copy->m_gallery_button_hover_background_gradient_colour = m_gallery_button_hover_background_gradient_colour; | |
330 | copy->m_gallery_button_active_background_colour = m_gallery_button_active_background_colour; | |
331 | copy->m_gallery_button_active_background_gradient_colour = m_gallery_button_active_background_gradient_colour; | |
332 | copy->m_gallery_button_disabled_background_colour = m_gallery_button_disabled_background_colour; | |
333 | copy->m_gallery_button_disabled_background_gradient_colour = m_gallery_button_disabled_background_gradient_colour; | |
334 | copy->m_gallery_button_face_colour = m_gallery_button_face_colour; | |
335 | copy->m_gallery_button_hover_face_colour = m_gallery_button_hover_face_colour; | |
336 | copy->m_gallery_button_active_face_colour = m_gallery_button_active_face_colour; | |
337 | copy->m_gallery_button_disabled_face_colour = m_gallery_button_disabled_face_colour; | |
338 | ||
339 | copy->m_tab_ctrl_background_brush = m_tab_ctrl_background_brush; | |
340 | copy->m_panel_label_background_brush = m_panel_label_background_brush; | |
341 | copy->m_panel_hover_label_background_brush = m_panel_hover_label_background_brush; | |
342 | copy->m_gallery_hover_background_brush = m_gallery_hover_background_brush; | |
343 | copy->m_gallery_button_background_top_brush = m_gallery_button_background_top_brush; | |
344 | copy->m_gallery_button_hover_background_top_brush = m_gallery_button_hover_background_top_brush; | |
345 | copy->m_gallery_button_active_background_top_brush = m_gallery_button_active_background_top_brush; | |
346 | copy->m_gallery_button_disabled_background_top_brush = m_gallery_button_disabled_background_top_brush; | |
347 | ||
348 | copy->m_tab_label_font = m_tab_label_font; | |
349 | copy->m_button_bar_label_font = m_button_bar_label_font; | |
350 | copy->m_panel_label_font = m_panel_label_font; | |
351 | ||
352 | copy->m_page_border_pen = m_page_border_pen; | |
353 | copy->m_panel_border_pen = m_panel_border_pen; | |
354 | copy->m_panel_border_gradient_pen = m_panel_border_gradient_pen; | |
355 | copy->m_panel_minimised_border_pen = m_panel_minimised_border_pen; | |
356 | copy->m_panel_minimised_border_gradient_pen = m_panel_minimised_border_gradient_pen; | |
357 | copy->m_tab_border_pen = m_tab_border_pen; | |
358 | copy->m_gallery_border_pen = m_gallery_border_pen; | |
359 | copy->m_button_bar_hover_border_pen = m_button_bar_hover_border_pen; | |
360 | copy->m_button_bar_active_border_pen = m_button_bar_active_border_pen; | |
361 | copy->m_gallery_item_border_pen = m_gallery_item_border_pen; | |
362 | copy->m_toolbar_border_pen = m_toolbar_border_pen; | |
363 | ||
364 | copy->m_flags = m_flags; | |
365 | copy->m_tab_separation_size = m_tab_separation_size; | |
366 | copy->m_page_border_left = m_page_border_left; | |
367 | copy->m_page_border_top = m_page_border_top; | |
368 | copy->m_page_border_right = m_page_border_right; | |
369 | copy->m_page_border_bottom = m_page_border_bottom; | |
370 | copy->m_panel_x_separation_size = m_panel_x_separation_size; | |
371 | copy->m_panel_y_separation_size = m_panel_y_separation_size; | |
372 | copy->m_gallery_bitmap_padding_left_size = m_gallery_bitmap_padding_left_size; | |
373 | copy->m_gallery_bitmap_padding_right_size = m_gallery_bitmap_padding_right_size; | |
374 | copy->m_gallery_bitmap_padding_top_size = m_gallery_bitmap_padding_top_size; | |
375 | copy->m_gallery_bitmap_padding_bottom_size = m_gallery_bitmap_padding_bottom_size; | |
376 | } | |
377 | ||
378 | long wxRibbonMSWArtProvider::GetFlags() const | |
379 | { | |
380 | return m_flags; | |
381 | } | |
382 | ||
383 | void wxRibbonMSWArtProvider::SetFlags(long flags) | |
384 | { | |
385 | if((flags ^ m_flags) & wxRIBBON_BAR_FLOW_VERTICAL) | |
386 | { | |
387 | if(flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
388 | { | |
389 | m_page_border_left++; | |
390 | m_page_border_right++; | |
391 | m_page_border_top--; | |
392 | m_page_border_bottom--; | |
393 | } | |
394 | else | |
395 | { | |
396 | m_page_border_left--; | |
397 | m_page_border_right--; | |
398 | m_page_border_top++; | |
399 | m_page_border_bottom++; | |
400 | } | |
401 | } | |
402 | m_flags = flags; | |
403 | ||
404 | // Need to reload some bitmaps when flags change | |
405 | #define Reload(setting) SetColour(setting, GetColour(setting)) | |
406 | Reload(wxRIBBON_ART_GALLERY_BUTTON_FACE_COLOUR); | |
407 | Reload(wxRIBBON_ART_GALLERY_BUTTON_HOVER_FACE_COLOUR); | |
408 | Reload(wxRIBBON_ART_GALLERY_BUTTON_ACTIVE_FACE_COLOUR); | |
409 | Reload(wxRIBBON_ART_GALLERY_BUTTON_DISABLED_FACE_COLOUR); | |
410 | #undef Reload | |
411 | } | |
412 | ||
413 | int wxRibbonMSWArtProvider::GetMetric(int id) const | |
414 | { | |
415 | switch(id) | |
416 | { | |
417 | case wxRIBBON_ART_TAB_SEPARATION_SIZE: | |
418 | return m_tab_separation_size; | |
419 | case wxRIBBON_ART_PAGE_BORDER_LEFT_SIZE: | |
420 | return m_page_border_left; | |
421 | case wxRIBBON_ART_PAGE_BORDER_TOP_SIZE: | |
422 | return m_page_border_top; | |
423 | case wxRIBBON_ART_PAGE_BORDER_RIGHT_SIZE: | |
424 | return m_page_border_right; | |
425 | case wxRIBBON_ART_PAGE_BORDER_BOTTOM_SIZE: | |
426 | return m_page_border_bottom; | |
427 | case wxRIBBON_ART_PANEL_X_SEPARATION_SIZE: | |
428 | return m_panel_x_separation_size; | |
429 | case wxRIBBON_ART_PANEL_Y_SEPARATION_SIZE: | |
430 | return m_panel_y_separation_size; | |
431 | case wxRIBBON_ART_TOOL_GROUP_SEPARATION_SIZE: | |
432 | return m_tool_group_separation_size; | |
433 | case wxRIBBON_ART_GALLERY_BITMAP_PADDING_LEFT_SIZE: | |
434 | return m_gallery_bitmap_padding_left_size; | |
435 | case wxRIBBON_ART_GALLERY_BITMAP_PADDING_RIGHT_SIZE: | |
436 | return m_gallery_bitmap_padding_right_size; | |
437 | case wxRIBBON_ART_GALLERY_BITMAP_PADDING_TOP_SIZE: | |
438 | return m_gallery_bitmap_padding_top_size; | |
439 | case wxRIBBON_ART_GALLERY_BITMAP_PADDING_BOTTOM_SIZE: | |
440 | return m_gallery_bitmap_padding_bottom_size; | |
441 | default: | |
442 | wxFAIL_MSG(wxT("Invalid Metric Ordinal")); | |
443 | break; | |
444 | } | |
445 | ||
446 | return 0; | |
447 | } | |
448 | ||
449 | void wxRibbonMSWArtProvider::SetMetric(int id, int new_val) | |
450 | { | |
451 | switch(id) | |
452 | { | |
453 | case wxRIBBON_ART_TAB_SEPARATION_SIZE: | |
454 | m_tab_separation_size = new_val; | |
455 | break; | |
456 | case wxRIBBON_ART_PAGE_BORDER_LEFT_SIZE: | |
457 | m_page_border_left = new_val; | |
458 | break; | |
459 | case wxRIBBON_ART_PAGE_BORDER_TOP_SIZE: | |
460 | m_page_border_top = new_val; | |
461 | break; | |
462 | case wxRIBBON_ART_PAGE_BORDER_RIGHT_SIZE: | |
463 | m_page_border_right = new_val; | |
464 | break; | |
465 | case wxRIBBON_ART_PAGE_BORDER_BOTTOM_SIZE: | |
466 | m_page_border_bottom = new_val; | |
467 | break; | |
468 | case wxRIBBON_ART_PANEL_X_SEPARATION_SIZE: | |
469 | m_panel_x_separation_size = new_val; | |
470 | break; | |
471 | case wxRIBBON_ART_PANEL_Y_SEPARATION_SIZE: | |
472 | m_panel_y_separation_size = new_val; | |
473 | break; | |
474 | case wxRIBBON_ART_TOOL_GROUP_SEPARATION_SIZE: | |
475 | m_tool_group_separation_size = new_val; | |
476 | break; | |
477 | case wxRIBBON_ART_GALLERY_BITMAP_PADDING_LEFT_SIZE: | |
478 | m_gallery_bitmap_padding_left_size = new_val; | |
479 | break; | |
480 | case wxRIBBON_ART_GALLERY_BITMAP_PADDING_RIGHT_SIZE: | |
481 | m_gallery_bitmap_padding_right_size = new_val; | |
482 | break; | |
483 | case wxRIBBON_ART_GALLERY_BITMAP_PADDING_TOP_SIZE: | |
484 | m_gallery_bitmap_padding_top_size = new_val; | |
485 | break; | |
486 | case wxRIBBON_ART_GALLERY_BITMAP_PADDING_BOTTOM_SIZE: | |
487 | m_gallery_bitmap_padding_bottom_size = new_val; | |
488 | break; | |
489 | default: | |
490 | wxFAIL_MSG(wxT("Invalid Metric Ordinal")); | |
491 | break; | |
492 | } | |
493 | } | |
494 | ||
495 | void wxRibbonMSWArtProvider::SetFont(int id, const wxFont& font) | |
496 | { | |
497 | switch(id) | |
498 | { | |
499 | case wxRIBBON_ART_TAB_LABEL_FONT: | |
500 | m_tab_label_font = font; | |
501 | break; | |
502 | case wxRIBBON_ART_BUTTON_BAR_LABEL_FONT: | |
503 | m_button_bar_label_font = font; | |
504 | break; | |
505 | case wxRIBBON_ART_PANEL_LABEL_FONT: | |
506 | m_panel_label_font = font; | |
507 | break; | |
508 | default: | |
509 | wxFAIL_MSG(wxT("Invalid Metric Ordinal")); | |
510 | break; | |
511 | } | |
512 | } | |
513 | ||
514 | wxFont wxRibbonMSWArtProvider::GetFont(int id) const | |
515 | { | |
516 | switch(id) | |
517 | { | |
518 | case wxRIBBON_ART_TAB_LABEL_FONT: | |
519 | return m_tab_label_font; | |
520 | case wxRIBBON_ART_BUTTON_BAR_LABEL_FONT: | |
521 | return m_button_bar_label_font; | |
522 | case wxRIBBON_ART_PANEL_LABEL_FONT: | |
523 | return m_panel_label_font; | |
524 | default: | |
525 | wxFAIL_MSG(wxT("Invalid Metric Ordinal")); | |
526 | break; | |
527 | } | |
528 | ||
529 | return wxNullFont; | |
530 | } | |
531 | ||
532 | wxColour wxRibbonMSWArtProvider::GetColour(int id) const | |
533 | { | |
534 | switch(id) | |
535 | { | |
536 | case wxRIBBON_ART_BUTTON_BAR_LABEL_COLOUR: | |
537 | return m_button_bar_label_colour; | |
538 | case wxRIBBON_ART_BUTTON_BAR_HOVER_BORDER_COLOUR: | |
539 | return m_button_bar_hover_border_pen.GetColour(); | |
540 | case wxRIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_TOP_COLOUR: | |
541 | return m_button_bar_hover_background_top_colour; | |
542 | case wxRIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_TOP_GRADIENT_COLOUR: | |
543 | return m_button_bar_hover_background_top_gradient_colour; | |
544 | case wxRIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_COLOUR: | |
545 | return m_button_bar_hover_background_colour; | |
546 | case wxRIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_GRADIENT_COLOUR: | |
547 | return m_button_bar_hover_background_gradient_colour; | |
548 | case wxRIBBON_ART_BUTTON_BAR_ACTIVE_BORDER_COLOUR: | |
549 | return m_button_bar_active_border_pen.GetColour(); | |
550 | case wxRIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_TOP_COLOUR: | |
551 | return m_button_bar_active_background_top_colour; | |
552 | case wxRIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_TOP_GRADIENT_COLOUR: | |
553 | return m_button_bar_active_background_top_gradient_colour; | |
554 | case wxRIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_COLOUR: | |
555 | return m_button_bar_active_background_colour; | |
556 | case wxRIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_GRADIENT_COLOUR: | |
557 | return m_button_bar_active_background_gradient_colour; | |
558 | case wxRIBBON_ART_GALLERY_BORDER_COLOUR: | |
559 | return m_gallery_border_pen.GetColour(); | |
560 | case wxRIBBON_ART_GALLERY_HOVER_BACKGROUND_COLOUR: | |
561 | return m_gallery_hover_background_brush.GetColour(); | |
562 | case wxRIBBON_ART_GALLERY_BUTTON_BACKGROUND_COLOUR: | |
563 | return m_gallery_button_background_colour; | |
564 | case wxRIBBON_ART_GALLERY_BUTTON_BACKGROUND_GRADIENT_COLOUR: | |
565 | return m_gallery_button_background_gradient_colour; | |
566 | case wxRIBBON_ART_GALLERY_BUTTON_BACKGROUND_TOP_COLOUR: | |
567 | return m_gallery_button_background_top_brush.GetColour(); | |
568 | case wxRIBBON_ART_GALLERY_BUTTON_FACE_COLOUR: | |
569 | return m_gallery_button_face_colour; | |
570 | case wxRIBBON_ART_GALLERY_BUTTON_HOVER_BACKGROUND_COLOUR: | |
571 | return m_gallery_button_hover_background_colour; | |
572 | case wxRIBBON_ART_GALLERY_BUTTON_HOVER_BACKGROUND_GRADIENT_COLOUR: | |
573 | return m_gallery_button_hover_background_gradient_colour; | |
574 | case wxRIBBON_ART_GALLERY_BUTTON_HOVER_BACKGROUND_TOP_COLOUR: | |
575 | return m_gallery_button_hover_background_top_brush.GetColour(); | |
576 | case wxRIBBON_ART_GALLERY_BUTTON_HOVER_FACE_COLOUR: | |
577 | return m_gallery_button_face_colour; | |
578 | case wxRIBBON_ART_GALLERY_BUTTON_ACTIVE_BACKGROUND_COLOUR: | |
579 | return m_gallery_button_active_background_colour; | |
580 | case wxRIBBON_ART_GALLERY_BUTTON_ACTIVE_BACKGROUND_GRADIENT_COLOUR: | |
581 | return m_gallery_button_active_background_gradient_colour; | |
582 | case wxRIBBON_ART_GALLERY_BUTTON_ACTIVE_BACKGROUND_TOP_COLOUR: | |
583 | return m_gallery_button_background_top_brush.GetColour(); | |
584 | case wxRIBBON_ART_GALLERY_BUTTON_ACTIVE_FACE_COLOUR: | |
585 | return m_gallery_button_active_face_colour; | |
586 | case wxRIBBON_ART_GALLERY_BUTTON_DISABLED_BACKGROUND_COLOUR: | |
587 | return m_gallery_button_disabled_background_colour; | |
588 | case wxRIBBON_ART_GALLERY_BUTTON_DISABLED_BACKGROUND_GRADIENT_COLOUR: | |
589 | return m_gallery_button_disabled_background_gradient_colour; | |
590 | case wxRIBBON_ART_GALLERY_BUTTON_DISABLED_BACKGROUND_TOP_COLOUR: | |
591 | return m_gallery_button_disabled_background_top_brush.GetColour(); | |
592 | case wxRIBBON_ART_GALLERY_BUTTON_DISABLED_FACE_COLOUR: | |
593 | return m_gallery_button_disabled_face_colour; | |
594 | case wxRIBBON_ART_GALLERY_ITEM_BORDER_COLOUR: | |
595 | return m_gallery_item_border_pen.GetColour(); | |
596 | case wxRIBBON_ART_TAB_CTRL_BACKGROUND_COLOUR: | |
597 | case wxRIBBON_ART_TAB_CTRL_BACKGROUND_GRADIENT_COLOUR: | |
598 | return m_tab_ctrl_background_brush.GetColour(); | |
599 | case wxRIBBON_ART_TAB_LABEL_COLOUR: | |
600 | return m_tab_label_colour; | |
601 | case wxRIBBON_ART_TAB_SEPARATOR_COLOUR: | |
602 | return m_tab_separator_colour; | |
603 | case wxRIBBON_ART_TAB_SEPARATOR_GRADIENT_COLOUR: | |
604 | return m_tab_separator_gradient_colour; | |
605 | case wxRIBBON_ART_TAB_ACTIVE_BACKGROUND_TOP_COLOUR: | |
606 | case wxRIBBON_ART_TAB_ACTIVE_BACKGROUND_TOP_GRADIENT_COLOUR: | |
607 | return wxColour(0, 0, 0); | |
608 | case wxRIBBON_ART_TAB_ACTIVE_BACKGROUND_COLOUR: | |
609 | return m_tab_active_background_colour; | |
610 | case wxRIBBON_ART_TAB_ACTIVE_BACKGROUND_GRADIENT_COLOUR: | |
611 | return m_tab_active_background_gradient_colour; | |
612 | case wxRIBBON_ART_TAB_HOVER_BACKGROUND_TOP_COLOUR: | |
613 | return m_tab_hover_background_top_colour; | |
614 | case wxRIBBON_ART_TAB_HOVER_BACKGROUND_TOP_GRADIENT_COLOUR: | |
615 | return m_tab_hover_background_top_gradient_colour; | |
616 | case wxRIBBON_ART_TAB_HOVER_BACKGROUND_COLOUR: | |
617 | return m_tab_hover_background_colour; | |
618 | case wxRIBBON_ART_TAB_HOVER_BACKGROUND_GRADIENT_COLOUR: | |
619 | return m_tab_hover_background_gradient_colour; | |
620 | case wxRIBBON_ART_TAB_BORDER_COLOUR: | |
621 | return m_tab_border_pen.GetColour(); | |
622 | case wxRIBBON_ART_PANEL_BORDER_COLOUR: | |
623 | return m_panel_border_pen.GetColour(); | |
624 | case wxRIBBON_ART_PANEL_BORDER_GRADIENT_COLOUR: | |
625 | return m_panel_border_gradient_pen.GetColour(); | |
626 | case wxRIBBON_ART_PANEL_MINIMISED_BORDER_COLOUR: | |
627 | return m_panel_minimised_border_pen.GetColour(); | |
628 | case wxRIBBON_ART_PANEL_MINIMISED_BORDER_GRADIENT_COLOUR: | |
629 | return m_panel_minimised_border_gradient_pen.GetColour(); | |
630 | case wxRIBBON_ART_PANEL_LABEL_BACKGROUND_COLOUR: | |
631 | case wxRIBBON_ART_PANEL_LABEL_BACKGROUND_GRADIENT_COLOUR: | |
632 | return m_panel_label_background_brush.GetColour(); | |
633 | case wxRIBBON_ART_PANEL_LABEL_COLOUR: | |
634 | return m_panel_label_colour; | |
635 | case wxRIBBON_ART_PANEL_MINIMISED_LABEL_COLOUR: | |
636 | return m_panel_minimised_label_colour; | |
637 | case wxRIBBON_ART_PANEL_HOVER_LABEL_BACKGROUND_COLOUR: | |
638 | case wxRIBBON_ART_PANEL_HOVER_LABEL_BACKGROUND_GRADIENT_COLOUR: | |
639 | return m_panel_hover_label_background_brush.GetColour(); | |
640 | case wxRIBBON_ART_PANEL_HOVER_LABEL_COLOUR: | |
641 | return m_panel_hover_label_colour; | |
642 | case wxRIBBON_ART_PANEL_ACTIVE_BACKGROUND_TOP_COLOUR: | |
643 | return m_panel_active_background_top_colour; | |
644 | case wxRIBBON_ART_PANEL_ACTIVE_BACKGROUND_TOP_GRADIENT_COLOUR: | |
645 | return m_panel_active_background_top_gradient_colour; | |
646 | case wxRIBBON_ART_PANEL_ACTIVE_BACKGROUND_COLOUR: | |
647 | return m_panel_active_background_colour; | |
648 | case wxRIBBON_ART_PANEL_ACTIVE_BACKGROUND_GRADIENT_COLOUR: | |
649 | return m_panel_active_background_gradient_colour; | |
650 | case wxRIBBON_ART_PAGE_BORDER_COLOUR: | |
651 | return m_page_border_pen.GetColour(); | |
652 | case wxRIBBON_ART_PAGE_BACKGROUND_TOP_COLOUR: | |
653 | return m_page_background_top_colour; | |
654 | case wxRIBBON_ART_PAGE_BACKGROUND_TOP_GRADIENT_COLOUR: | |
655 | return m_page_background_top_gradient_colour; | |
656 | case wxRIBBON_ART_PAGE_BACKGROUND_COLOUR: | |
657 | return m_page_background_colour; | |
658 | case wxRIBBON_ART_PAGE_BACKGROUND_GRADIENT_COLOUR: | |
659 | return m_page_background_gradient_colour; | |
660 | case wxRIBBON_ART_PAGE_HOVER_BACKGROUND_TOP_COLOUR: | |
661 | return m_page_hover_background_top_colour; | |
662 | case wxRIBBON_ART_PAGE_HOVER_BACKGROUND_TOP_GRADIENT_COLOUR: | |
663 | return m_page_hover_background_top_gradient_colour; | |
664 | case wxRIBBON_ART_PAGE_HOVER_BACKGROUND_COLOUR: | |
665 | return m_page_hover_background_colour; | |
666 | case wxRIBBON_ART_PAGE_HOVER_BACKGROUND_GRADIENT_COLOUR: | |
667 | return m_page_hover_background_gradient_colour; | |
668 | case wxRIBBON_ART_TOOLBAR_BORDER_COLOUR: | |
669 | case wxRIBBON_ART_TOOLBAR_HOVER_BORDER_COLOUR: | |
670 | return m_toolbar_border_pen.GetColour(); | |
671 | case wxRIBBON_ART_TOOLBAR_FACE_COLOUR: | |
672 | return m_tool_face_colour; | |
673 | default: | |
674 | wxFAIL_MSG(wxT("Invalid Metric Ordinal")); | |
675 | break; | |
676 | } | |
677 | ||
678 | return wxColour(); | |
679 | } | |
680 | ||
681 | void wxRibbonMSWArtProvider::SetColour(int id, const wxColor& colour) | |
682 | { | |
683 | switch(id) | |
684 | { | |
685 | case wxRIBBON_ART_BUTTON_BAR_LABEL_COLOUR: | |
686 | m_button_bar_label_colour = colour; | |
687 | break; | |
688 | case wxRIBBON_ART_BUTTON_BAR_HOVER_BORDER_COLOUR: | |
689 | m_button_bar_hover_border_pen.SetColour(colour); | |
690 | break; | |
691 | case wxRIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_TOP_COLOUR: | |
692 | m_button_bar_hover_background_top_colour = colour; | |
693 | break; | |
694 | case wxRIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_TOP_GRADIENT_COLOUR: | |
695 | m_button_bar_hover_background_top_gradient_colour = colour; | |
696 | break; | |
697 | case wxRIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_COLOUR: | |
698 | m_button_bar_hover_background_colour = colour; | |
699 | break; | |
700 | case wxRIBBON_ART_BUTTON_BAR_HOVER_BACKGROUND_GRADIENT_COLOUR: | |
701 | m_button_bar_hover_background_gradient_colour = colour; | |
702 | break; | |
703 | case wxRIBBON_ART_BUTTON_BAR_ACTIVE_BORDER_COLOUR: | |
704 | m_button_bar_active_border_pen.SetColour(colour); | |
705 | break; | |
706 | case wxRIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_TOP_COLOUR: | |
707 | m_button_bar_active_background_top_colour = colour; | |
708 | break; | |
709 | case wxRIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_TOP_GRADIENT_COLOUR: | |
710 | m_button_bar_active_background_top_gradient_colour = colour; | |
711 | break; | |
712 | case wxRIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_COLOUR: | |
713 | m_button_bar_active_background_colour = colour; | |
714 | break; | |
715 | case wxRIBBON_ART_BUTTON_BAR_ACTIVE_BACKGROUND_GRADIENT_COLOUR: | |
716 | m_button_bar_active_background_gradient_colour = colour; | |
717 | break; | |
718 | case wxRIBBON_ART_GALLERY_BORDER_COLOUR: | |
719 | m_gallery_border_pen.SetColour(colour); | |
720 | break; | |
721 | case wxRIBBON_ART_GALLERY_HOVER_BACKGROUND_COLOUR: | |
722 | m_gallery_hover_background_brush.SetColour(colour); | |
723 | break; | |
724 | case wxRIBBON_ART_GALLERY_BUTTON_BACKGROUND_COLOUR: | |
725 | m_gallery_button_background_colour = colour; | |
726 | break; | |
727 | case wxRIBBON_ART_GALLERY_BUTTON_BACKGROUND_GRADIENT_COLOUR: | |
728 | m_gallery_button_background_gradient_colour = colour; | |
729 | break; | |
730 | case wxRIBBON_ART_GALLERY_BUTTON_BACKGROUND_TOP_COLOUR: | |
731 | m_gallery_button_background_top_brush.SetColour(colour); | |
732 | break; | |
733 | case wxRIBBON_ART_GALLERY_BUTTON_FACE_COLOUR: | |
734 | m_gallery_button_face_colour = colour; | |
735 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
736 | { | |
737 | m_gallery_up_bitmap[0] = wxRibbonLoadPixmap(gallery_left_xpm, colour); | |
738 | m_gallery_down_bitmap[0] = wxRibbonLoadPixmap(gallery_right_xpm, colour); | |
739 | } | |
740 | else | |
741 | { | |
742 | m_gallery_up_bitmap[0] = wxRibbonLoadPixmap(gallery_up_xpm, colour); | |
743 | m_gallery_down_bitmap[0] = wxRibbonLoadPixmap(gallery_down_xpm, colour); | |
744 | } | |
745 | m_gallery_extension_bitmap[0] = wxRibbonLoadPixmap(gallery_extension_xpm, colour); | |
746 | break; | |
747 | case wxRIBBON_ART_GALLERY_BUTTON_HOVER_BACKGROUND_COLOUR: | |
748 | m_gallery_button_hover_background_colour = colour; | |
749 | break; | |
750 | case wxRIBBON_ART_GALLERY_BUTTON_HOVER_BACKGROUND_GRADIENT_COLOUR: | |
751 | m_gallery_button_hover_background_gradient_colour = colour; | |
752 | break; | |
753 | case wxRIBBON_ART_GALLERY_BUTTON_HOVER_BACKGROUND_TOP_COLOUR: | |
754 | m_gallery_button_hover_background_top_brush.SetColour(colour); | |
755 | break; | |
756 | case wxRIBBON_ART_GALLERY_BUTTON_HOVER_FACE_COLOUR: | |
757 | m_gallery_button_hover_face_colour = colour; | |
758 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
759 | { | |
760 | m_gallery_up_bitmap[1] = wxRibbonLoadPixmap(gallery_left_xpm, colour); | |
761 | m_gallery_down_bitmap[1] = wxRibbonLoadPixmap(gallery_right_xpm, colour); | |
762 | } | |
763 | else | |
764 | { | |
765 | m_gallery_up_bitmap[1] = wxRibbonLoadPixmap(gallery_up_xpm, colour); | |
766 | m_gallery_down_bitmap[1] = wxRibbonLoadPixmap(gallery_down_xpm, colour); | |
767 | } | |
768 | m_gallery_extension_bitmap[1] = wxRibbonLoadPixmap(gallery_extension_xpm, colour); | |
769 | break; | |
770 | case wxRIBBON_ART_GALLERY_BUTTON_ACTIVE_BACKGROUND_COLOUR: | |
771 | m_gallery_button_active_background_colour = colour; | |
772 | break; | |
773 | case wxRIBBON_ART_GALLERY_BUTTON_ACTIVE_BACKGROUND_GRADIENT_COLOUR: | |
774 | m_gallery_button_active_background_gradient_colour = colour; | |
775 | break; | |
776 | case wxRIBBON_ART_GALLERY_BUTTON_ACTIVE_BACKGROUND_TOP_COLOUR: | |
777 | m_gallery_button_background_top_brush.SetColour(colour); | |
778 | break; | |
779 | case wxRIBBON_ART_GALLERY_BUTTON_ACTIVE_FACE_COLOUR: | |
780 | m_gallery_button_active_face_colour = colour; | |
781 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
782 | { | |
783 | m_gallery_up_bitmap[2] = wxRibbonLoadPixmap(gallery_left_xpm, colour); | |
784 | m_gallery_down_bitmap[2] = wxRibbonLoadPixmap(gallery_right_xpm, colour); | |
785 | } | |
786 | else | |
787 | { | |
788 | m_gallery_up_bitmap[2] = wxRibbonLoadPixmap(gallery_up_xpm, colour); | |
789 | m_gallery_down_bitmap[2] = wxRibbonLoadPixmap(gallery_down_xpm, colour); | |
790 | } | |
791 | m_gallery_extension_bitmap[2] = wxRibbonLoadPixmap(gallery_extension_xpm, colour); | |
792 | break; | |
793 | case wxRIBBON_ART_GALLERY_BUTTON_DISABLED_BACKGROUND_COLOUR: | |
794 | m_gallery_button_disabled_background_colour = colour; | |
795 | break; | |
796 | case wxRIBBON_ART_GALLERY_BUTTON_DISABLED_BACKGROUND_GRADIENT_COLOUR: | |
797 | m_gallery_button_disabled_background_gradient_colour = colour; | |
798 | break; | |
799 | case wxRIBBON_ART_GALLERY_BUTTON_DISABLED_BACKGROUND_TOP_COLOUR: | |
800 | m_gallery_button_disabled_background_top_brush.SetColour(colour); | |
801 | break; | |
802 | case wxRIBBON_ART_GALLERY_BUTTON_DISABLED_FACE_COLOUR: | |
803 | m_gallery_button_disabled_face_colour = colour; | |
804 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
805 | { | |
806 | m_gallery_up_bitmap[3] = wxRibbonLoadPixmap(gallery_left_xpm, colour); | |
807 | m_gallery_down_bitmap[3] = wxRibbonLoadPixmap(gallery_right_xpm, colour); | |
808 | } | |
809 | else | |
810 | { | |
811 | m_gallery_up_bitmap[3] = wxRibbonLoadPixmap(gallery_up_xpm, colour); | |
812 | m_gallery_down_bitmap[3] = wxRibbonLoadPixmap(gallery_down_xpm, colour); | |
813 | } | |
814 | m_gallery_extension_bitmap[3] = wxRibbonLoadPixmap(gallery_extension_xpm, colour); | |
815 | break; | |
816 | case wxRIBBON_ART_GALLERY_ITEM_BORDER_COLOUR: | |
817 | m_gallery_item_border_pen.SetColour(colour); | |
818 | break; | |
819 | case wxRIBBON_ART_TAB_CTRL_BACKGROUND_COLOUR: | |
820 | case wxRIBBON_ART_TAB_CTRL_BACKGROUND_GRADIENT_COLOUR: | |
821 | m_tab_ctrl_background_brush.SetColour(colour); | |
822 | m_cached_tab_separator_visibility = -1.0; | |
823 | break; | |
824 | case wxRIBBON_ART_TAB_LABEL_COLOUR: | |
825 | m_tab_label_colour = colour; | |
826 | break; | |
827 | case wxRIBBON_ART_TAB_SEPARATOR_COLOUR: | |
828 | m_tab_separator_colour = colour; | |
829 | m_cached_tab_separator_visibility = -1.0; | |
830 | break; | |
831 | case wxRIBBON_ART_TAB_SEPARATOR_GRADIENT_COLOUR: | |
832 | m_tab_separator_gradient_colour = colour; | |
833 | m_cached_tab_separator_visibility = -1.0; | |
834 | break; | |
835 | case wxRIBBON_ART_TAB_ACTIVE_BACKGROUND_TOP_COLOUR: | |
836 | case wxRIBBON_ART_TAB_ACTIVE_BACKGROUND_TOP_GRADIENT_COLOUR: | |
837 | break; | |
838 | case wxRIBBON_ART_TAB_ACTIVE_BACKGROUND_COLOUR: | |
839 | m_tab_active_background_colour = colour; | |
840 | break; | |
841 | case wxRIBBON_ART_TAB_ACTIVE_BACKGROUND_GRADIENT_COLOUR: | |
842 | m_tab_active_background_gradient_colour = colour; | |
843 | break; | |
844 | case wxRIBBON_ART_TAB_HOVER_BACKGROUND_TOP_COLOUR: | |
845 | m_tab_hover_background_top_colour = colour; | |
846 | break; | |
847 | case wxRIBBON_ART_TAB_HOVER_BACKGROUND_TOP_GRADIENT_COLOUR: | |
848 | m_tab_hover_background_top_gradient_colour = colour; | |
849 | break; | |
850 | case wxRIBBON_ART_TAB_HOVER_BACKGROUND_COLOUR: | |
851 | m_tab_hover_background_colour = colour; | |
852 | break; | |
853 | case wxRIBBON_ART_TAB_HOVER_BACKGROUND_GRADIENT_COLOUR: | |
854 | m_tab_hover_background_gradient_colour = colour; | |
855 | break; | |
856 | case wxRIBBON_ART_TAB_BORDER_COLOUR: | |
857 | m_tab_border_pen.SetColour(colour); | |
858 | break; | |
859 | case wxRIBBON_ART_PANEL_BORDER_COLOUR: | |
860 | m_panel_border_pen.SetColour(colour); | |
861 | break; | |
862 | case wxRIBBON_ART_PANEL_BORDER_GRADIENT_COLOUR: | |
863 | m_panel_border_gradient_pen.SetColour(colour); | |
864 | break; | |
865 | case wxRIBBON_ART_PANEL_MINIMISED_BORDER_COLOUR: | |
866 | m_panel_minimised_border_pen.SetColour(colour); | |
867 | break; | |
868 | case wxRIBBON_ART_PANEL_MINIMISED_BORDER_GRADIENT_COLOUR: | |
869 | m_panel_minimised_border_gradient_pen.SetColour(colour); | |
870 | break; | |
871 | case wxRIBBON_ART_PANEL_LABEL_BACKGROUND_COLOUR: | |
872 | case wxRIBBON_ART_PANEL_LABEL_BACKGROUND_GRADIENT_COLOUR: | |
873 | m_panel_label_background_brush.SetColour(colour); | |
874 | break; | |
875 | case wxRIBBON_ART_PANEL_LABEL_COLOUR: | |
876 | m_panel_label_colour = colour; | |
877 | break; | |
878 | case wxRIBBON_ART_PANEL_HOVER_LABEL_BACKGROUND_COLOUR: | |
879 | case wxRIBBON_ART_PANEL_HOVER_LABEL_BACKGROUND_GRADIENT_COLOUR: | |
880 | m_panel_hover_label_background_brush.SetColour(colour); | |
881 | break; | |
882 | case wxRIBBON_ART_PANEL_HOVER_LABEL_COLOUR: | |
883 | m_panel_hover_label_colour = colour; | |
884 | break; | |
885 | case wxRIBBON_ART_PANEL_MINIMISED_LABEL_COLOUR: | |
886 | m_panel_minimised_label_colour = colour; | |
887 | break; | |
888 | case wxRIBBON_ART_PANEL_ACTIVE_BACKGROUND_TOP_COLOUR: | |
889 | m_panel_active_background_top_colour = colour; | |
890 | break; | |
891 | case wxRIBBON_ART_PANEL_ACTIVE_BACKGROUND_TOP_GRADIENT_COLOUR: | |
892 | m_panel_active_background_top_gradient_colour = colour; | |
893 | break; | |
894 | case wxRIBBON_ART_PANEL_ACTIVE_BACKGROUND_COLOUR: | |
895 | m_panel_active_background_colour = colour; | |
896 | break; | |
897 | case wxRIBBON_ART_PANEL_ACTIVE_BACKGROUND_GRADIENT_COLOUR: | |
898 | m_panel_active_background_gradient_colour = colour; | |
899 | break; | |
900 | case wxRIBBON_ART_PAGE_BORDER_COLOUR: | |
901 | m_page_border_pen.SetColour(colour); | |
902 | break; | |
903 | case wxRIBBON_ART_PAGE_BACKGROUND_TOP_COLOUR: | |
904 | m_page_background_top_colour = colour; | |
905 | break; | |
906 | case wxRIBBON_ART_PAGE_BACKGROUND_TOP_GRADIENT_COLOUR: | |
907 | m_page_background_top_gradient_colour = colour; | |
908 | break; | |
909 | case wxRIBBON_ART_PAGE_BACKGROUND_COLOUR: | |
910 | m_page_background_colour = colour; | |
911 | break; | |
912 | case wxRIBBON_ART_PAGE_BACKGROUND_GRADIENT_COLOUR: | |
913 | m_page_background_gradient_colour = colour; | |
914 | break; | |
915 | case wxRIBBON_ART_PAGE_HOVER_BACKGROUND_TOP_COLOUR: | |
916 | m_page_hover_background_top_colour = colour; | |
917 | break; | |
918 | case wxRIBBON_ART_PAGE_HOVER_BACKGROUND_TOP_GRADIENT_COLOUR: | |
919 | m_page_hover_background_top_gradient_colour = colour; | |
920 | break; | |
921 | case wxRIBBON_ART_PAGE_HOVER_BACKGROUND_COLOUR: | |
922 | m_page_hover_background_colour = colour; | |
923 | break; | |
924 | case wxRIBBON_ART_PAGE_HOVER_BACKGROUND_GRADIENT_COLOUR: | |
925 | m_page_hover_background_gradient_colour = colour; | |
926 | break; | |
927 | case wxRIBBON_ART_TOOLBAR_BORDER_COLOUR: | |
928 | case wxRIBBON_ART_TOOLBAR_HOVER_BORDER_COLOUR: | |
929 | m_toolbar_border_pen.SetColour(colour); | |
930 | break; | |
931 | case wxRIBBON_ART_TOOLBAR_FACE_COLOUR: | |
932 | m_tool_face_colour = colour; | |
933 | m_toolbar_drop_bitmap = wxRibbonLoadPixmap(gallery_down_xpm, colour); | |
934 | break; | |
935 | default: | |
936 | wxFAIL_MSG(wxT("Invalid Metric Ordinal")); | |
937 | break; | |
938 | } | |
939 | } | |
940 | ||
941 | void wxRibbonMSWArtProvider::DrawTabCtrlBackground( | |
942 | wxDC& dc, | |
943 | wxWindow* WXUNUSED(wnd), | |
944 | const wxRect& rect) | |
945 | { | |
946 | dc.SetPen(*wxTRANSPARENT_PEN); | |
947 | dc.SetBrush(m_tab_ctrl_background_brush); | |
948 | dc.DrawRectangle(rect.x, rect.y, rect.width, rect.height); | |
949 | ||
950 | dc.SetPen(m_page_border_pen); | |
951 | if(rect.width > 6) | |
952 | { | |
953 | dc.DrawLine(rect.x + 3, rect.y + rect.height - 1, rect.x + rect.width - 3, rect.y + rect.height - 1); | |
954 | } | |
955 | else | |
956 | { | |
957 | dc.DrawLine(rect.x, rect.y + rect.height - 1, rect.x + rect.width, rect.y + rect.height - 1); | |
958 | } | |
959 | } | |
960 | ||
961 | void wxRibbonMSWArtProvider::DrawTab( | |
962 | wxDC& dc, | |
963 | wxWindow* WXUNUSED(wnd), | |
964 | const wxRibbonPageTabInfo& tab) | |
965 | { | |
966 | if(tab.rect.height <= 2) | |
967 | return; | |
968 | ||
969 | if(tab.active || tab.hovered) | |
970 | { | |
971 | if(tab.active) | |
972 | { | |
973 | wxRect background(tab.rect); | |
974 | ||
975 | background.x += 2; | |
976 | background.y += 2; | |
977 | background.width -= 4; | |
978 | background.height -= 2; | |
979 | ||
980 | dc.GradientFillLinear(background, m_tab_active_background_colour, | |
981 | m_tab_active_background_gradient_colour, wxSOUTH); | |
982 | ||
983 | // TODO: active and hovered | |
984 | } | |
985 | else if(tab.hovered) | |
986 | { | |
987 | wxRect background(tab.rect); | |
988 | ||
989 | background.x += 2; | |
990 | background.y += 2; | |
991 | background.width -= 4; | |
992 | background.height -= 3; | |
993 | int h = background.height; | |
994 | background.height /= 2; | |
995 | dc.GradientFillLinear(background, | |
996 | m_tab_hover_background_top_colour, | |
997 | m_tab_hover_background_top_gradient_colour, wxSOUTH); | |
998 | ||
999 | background.y += background.height; | |
1000 | background.height = h - background.height; | |
1001 | dc.GradientFillLinear(background, m_tab_hover_background_colour, | |
1002 | m_tab_hover_background_gradient_colour, wxSOUTH); | |
1003 | } | |
1004 | ||
1005 | wxPoint border_points[6]; | |
1006 | border_points[0] = wxPoint(1, tab.rect.height - 2); | |
1007 | border_points[1] = wxPoint(1, 3); | |
1008 | border_points[2] = wxPoint(3, 1); | |
1009 | border_points[3] = wxPoint(tab.rect.width - 4, 1); | |
1010 | border_points[4] = wxPoint(tab.rect.width - 2, 3); | |
1011 | border_points[5] = wxPoint(tab.rect.width - 2, tab.rect.height - 1); | |
1012 | ||
1013 | dc.SetPen(m_tab_border_pen); | |
1014 | dc.DrawLines(sizeof(border_points)/sizeof(wxPoint), border_points, tab.rect.x, tab.rect.y); | |
1015 | ||
1016 | if(tab.active) | |
1017 | { | |
1018 | // Give the tab a curved outward border at the bottom | |
1019 | dc.DrawPoint(tab.rect.x, tab.rect.y + tab.rect.height - 2); | |
1020 | dc.DrawPoint(tab.rect.x + tab.rect.width - 1, tab.rect.y + tab.rect.height - 2); | |
1021 | ||
1022 | wxPen p(m_tab_active_background_gradient_colour); | |
1023 | dc.SetPen(p); | |
1024 | ||
1025 | // Technically the first two points are the wrong colour, but they're near enough | |
1026 | dc.DrawPoint(tab.rect.x + 1, tab.rect.y + tab.rect.height - 2); | |
1027 | dc.DrawPoint(tab.rect.x + tab.rect.width - 2, tab.rect.y + tab.rect.height - 2); | |
1028 | dc.DrawPoint(tab.rect.x + 1, tab.rect.y + tab.rect.height - 1); | |
1029 | dc.DrawPoint(tab.rect.x, tab.rect.y + tab.rect.height - 1); | |
1030 | dc.DrawPoint(tab.rect.x + tab.rect.width - 2, tab.rect.y + tab.rect.height - 1); | |
1031 | dc.DrawPoint(tab.rect.x + tab.rect.width - 1, tab.rect.y + tab.rect.height - 1); | |
1032 | } | |
1033 | } | |
1034 | ||
1035 | if(m_flags & wxRIBBON_BAR_SHOW_PAGE_ICONS) | |
1036 | { | |
1037 | wxBitmap icon = tab.page->GetIcon(); | |
f6ac1f4b RR |
1038 | if(icon.IsOk()) |
1039 | { | |
3c3ead1d PC |
1040 | int x = tab.rect.x + 4; |
1041 | if((m_flags & wxRIBBON_BAR_SHOW_PAGE_LABELS) == 0) | |
1042 | x = tab.rect.x + (tab.rect.width - icon.GetWidth()) / 2; | |
1043 | dc.DrawBitmap(icon, x, tab.rect.y + 1 + (tab.rect.height - 1 - | |
1044 | icon.GetHeight()) / 2, true); | |
f6ac1f4b | 1045 | } |
3c3ead1d PC |
1046 | } |
1047 | if(m_flags & wxRIBBON_BAR_SHOW_PAGE_LABELS) | |
1048 | { | |
1049 | wxString label = tab.page->GetLabel(); | |
1050 | if(!label.IsEmpty()) | |
1051 | { | |
1052 | dc.SetFont(m_tab_label_font); | |
1053 | dc.SetTextForeground(m_tab_label_colour); | |
1054 | dc.SetBackgroundMode(wxTRANSPARENT); | |
1055 | ||
1056 | int text_height; | |
1057 | int text_width; | |
1058 | dc.GetTextExtent(label, &text_width, &text_height); | |
1059 | int width = tab.rect.width - 5; | |
1060 | int x = tab.rect.x + 3; | |
1061 | if(m_flags & wxRIBBON_BAR_SHOW_PAGE_ICONS) | |
1062 | { | |
1063 | x += 3 + tab.page->GetIcon().GetWidth(); | |
1064 | width -= 3 + tab.page->GetIcon().GetWidth(); | |
1065 | } | |
1066 | int y = tab.rect.y + (tab.rect.height - text_height) / 2; | |
1067 | ||
1068 | if(width <= text_width) | |
1069 | { | |
1070 | dc.SetClippingRegion(x, tab.rect.y, width, tab.rect.height); | |
1071 | dc.DrawText(label, x, y); | |
1072 | } | |
1073 | else | |
1074 | { | |
1075 | dc.DrawText(label, x + (width - text_width) / 2 + 1, y); | |
1076 | } | |
1077 | } | |
1078 | } | |
1079 | } | |
1080 | ||
1081 | void wxRibbonMSWArtProvider::DrawTabSeparator( | |
1082 | wxDC& dc, | |
1083 | wxWindow* wnd, | |
1084 | const wxRect& rect, | |
1085 | double visibility) | |
1086 | { | |
1087 | if(visibility <= 0.0) | |
1088 | { | |
1089 | return; | |
1090 | } | |
1091 | if(visibility > 1.0) | |
1092 | { | |
1093 | visibility = 1.0; | |
1094 | } | |
1095 | ||
1096 | // The tab separator is relatively expensive to draw (for its size), and is | |
1097 | // usually drawn multiple times sequentially (in different positions), so it | |
1098 | // makes sense to draw it once and cache it. | |
1099 | if(!m_cached_tab_separator.IsOk() || m_cached_tab_separator.GetSize() != rect.GetSize() || visibility != m_cached_tab_separator_visibility) | |
1100 | { | |
1101 | wxRect size(rect.GetSize()); | |
1102 | ReallyDrawTabSeparator(wnd, size, visibility); | |
1103 | } | |
1104 | dc.DrawBitmap(m_cached_tab_separator, rect.x, rect.y, false); | |
1105 | } | |
1106 | ||
1107 | void wxRibbonMSWArtProvider::ReallyDrawTabSeparator(wxWindow* wnd, const wxRect& rect, double visibility) | |
1108 | { | |
1109 | if(!m_cached_tab_separator.IsOk() || m_cached_tab_separator.GetSize() != rect.GetSize()) | |
1110 | { | |
1111 | m_cached_tab_separator = wxBitmap(rect.GetSize()); | |
1112 | } | |
1113 | ||
1114 | wxMemoryDC dc(m_cached_tab_separator); | |
1115 | DrawTabCtrlBackground(dc, wnd, rect); | |
1116 | ||
1117 | wxCoord x = rect.x + rect.width / 2; | |
1118 | double h = (double)(rect.height - 1); | |
1119 | ||
1120 | double r1 = m_tab_ctrl_background_brush.GetColour().Red() * (1.0 - visibility) + 0.5; | |
1121 | double g1 = m_tab_ctrl_background_brush.GetColour().Green() * (1.0 - visibility) + 0.5; | |
1122 | double b1 = m_tab_ctrl_background_brush.GetColour().Blue() * (1.0 - visibility) + 0.5; | |
1123 | double r2 = m_tab_separator_colour.Red(); | |
1124 | double g2 = m_tab_separator_colour.Green(); | |
1125 | double b2 = m_tab_separator_colour.Blue(); | |
1126 | double r3 = m_tab_separator_gradient_colour.Red(); | |
1127 | double g3 = m_tab_separator_gradient_colour.Green(); | |
1128 | double b3 = m_tab_separator_gradient_colour.Blue(); | |
1129 | ||
1130 | for(int i = 0; i < rect.height - 1; ++i) | |
1131 | { | |
1132 | double p = ((double)i)/h; | |
1133 | ||
1134 | double r = (p * r3 + (1.0 - p) * r2) * visibility + r1; | |
1135 | double g = (p * g3 + (1.0 - p) * g2) * visibility + g1; | |
1136 | double b = (p * b3 + (1.0 - p) * b2) * visibility + b1; | |
1137 | ||
1138 | wxPen P(wxColour((unsigned char)r, (unsigned char)g, (unsigned char)b)); | |
1139 | dc.SetPen(P); | |
1140 | dc.DrawPoint(x, rect.y + i); | |
1141 | } | |
1142 | ||
1143 | m_cached_tab_separator_visibility = visibility; | |
1144 | } | |
1145 | ||
1146 | void wxRibbonMSWArtProvider::DrawPartialPageBackground(wxDC& dc, | |
140091e5 | 1147 | wxWindow* wnd, const wxRect& rect, wxRibbonPage* page, |
3c3ead1d PC |
1148 | wxPoint offset, bool hovered) |
1149 | { | |
140091e5 PC |
1150 | wxRect background; |
1151 | // Expanded panels need a background - the expanded panel at | |
1152 | // best size may have a greater Y dimension higher than when | |
1153 | // on the bar if it has a sizer. AUI art provider does not need this | |
1154 | // because it paints the panel without reference to its parent's size. | |
1155 | // Expanded panels use a wxFrame as parent (not a wxRibbonPage). | |
1156 | ||
1157 | if(wnd->GetSizer() && wnd->GetParent() != page) | |
1158 | { | |
1159 | background = wnd->GetParent()->GetSize(); | |
1160 | offset = wxPoint(0,0); | |
1161 | } | |
1162 | else | |
1163 | { | |
1164 | background = page->GetSize(); | |
1165 | page->AdjustRectToIncludeScrollButtons(&background); | |
1166 | background.height -= 2; | |
1167 | } | |
3c3ead1d PC |
1168 | // Page background isn't dependant upon the width of the page |
1169 | // (at least not the part of it intended to be painted by this | |
1170 | // function). Set to wider than the page itself for when externally | |
1171 | // expanded panels need a background - the expanded panel can be wider | |
1172 | // than the bar. | |
1173 | background.x = 0; | |
1174 | background.width = INT_MAX; | |
1175 | ||
1176 | // upper_rect, lower_rect, paint_rect are all in page co-ordinates | |
1177 | wxRect upper_rect(background); | |
1178 | upper_rect.height /= 5; | |
1179 | ||
1180 | wxRect lower_rect(background); | |
1181 | lower_rect.y += upper_rect.height; | |
1182 | lower_rect.height -= upper_rect.height; | |
1183 | ||
1184 | wxRect paint_rect(rect); | |
1185 | paint_rect.x += offset.x; | |
1186 | paint_rect.y += offset.y; | |
1187 | ||
1188 | wxColour bg_top, bg_top_grad, bg_btm, bg_btm_grad; | |
1189 | if(hovered) | |
1190 | { | |
1191 | bg_top = m_page_hover_background_top_colour; | |
1192 | bg_top_grad = m_page_hover_background_top_gradient_colour; | |
1193 | bg_btm = m_page_hover_background_colour; | |
1194 | bg_btm_grad = m_page_hover_background_gradient_colour; | |
1195 | } | |
1196 | else | |
1197 | { | |
1198 | bg_top = m_page_background_top_colour; | |
1199 | bg_top_grad = m_page_background_top_gradient_colour; | |
1200 | bg_btm = m_page_background_colour; | |
1201 | bg_btm_grad = m_page_background_gradient_colour; | |
1202 | } | |
1203 | ||
1204 | if(paint_rect.Intersects(upper_rect)) | |
1205 | { | |
1206 | wxRect rect(upper_rect); | |
1207 | rect.Intersect(paint_rect); | |
1208 | rect.x -= offset.x; | |
1209 | rect.y -= offset.y; | |
1210 | wxColour starting_colour(wxRibbonInterpolateColour(bg_top, bg_top_grad, | |
1211 | paint_rect.y, upper_rect.y, upper_rect.y + upper_rect.height)); | |
1212 | wxColour ending_colour(wxRibbonInterpolateColour(bg_top, bg_top_grad, | |
1213 | paint_rect.y + paint_rect.height, upper_rect.y, | |
1214 | upper_rect.y + upper_rect.height)); | |
1215 | dc.GradientFillLinear(rect, starting_colour, ending_colour, wxSOUTH); | |
1216 | } | |
1217 | ||
1218 | if(paint_rect.Intersects(lower_rect)) | |
1219 | { | |
1220 | wxRect rect(lower_rect); | |
1221 | rect.Intersect(paint_rect); | |
1222 | rect.x -= offset.x; | |
1223 | rect.y -= offset.y; | |
1224 | wxColour starting_colour(wxRibbonInterpolateColour(bg_btm, bg_btm_grad, | |
1225 | paint_rect.y, lower_rect.y, lower_rect.y + lower_rect.height)); | |
1226 | wxColour ending_colour(wxRibbonInterpolateColour(bg_btm, bg_btm_grad, | |
1227 | paint_rect.y + paint_rect.height, | |
1228 | lower_rect.y, lower_rect.y + lower_rect.height)); | |
1229 | dc.GradientFillLinear(rect, starting_colour, ending_colour, wxSOUTH); | |
1230 | } | |
1231 | } | |
1232 | ||
1233 | void wxRibbonMSWArtProvider::DrawPageBackground( | |
1234 | wxDC& dc, | |
1235 | wxWindow* WXUNUSED(wnd), | |
1236 | const wxRect& rect) | |
1237 | { | |
1238 | dc.SetPen(*wxTRANSPARENT_PEN); | |
1239 | dc.SetBrush(m_tab_ctrl_background_brush); | |
1240 | ||
1241 | { | |
1242 | wxRect edge(rect); | |
1243 | ||
1244 | edge.width = 2; | |
1245 | dc.DrawRectangle(edge.x, edge.y, edge.width, edge.height); | |
1246 | ||
1247 | edge.x += rect.width - 2; | |
1248 | dc.DrawRectangle(edge.x, edge.y, edge.width, edge.height); | |
1249 | ||
1250 | edge = rect; | |
1251 | edge.height = 2; | |
1252 | edge.y += (rect.height - edge.height); | |
1253 | dc.DrawRectangle(edge.x, edge.y, edge.width, edge.height); | |
1254 | } | |
1255 | ||
1256 | { | |
1257 | wxRect background(rect); | |
1258 | background.x += 2; | |
1259 | background.width -= 4; | |
1260 | background.height -= 2; | |
1261 | ||
1262 | background.height /= 5; | |
1263 | dc.GradientFillLinear(background, m_page_background_top_colour, | |
1264 | m_page_background_top_gradient_colour, wxSOUTH); | |
1265 | ||
1266 | background.y += background.height; | |
1267 | background.height = rect.height - 2 - background.height; | |
1268 | dc.GradientFillLinear(background, m_page_background_colour, | |
1269 | m_page_background_gradient_colour, wxSOUTH); | |
1270 | } | |
1271 | ||
1272 | { | |
1273 | wxPoint border_points[8]; | |
1274 | border_points[0] = wxPoint(2, 0); | |
1275 | border_points[1] = wxPoint(1, 1); | |
1276 | border_points[2] = wxPoint(1, rect.height - 4); | |
1277 | border_points[3] = wxPoint(3, rect.height - 2); | |
1278 | border_points[4] = wxPoint(rect.width - 4, rect.height - 2); | |
1279 | border_points[5] = wxPoint(rect.width - 2, rect.height - 4); | |
1280 | border_points[6] = wxPoint(rect.width - 2, 1); | |
1281 | border_points[7] = wxPoint(rect.width - 4, -1); | |
1282 | ||
1283 | dc.SetPen(m_page_border_pen); | |
1284 | dc.DrawLines(sizeof(border_points)/sizeof(wxPoint), border_points, rect.x, rect.y); | |
1285 | } | |
1286 | } | |
1287 | ||
1288 | void wxRibbonMSWArtProvider::DrawScrollButton( | |
1289 | wxDC& dc, | |
1290 | wxWindow* WXUNUSED(wnd), | |
1291 | const wxRect& rect_, | |
1292 | long style) | |
1293 | { | |
1294 | wxRect rect(rect_); | |
1295 | ||
1296 | if((style & wxRIBBON_SCROLL_BTN_FOR_MASK) == wxRIBBON_SCROLL_BTN_FOR_PAGE) | |
1297 | { | |
1298 | // Page scroll buttons do not have the luxury of rendering on top of anything | |
1299 | // else, and their size includes some padding, hence the background painting | |
1300 | // and size adjustment. | |
1301 | dc.SetPen(*wxTRANSPARENT_PEN); | |
1302 | dc.SetBrush(m_tab_ctrl_background_brush); | |
1303 | dc.DrawRectangle(rect); | |
1304 | dc.SetClippingRegion(rect); | |
1305 | switch(style & wxRIBBON_SCROLL_BTN_DIRECTION_MASK) | |
1306 | { | |
1307 | case wxRIBBON_SCROLL_BTN_LEFT: | |
1308 | rect.x++; | |
1309 | case wxRIBBON_SCROLL_BTN_RIGHT: | |
1310 | rect.y--; | |
1311 | rect.width--; | |
1312 | break; | |
1313 | case wxRIBBON_SCROLL_BTN_UP: | |
1314 | rect.x++; | |
1315 | rect.y--; | |
1316 | rect.width -= 2; | |
1317 | rect.height++; | |
1318 | break; | |
1319 | case wxRIBBON_SCROLL_BTN_DOWN: | |
1320 | rect.x++; | |
1321 | rect.width -= 2; | |
1322 | rect.height--; | |
1323 | break; | |
1324 | } | |
1325 | } | |
1326 | ||
1327 | { | |
1328 | wxRect background(rect); | |
1329 | background.x++; | |
1330 | background.y++; | |
1331 | background.width -= 2; | |
1332 | background.height -= 2; | |
1333 | ||
1334 | if(style & wxRIBBON_SCROLL_BTN_UP) | |
1335 | background.height /= 2; | |
1336 | else | |
1337 | background.height /= 5; | |
1338 | dc.GradientFillLinear(background, m_page_background_top_colour, | |
1339 | m_page_background_top_gradient_colour, wxSOUTH); | |
1340 | ||
1341 | background.y += background.height; | |
1342 | background.height = rect.height - 2 - background.height; | |
1343 | dc.GradientFillLinear(background, m_page_background_colour, | |
1344 | m_page_background_gradient_colour, wxSOUTH); | |
1345 | } | |
1346 | ||
1347 | { | |
1348 | wxPoint border_points[7]; | |
1349 | switch(style & wxRIBBON_SCROLL_BTN_DIRECTION_MASK) | |
1350 | { | |
1351 | case wxRIBBON_SCROLL_BTN_LEFT: | |
1352 | border_points[0] = wxPoint(2, 0); | |
1353 | border_points[1] = wxPoint(rect.width - 1, 0); | |
1354 | border_points[2] = wxPoint(rect.width - 1, rect.height - 1); | |
1355 | border_points[3] = wxPoint(2, rect.height - 1); | |
1356 | border_points[4] = wxPoint(0, rect.height - 3); | |
1357 | border_points[5] = wxPoint(0, 2); | |
1358 | break; | |
1359 | case wxRIBBON_SCROLL_BTN_RIGHT: | |
1360 | border_points[0] = wxPoint(0, 0); | |
1361 | border_points[1] = wxPoint(rect.width - 3, 0); | |
1362 | border_points[2] = wxPoint(rect.width - 1, 2); | |
1363 | border_points[3] = wxPoint(rect.width - 1, rect.height - 3); | |
1364 | border_points[4] = wxPoint(rect.width - 3, rect.height - 1); | |
1365 | border_points[5] = wxPoint(0, rect.height - 1); | |
1366 | break; | |
1367 | case wxRIBBON_SCROLL_BTN_UP: | |
1368 | border_points[0] = wxPoint(2, 0); | |
1369 | border_points[1] = wxPoint(rect.width - 3, 0); | |
1370 | border_points[2] = wxPoint(rect.width - 1, 2); | |
1371 | border_points[3] = wxPoint(rect.width - 1, rect.height - 1); | |
1372 | border_points[4] = wxPoint(0, rect.height - 1); | |
1373 | border_points[5] = wxPoint(0, 2); | |
1374 | break; | |
1375 | case wxRIBBON_SCROLL_BTN_DOWN: | |
1376 | border_points[0] = wxPoint(0, 0); | |
1377 | border_points[1] = wxPoint(rect.width - 1, 0); | |
1378 | border_points[2] = wxPoint(rect.width - 1, rect.height - 3); | |
1379 | border_points[3] = wxPoint(rect.width - 3, rect.height - 1); | |
1380 | border_points[4] = wxPoint(2, rect.height - 1); | |
1381 | border_points[5] = wxPoint(0, rect.height - 3); | |
1382 | break; | |
1383 | } | |
1384 | border_points[6] = border_points[0]; | |
1385 | ||
1386 | dc.SetPen(m_page_border_pen); | |
1387 | dc.DrawLines(sizeof(border_points)/sizeof(wxPoint), border_points, rect.x, rect.y); | |
1388 | } | |
1389 | ||
1390 | { | |
1391 | // NB: Code for handling hovered/active state is temporary | |
1392 | wxPoint arrow_points[3]; | |
1393 | switch(style & wxRIBBON_SCROLL_BTN_DIRECTION_MASK) | |
1394 | { | |
1395 | case wxRIBBON_SCROLL_BTN_LEFT: | |
1396 | arrow_points[0] = wxPoint(rect.width / 2 - 2, rect.height / 2); | |
1397 | if(style & wxRIBBON_SCROLL_BTN_ACTIVE) | |
1398 | arrow_points[0].y += 1; | |
1399 | arrow_points[1] = arrow_points[0] + wxPoint(3, -3); | |
1400 | arrow_points[2] = arrow_points[0] + wxPoint(3, 3); | |
1401 | break; | |
1402 | case wxRIBBON_SCROLL_BTN_RIGHT: | |
1403 | arrow_points[0] = wxPoint(rect.width / 2 + 2, rect.height / 2); | |
1404 | if(style & wxRIBBON_SCROLL_BTN_ACTIVE) | |
1405 | arrow_points[0].y += 1; | |
1406 | arrow_points[1] = arrow_points[0] - wxPoint(3, 3); | |
1407 | arrow_points[2] = arrow_points[0] - wxPoint(3, -3); | |
1408 | break; | |
1409 | case wxRIBBON_SCROLL_BTN_UP: | |
1410 | arrow_points[0] = wxPoint(rect.width / 2, rect.height / 2 - 2); | |
1411 | if(style & wxRIBBON_SCROLL_BTN_ACTIVE) | |
1412 | arrow_points[0].y += 1; | |
1413 | arrow_points[1] = arrow_points[0] + wxPoint( 3, 3); | |
1414 | arrow_points[2] = arrow_points[0] + wxPoint(-3, 3); | |
1415 | break; | |
1416 | case wxRIBBON_SCROLL_BTN_DOWN: | |
1417 | arrow_points[0] = wxPoint(rect.width / 2, rect.height / 2 + 2); | |
1418 | if(style & wxRIBBON_SCROLL_BTN_ACTIVE) | |
1419 | arrow_points[0].y += 1; | |
1420 | arrow_points[1] = arrow_points[0] - wxPoint( 3, 3); | |
1421 | arrow_points[2] = arrow_points[0] - wxPoint(-3, 3); | |
1422 | break; | |
1423 | } | |
1424 | ||
1425 | dc.SetPen(*wxTRANSPARENT_PEN); | |
1426 | wxBrush B(style & wxRIBBON_SCROLL_BTN_HOVERED ? m_tab_active_background_colour : m_tab_label_colour); | |
1427 | dc.SetBrush(B); | |
1428 | dc.DrawPolygon(sizeof(arrow_points)/sizeof(wxPoint), arrow_points, rect.x, rect.y); | |
1429 | } | |
1430 | } | |
1431 | ||
1432 | void wxRibbonMSWArtProvider::DrawDropdownArrow(wxDC& dc, int x, int y, const wxColour& colour) | |
1433 | { | |
1434 | wxPoint arrow_points[3]; | |
1435 | wxBrush brush(colour); | |
1436 | arrow_points[0] = wxPoint(1, 2); | |
1437 | arrow_points[1] = arrow_points[0] + wxPoint(-3, -3); | |
1438 | arrow_points[2] = arrow_points[0] + wxPoint( 3, -3); | |
1439 | dc.SetPen(*wxTRANSPARENT_PEN); | |
1440 | dc.SetBrush(brush); | |
1441 | dc.DrawPolygon(sizeof(arrow_points)/sizeof(wxPoint), arrow_points, x, y); | |
1442 | } | |
1443 | ||
1444 | void wxRibbonMSWArtProvider::RemovePanelPadding(wxRect* rect) | |
1445 | { | |
1446 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
1447 | { | |
1448 | rect->y += 1; | |
1449 | rect->height -= 2; | |
1450 | } | |
1451 | else | |
1452 | { | |
1453 | rect->x += 1; | |
1454 | rect->width -= 2; | |
1455 | } | |
1456 | } | |
1457 | ||
1458 | void wxRibbonMSWArtProvider::DrawPanelBackground( | |
1459 | wxDC& dc, | |
1460 | wxRibbonPanel* wnd, | |
1461 | const wxRect& rect) | |
1462 | { | |
1463 | DrawPartialPageBackground(dc, wnd, rect, false); | |
1464 | ||
1465 | wxRect true_rect(rect); | |
1466 | RemovePanelPadding(&true_rect); | |
1467 | ||
1468 | int label_height; | |
1469 | { | |
1470 | dc.SetFont(m_panel_label_font); | |
1471 | dc.SetPen(*wxTRANSPARENT_PEN); | |
1472 | if(wnd->IsHovered()) | |
1473 | { | |
1474 | dc.SetBrush(m_panel_hover_label_background_brush); | |
1475 | dc.SetTextForeground(m_panel_hover_label_colour); | |
1476 | } | |
1477 | else | |
1478 | { | |
1479 | dc.SetBrush(m_panel_label_background_brush); | |
1480 | dc.SetTextForeground(m_panel_label_colour); | |
1481 | } | |
1482 | ||
1483 | wxRect label_rect(true_rect); | |
1484 | wxString label = wnd->GetLabel(); | |
1485 | bool clip_label = false; | |
1486 | wxSize label_size(dc.GetTextExtent(label)); | |
1487 | ||
1488 | label_rect.SetX(label_rect.GetX() + 1); | |
1489 | label_rect.SetWidth(label_rect.GetWidth() - 2); | |
1490 | label_rect.SetHeight(label_size.GetHeight() + 2); | |
1491 | label_rect.SetY(true_rect.GetBottom() - label_rect.GetHeight()); | |
1492 | label_height = label_rect.GetHeight(); | |
1493 | ||
1494 | if(label_size.GetWidth() > label_rect.GetWidth()) | |
1495 | { | |
1496 | // Test if there is enough length for 3 letters and ... | |
1497 | wxString new_label = label.Mid(0, 3) + wxT("..."); | |
1498 | label_size = dc.GetTextExtent(new_label); | |
1499 | if(label_size.GetWidth() > label_rect.GetWidth()) | |
1500 | { | |
1501 | // Not enough room for three characters and ... | |
1502 | // Display the entire label and just crop it | |
1503 | clip_label = true; | |
1504 | } | |
1505 | else | |
1506 | { | |
1507 | // Room for some characters and ... | |
1508 | // Display as many characters as possible and append ... | |
1509 | for(size_t len = label.Len() - 1; len >= 3; --len) | |
1510 | { | |
1511 | new_label = label.Mid(0, len) + wxT("..."); | |
1512 | label_size = dc.GetTextExtent(new_label); | |
1513 | if(label_size.GetWidth() <= label_rect.GetWidth()) | |
1514 | { | |
1515 | label = new_label; | |
1516 | break; | |
1517 | } | |
1518 | } | |
1519 | } | |
1520 | } | |
1521 | ||
1522 | dc.DrawRectangle(label_rect.GetX(), label_rect.GetY(), label_rect.GetWidth(), label_rect.GetHeight()); | |
1523 | if(clip_label) | |
1524 | { | |
1525 | wxDCClipper clip(dc, label_rect); | |
1526 | dc.DrawText(label, label_rect.x, label_rect.y + | |
1527 | (label_rect.GetHeight() - label_size.GetHeight()) / 2); | |
1528 | } | |
1529 | else | |
1530 | { | |
1531 | dc.DrawText(label, label_rect.x + | |
1532 | (label_rect.GetWidth() - label_size.GetWidth()) / 2, | |
1533 | label_rect.y + | |
1534 | (label_rect.GetHeight() - label_size.GetHeight()) / 2); | |
1535 | } | |
1536 | } | |
1537 | ||
1538 | if(wnd->IsHovered()) | |
1539 | { | |
1540 | wxRect client_rect(true_rect); | |
1541 | client_rect.x++; | |
1542 | client_rect.width -= 2; | |
1543 | client_rect.y++; | |
1544 | client_rect.height -= 2 + label_height; | |
1545 | DrawPartialPageBackground(dc, wnd, client_rect, true); | |
1546 | } | |
1547 | ||
1548 | DrawPanelBorder(dc, true_rect, m_panel_border_pen, m_panel_border_gradient_pen); | |
1549 | } | |
1550 | ||
1551 | void wxRibbonMSWArtProvider::DrawGalleryBackground( | |
1552 | wxDC& dc, | |
1553 | wxRibbonGallery* wnd, | |
1554 | const wxRect& rect) | |
1555 | { | |
1556 | DrawPartialPageBackground(dc, wnd, rect); | |
1557 | ||
1558 | if(wnd->IsHovered()) | |
1559 | { | |
1560 | dc.SetPen(*wxTRANSPARENT_PEN); | |
1561 | dc.SetBrush(m_gallery_hover_background_brush); | |
1562 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
1563 | { | |
1564 | dc.DrawRectangle(rect.x + 1, rect.y + 1, rect.width - 2, | |
1565 | rect.height - 16); | |
1566 | } | |
1567 | else | |
1568 | { | |
1569 | dc.DrawRectangle(rect.x + 1, rect.y + 1, rect.width - 16, | |
1570 | rect.height - 2); | |
1571 | } | |
1572 | } | |
1573 | ||
1574 | dc.SetPen(m_gallery_border_pen); | |
1575 | // Outline | |
1576 | dc.DrawLine(rect.x + 1, rect.y, rect.x + rect.width - 1, rect.y); | |
1577 | dc.DrawLine(rect.x, rect.y + 1, rect.x, rect.y + rect.height - 1); | |
1578 | dc.DrawLine(rect.x + 1, rect.y + rect.height - 1, rect.x + rect.width - 1, | |
1579 | rect.y + rect.height - 1); | |
1580 | dc.DrawLine(rect.x + rect.width - 1, rect.y + 1, rect.x + rect.width - 1, | |
1581 | rect.y + rect.height - 1); | |
1582 | ||
1583 | DrawGalleryBackgroundCommon(dc, wnd, rect); | |
1584 | } | |
1585 | ||
1586 | void wxRibbonMSWArtProvider::DrawGalleryBackgroundCommon(wxDC& dc, | |
1587 | wxRibbonGallery* wnd, | |
1588 | const wxRect& rect) | |
1589 | { | |
1590 | wxRect up_btn, down_btn, ext_btn; | |
1591 | ||
1592 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
1593 | { | |
1594 | // Divider between items and buttons | |
1595 | dc.DrawLine(rect.x, rect.y + rect.height - 15, rect.x + rect.width, | |
1596 | rect.y + rect.height - 15); | |
1597 | ||
1598 | up_btn = wxRect(rect.x, rect.y + rect.height - 15, rect.width / 3, 15); | |
1599 | ||
1600 | down_btn = wxRect(up_btn.GetRight() + 1, up_btn.GetTop(), | |
1601 | up_btn.GetWidth(), up_btn.GetHeight()); | |
1602 | dc.DrawLine(down_btn.GetLeft(), down_btn.GetTop(), down_btn.GetLeft(), | |
1603 | down_btn.GetBottom()); | |
1604 | ||
1605 | ext_btn = wxRect(down_btn.GetRight() + 1, up_btn.GetTop(), rect.width - | |
1606 | up_btn.GetWidth() - down_btn.GetWidth() - 1, up_btn.GetHeight()); | |
1607 | dc.DrawLine(ext_btn.GetLeft(), ext_btn.GetTop(), ext_btn.GetLeft(), | |
1608 | ext_btn.GetBottom()); | |
1609 | } | |
1610 | else | |
1611 | { | |
1612 | // Divider between items and buttons | |
1613 | dc.DrawLine(rect.x + rect.width - 15, rect.y, rect.x + rect.width - 15, | |
1614 | rect.y + rect.height); | |
1615 | ||
1616 | up_btn = wxRect(rect.x + rect.width - 15, rect.y, 15, rect.height / 3); | |
1617 | ||
1618 | down_btn = wxRect(up_btn.GetLeft(), up_btn.GetBottom() + 1, | |
1619 | up_btn.GetWidth(), up_btn.GetHeight()); | |
1620 | dc.DrawLine(down_btn.GetLeft(), down_btn.GetTop(), down_btn.GetRight(), | |
1621 | down_btn.GetTop()); | |
1622 | ||
1623 | ext_btn = wxRect(up_btn.GetLeft(), down_btn.GetBottom() + 1, up_btn.GetWidth(), | |
1624 | rect.height - up_btn.GetHeight() - down_btn.GetHeight() - 1); | |
1625 | dc.DrawLine(ext_btn.GetLeft(), ext_btn.GetTop(), ext_btn.GetRight(), | |
1626 | ext_btn.GetTop()); | |
1627 | } | |
1628 | ||
1629 | DrawGalleryButton(dc, up_btn, wnd->GetUpButtonState(), | |
1630 | m_gallery_up_bitmap); | |
1631 | DrawGalleryButton(dc, down_btn, wnd->GetDownButtonState(), | |
1632 | m_gallery_down_bitmap); | |
1633 | DrawGalleryButton(dc, ext_btn, wnd->GetExtensionButtonState(), | |
1634 | m_gallery_extension_bitmap); | |
1635 | } | |
1636 | ||
1637 | void wxRibbonMSWArtProvider::DrawGalleryButton(wxDC& dc, | |
1638 | wxRect rect, | |
1639 | wxRibbonGalleryButtonState state, | |
1640 | wxBitmap* bitmaps) | |
1641 | { | |
1642 | wxBitmap btn_bitmap; | |
1643 | wxBrush btn_top_brush; | |
1644 | wxColour btn_colour; | |
1645 | wxColour btn_grad_colour; | |
1646 | switch(state) | |
1647 | { | |
1648 | case wxRIBBON_GALLERY_BUTTON_NORMAL: | |
1649 | btn_top_brush = m_gallery_button_background_top_brush; | |
1650 | btn_colour = m_gallery_button_background_colour; | |
1651 | btn_grad_colour = m_gallery_button_background_gradient_colour; | |
1652 | btn_bitmap = bitmaps[0]; | |
1653 | break; | |
1654 | case wxRIBBON_GALLERY_BUTTON_HOVERED: | |
1655 | btn_top_brush = m_gallery_button_hover_background_top_brush; | |
1656 | btn_colour = m_gallery_button_hover_background_colour; | |
1657 | btn_grad_colour = m_gallery_button_hover_background_gradient_colour; | |
1658 | btn_bitmap = bitmaps[1]; | |
1659 | break; | |
1660 | case wxRIBBON_GALLERY_BUTTON_ACTIVE: | |
1661 | btn_top_brush = m_gallery_button_active_background_top_brush; | |
1662 | btn_colour = m_gallery_button_active_background_colour; | |
1663 | btn_grad_colour = m_gallery_button_active_background_gradient_colour; | |
1664 | btn_bitmap = bitmaps[2]; | |
1665 | break; | |
1666 | case wxRIBBON_GALLERY_BUTTON_DISABLED: | |
1667 | btn_top_brush = m_gallery_button_disabled_background_top_brush; | |
1668 | btn_colour = m_gallery_button_disabled_background_colour; | |
1669 | btn_grad_colour = m_gallery_button_disabled_background_gradient_colour; | |
1670 | btn_bitmap = bitmaps[3]; | |
1671 | break; | |
1672 | } | |
1673 | ||
1674 | rect.x++; | |
1675 | rect.y++; | |
1676 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
1677 | { | |
1678 | rect.width--;; | |
1679 | rect.height -= 2; | |
1680 | } | |
1681 | else | |
1682 | { | |
1683 | rect.width -= 2; | |
1684 | rect.height--; | |
1685 | } | |
1686 | ||
1687 | dc.SetPen(*wxTRANSPARENT_PEN); | |
1688 | dc.SetBrush(btn_top_brush); | |
1689 | dc.DrawRectangle(rect.x, rect.y, rect.width, rect.height / 2); | |
1690 | ||
1691 | wxRect lower(rect); | |
1692 | lower.height = (lower.height + 1) / 2; | |
1693 | lower.y += rect.height - lower.height; | |
1694 | dc.GradientFillLinear(lower, btn_colour, btn_grad_colour, wxSOUTH); | |
1695 | ||
1696 | dc.DrawBitmap(btn_bitmap, rect.x + rect.width / 2 - 2, lower.y - 2, true); | |
1697 | } | |
1698 | ||
1699 | void wxRibbonMSWArtProvider::DrawGalleryItemBackground( | |
1700 | wxDC& dc, | |
1701 | wxRibbonGallery* wnd, | |
1702 | const wxRect& rect, | |
1703 | wxRibbonGalleryItem* item) | |
1704 | { | |
1705 | if(wnd->GetHoveredItem() != item && wnd->GetActiveItem() != item && | |
1706 | wnd->GetSelection() != item) | |
1707 | return; | |
1708 | ||
1709 | dc.SetPen(m_gallery_item_border_pen); | |
1710 | dc.DrawLine(rect.x + 1, rect.y, rect.x + rect.width - 1, rect.y); | |
1711 | dc.DrawLine(rect.x, rect.y + 1, rect.x, rect.y + rect.height - 1); | |
1712 | dc.DrawLine(rect.x + 1, rect.y + rect.height - 1, rect.x + rect.width - 1, | |
1713 | rect.y + rect.height - 1); | |
1714 | dc.DrawLine(rect.x + rect.width - 1, rect.y + 1, rect.x + rect.width - 1, | |
1715 | rect.y + rect.height - 1); | |
1716 | ||
1717 | wxBrush top_brush; | |
1718 | wxColour bg_colour; | |
1719 | wxColour bg_gradient_colour; | |
1720 | ||
1721 | if(wnd->GetActiveItem() == item || wnd->GetSelection() == item) | |
1722 | { | |
1723 | top_brush = m_gallery_button_active_background_top_brush; | |
1724 | bg_colour = m_gallery_button_active_background_colour; | |
1725 | bg_gradient_colour = m_gallery_button_active_background_gradient_colour; | |
1726 | } | |
1727 | else | |
1728 | { | |
1729 | top_brush = m_gallery_button_hover_background_top_brush; | |
1730 | bg_colour = m_gallery_button_hover_background_colour; | |
1731 | bg_gradient_colour = m_gallery_button_hover_background_gradient_colour; | |
1732 | } | |
1733 | ||
1734 | wxRect upper(rect); | |
1735 | upper.x += 1; | |
1736 | upper.width -= 2; | |
1737 | upper.y += 1; | |
1738 | upper.height /= 3; | |
1739 | dc.SetPen(*wxTRANSPARENT_PEN); | |
1740 | dc.SetBrush(top_brush); | |
1741 | dc.DrawRectangle(upper.x, upper.y, upper.width, upper.height); | |
1742 | ||
1743 | wxRect lower(upper); | |
1744 | lower.y += lower.height; | |
1745 | lower.height = rect.height - 2 - lower.height; | |
1746 | dc.GradientFillLinear(lower, bg_colour, bg_gradient_colour, wxSOUTH); | |
1747 | } | |
1748 | ||
1749 | void wxRibbonMSWArtProvider::DrawPanelBorder(wxDC& dc, const wxRect& rect, | |
1750 | wxPen& primary_colour, | |
1751 | wxPen& secondary_colour) | |
1752 | { | |
1753 | wxPoint border_points[9]; | |
1754 | border_points[0] = wxPoint(2, 0); | |
1755 | border_points[1] = wxPoint(rect.width - 3, 0); | |
1756 | border_points[2] = wxPoint(rect.width - 1, 2); | |
1757 | border_points[3] = wxPoint(rect.width - 1, rect.height - 3); | |
1758 | border_points[4] = wxPoint(rect.width - 3, rect.height - 1); | |
1759 | border_points[5] = wxPoint(2, rect.height - 1); | |
1760 | border_points[6] = wxPoint(0, rect.height - 3); | |
1761 | border_points[7] = wxPoint(0, 2); | |
1762 | ||
1763 | if(primary_colour.GetColour() == secondary_colour.GetColour()) | |
1764 | { | |
1765 | border_points[8] = border_points[0]; | |
1766 | dc.SetPen(primary_colour); | |
1767 | dc.DrawLines(sizeof(border_points)/sizeof(wxPoint), border_points, rect.x, rect.y); | |
1768 | } | |
1769 | else | |
1770 | { | |
1771 | dc.SetPen(primary_colour); | |
1772 | dc.DrawLines(3, border_points, rect.x, rect.y); | |
1773 | ||
1774 | #define SingleLine(start, finish) \ | |
1775 | dc.DrawLine(start.x + rect.x, start.y + rect.y, finish.x + rect.x, finish.y + rect.y) | |
1776 | ||
1777 | SingleLine(border_points[0], border_points[7]); | |
1778 | dc.SetPen(secondary_colour); | |
1779 | dc.DrawLines(3, border_points + 4, rect.x, rect.y); | |
1780 | SingleLine(border_points[4], border_points[3]); | |
1781 | ||
1782 | #undef SingleLine | |
1783 | ||
1784 | border_points[6] = border_points[2]; | |
1785 | wxRibbonDrawParallelGradientLines(dc, 2, border_points + 6, 0, 1, | |
1786 | border_points[3].y - border_points[2].y + 1, rect.x, rect.y, | |
1787 | primary_colour.GetColour(), secondary_colour.GetColour()); | |
1788 | } | |
1789 | } | |
1790 | ||
1791 | void wxRibbonMSWArtProvider::DrawMinimisedPanel( | |
1792 | wxDC& dc, | |
1793 | wxRibbonPanel* wnd, | |
1794 | const wxRect& rect, | |
1795 | wxBitmap& bitmap) | |
1796 | { | |
1797 | DrawPartialPageBackground(dc, wnd, rect, false); | |
1798 | ||
1799 | wxRect true_rect(rect); | |
1800 | RemovePanelPadding(&true_rect); | |
1801 | ||
1802 | if(wnd->GetExpandedPanel() != NULL) | |
1803 | { | |
1804 | wxRect client_rect(true_rect); | |
1805 | client_rect.x++; | |
1806 | client_rect.width -= 2; | |
1807 | client_rect.y++; | |
1808 | client_rect.height = (rect.y + rect.height / 5) - client_rect.x; | |
ce00f59b | 1809 | dc.GradientFillLinear(client_rect, |
3c3ead1d PC |
1810 | m_panel_active_background_top_colour, |
1811 | m_panel_active_background_top_gradient_colour, wxSOUTH); | |
1812 | ||
1813 | client_rect.y += client_rect.height; | |
1814 | client_rect.height = (true_rect.y + true_rect.height) - client_rect.y; | |
ce00f59b | 1815 | dc.GradientFillLinear(client_rect, |
3c3ead1d PC |
1816 | m_panel_active_background_colour, |
1817 | m_panel_active_background_gradient_colour, wxSOUTH); | |
1818 | } | |
1819 | else if(wnd->IsHovered()) | |
1820 | { | |
1821 | wxRect client_rect(true_rect); | |
1822 | client_rect.x++; | |
1823 | client_rect.width -= 2; | |
1824 | client_rect.y++; | |
1825 | client_rect.height -= 2; | |
1826 | DrawPartialPageBackground(dc, wnd, client_rect, true); | |
1827 | } | |
1828 | ||
1829 | wxRect preview; | |
1830 | DrawMinimisedPanelCommon(dc, wnd, true_rect, &preview); | |
1831 | ||
1832 | dc.SetBrush(m_panel_hover_label_background_brush); | |
1833 | dc.SetPen(*wxTRANSPARENT_PEN); | |
1834 | dc.DrawRectangle(preview.x + 1, preview.y + preview.height - 8, | |
1835 | preview.width - 2, 7); | |
1836 | ||
1837 | int mid_pos = rect.y + rect.height / 5 - preview.y; | |
1838 | if(mid_pos < 0 || mid_pos >= preview.height) | |
1839 | { | |
1840 | wxRect full_rect(preview); | |
1841 | full_rect.x += 1; | |
1842 | full_rect.y += 1; | |
1843 | full_rect.width -= 2; | |
1844 | full_rect.height -= 9; | |
1845 | if(mid_pos < 0) | |
1846 | { | |
1847 | dc.GradientFillLinear(full_rect, | |
1848 | m_page_hover_background_colour, | |
1849 | m_page_hover_background_gradient_colour, wxSOUTH); | |
1850 | } | |
1851 | else | |
1852 | { | |
1853 | dc.GradientFillLinear(full_rect, | |
1854 | m_page_hover_background_top_colour, | |
1855 | m_page_hover_background_top_gradient_colour, wxSOUTH); | |
1856 | } | |
1857 | } | |
1858 | else | |
1859 | { | |
1860 | wxRect top_rect(preview); | |
1861 | top_rect.x += 1; | |
1862 | top_rect.y += 1; | |
1863 | top_rect.width -= 2; | |
1864 | top_rect.height = mid_pos; | |
1865 | dc.GradientFillLinear(top_rect, | |
1866 | m_page_hover_background_top_colour, | |
1867 | m_page_hover_background_top_gradient_colour, wxSOUTH); | |
1868 | ||
1869 | wxRect btm_rect(top_rect); | |
1870 | btm_rect.y = preview.y + mid_pos; | |
1871 | btm_rect.height = preview.y + preview.height - 7 - btm_rect.y; | |
1872 | dc.GradientFillLinear(btm_rect, | |
1873 | m_page_hover_background_colour, | |
1874 | m_page_hover_background_gradient_colour, wxSOUTH); | |
1875 | } | |
1876 | ||
1877 | if(bitmap.IsOk()) | |
1878 | { | |
1879 | dc.DrawBitmap(bitmap, preview.x + (preview.width - bitmap.GetWidth()) / 2, | |
1880 | preview.y + (preview.height - 7 - bitmap.GetHeight()) / 2, true); | |
1881 | } | |
1882 | ||
1883 | DrawPanelBorder(dc, preview, m_panel_border_pen, m_panel_border_gradient_pen); | |
1884 | ||
1885 | DrawPanelBorder(dc, true_rect, m_panel_minimised_border_pen, | |
1886 | m_panel_minimised_border_gradient_pen); | |
1887 | } | |
1888 | ||
1889 | void wxRibbonMSWArtProvider::DrawMinimisedPanelCommon( | |
1890 | wxDC& dc, | |
1891 | wxRibbonPanel* wnd, | |
1892 | const wxRect& true_rect, | |
1893 | wxRect* preview_rect) | |
1894 | { | |
1895 | wxRect preview(0, 0, 32, 32); | |
1896 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
1897 | { | |
1898 | preview.x = true_rect.x + 4; | |
1899 | preview.y = true_rect.y + (true_rect.height - preview.height) / 2; | |
1900 | } | |
1901 | else | |
1902 | { | |
1903 | preview.x = true_rect.x + (true_rect.width - preview.width) / 2; | |
1904 | preview.y = true_rect.y + 4; | |
1905 | } | |
1906 | if(preview_rect) | |
1907 | *preview_rect = preview; | |
1908 | ||
1909 | wxCoord label_width, label_height; | |
1910 | dc.SetFont(m_panel_label_font); | |
1911 | dc.GetTextExtent(wnd->GetLabel(), &label_width, &label_height); | |
1912 | ||
1913 | int xpos = true_rect.x + (true_rect.width - label_width + 1) / 2; | |
1914 | int ypos = preview.y + preview.height + 5; | |
1915 | ||
1916 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
1917 | { | |
1918 | xpos = preview.x + preview.width + 5; | |
1919 | ypos = true_rect.y + (true_rect.height - label_height) / 2; | |
1920 | } | |
1921 | ||
1922 | dc.SetTextForeground(m_panel_minimised_label_colour); | |
1923 | dc.DrawText(wnd->GetLabel(), xpos, ypos); | |
ce00f59b | 1924 | |
3c3ead1d PC |
1925 | |
1926 | wxPoint arrow_points[3]; | |
1927 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
1928 | { | |
1929 | xpos += label_width; | |
1930 | arrow_points[0] = wxPoint(xpos + 5, ypos + label_height / 2); | |
1931 | arrow_points[1] = arrow_points[0] + wxPoint(-3, 3); | |
1932 | arrow_points[2] = arrow_points[0] + wxPoint(-3, -3); | |
1933 | } | |
1934 | else | |
1935 | { | |
1936 | ypos += label_height; | |
1937 | arrow_points[0] = wxPoint(true_rect.width / 2, ypos + 5); | |
1938 | arrow_points[1] = arrow_points[0] + wxPoint(-3, -3); | |
1939 | arrow_points[2] = arrow_points[0] + wxPoint( 3, -3); | |
1940 | } | |
1941 | ||
1942 | dc.SetPen(*wxTRANSPARENT_PEN); | |
1943 | wxBrush B(m_panel_minimised_label_colour); | |
1944 | dc.SetBrush(B); | |
1945 | dc.DrawPolygon(sizeof(arrow_points)/sizeof(wxPoint), arrow_points, | |
1946 | true_rect.x, true_rect.y); | |
1947 | } | |
1948 | ||
1949 | void wxRibbonMSWArtProvider::DrawButtonBarBackground( | |
1950 | wxDC& dc, | |
1951 | wxWindow* wnd, | |
1952 | const wxRect& rect) | |
1953 | { | |
1954 | DrawPartialPageBackground(dc, wnd, rect, true); | |
1955 | } | |
1956 | ||
1957 | void wxRibbonMSWArtProvider::DrawPartialPageBackground( | |
1958 | wxDC& dc, | |
1959 | wxWindow* wnd, | |
1960 | const wxRect& rect, | |
1961 | bool allow_hovered) | |
1962 | { | |
1963 | // Assume the window is a child of a ribbon page, and also check for a | |
1964 | // hovered panel somewhere between the window and the page, as it causes | |
1965 | // the background to change. | |
1966 | wxPoint offset(wnd->GetPosition()); | |
1967 | wxRibbonPage* page = NULL; | |
1968 | wxWindow* parent = wnd->GetParent(); | |
00491f99 | 1969 | wxRibbonPanel* panel = wxDynamicCast(wnd, wxRibbonPanel); |
3c3ead1d PC |
1970 | bool hovered = false; |
1971 | ||
3c3ead1d PC |
1972 | if(panel != NULL) |
1973 | { | |
1974 | hovered = allow_hovered && panel->IsHovered(); | |
1975 | if(panel->GetExpandedDummy() != NULL) | |
1976 | { | |
1977 | offset = panel->GetExpandedDummy()->GetPosition(); | |
1978 | parent = panel->GetExpandedDummy()->GetParent(); | |
1979 | } | |
1980 | } | |
1981 | for(; parent; parent = parent->GetParent()) | |
1982 | { | |
1983 | if(panel == NULL) | |
1984 | { | |
1985 | panel = wxDynamicCast(parent, wxRibbonPanel); | |
1986 | if(panel != NULL) | |
1987 | { | |
1988 | hovered = allow_hovered && panel->IsHovered(); | |
1989 | if(panel->GetExpandedDummy() != NULL) | |
1990 | { | |
1991 | parent = panel->GetExpandedDummy(); | |
1992 | } | |
1993 | } | |
1994 | } | |
1995 | page = wxDynamicCast(parent, wxRibbonPage); | |
1996 | if(page != NULL) | |
1997 | { | |
1998 | break; | |
1999 | } | |
2000 | offset += parent->GetPosition(); | |
2001 | } | |
2002 | if(page != NULL) | |
2003 | { | |
2004 | DrawPartialPageBackground(dc, wnd, rect, page, offset, hovered); | |
2005 | return; | |
2006 | } | |
2007 | ||
2008 | // No page found - fallback to painting with a stock brush | |
2009 | dc.SetBrush(*wxWHITE_BRUSH); | |
2010 | dc.SetPen(*wxTRANSPARENT_PEN); | |
2011 | dc.DrawRectangle(rect.x, rect.y, rect.width, rect.height); | |
2012 | } | |
2013 | ||
2014 | void wxRibbonMSWArtProvider::DrawButtonBarButton( | |
2015 | wxDC& dc, | |
2016 | wxWindow* WXUNUSED(wnd), | |
2017 | const wxRect& rect, | |
2018 | wxRibbonButtonKind kind, | |
2019 | long state, | |
2020 | const wxString& label, | |
2021 | const wxBitmap& bitmap_large, | |
2022 | const wxBitmap& bitmap_small) | |
2023 | { | |
2024 | if(state & (wxRIBBON_BUTTONBAR_BUTTON_HOVER_MASK | | |
2025 | wxRIBBON_BUTTONBAR_BUTTON_ACTIVE_MASK)) | |
2026 | { | |
2027 | if(state & wxRIBBON_BUTTONBAR_BUTTON_ACTIVE_MASK) | |
2028 | dc.SetPen(m_button_bar_active_border_pen); | |
2029 | else | |
2030 | dc.SetPen(m_button_bar_hover_border_pen); | |
2031 | ||
2032 | wxRect bg_rect(rect); | |
2033 | bg_rect.x++; | |
2034 | bg_rect.y++; | |
2035 | bg_rect.width -= 2; | |
2036 | bg_rect.height -= 2; | |
2037 | ||
2038 | wxRect bg_rect_top(bg_rect); | |
2039 | bg_rect_top.height /= 3; | |
2040 | bg_rect.y += bg_rect_top.height; | |
2041 | bg_rect.height -= bg_rect_top.height; | |
2042 | ||
2043 | if(kind == wxRIBBON_BUTTON_HYBRID) | |
2044 | { | |
2045 | switch(state & wxRIBBON_BUTTONBAR_BUTTON_SIZE_MASK) | |
2046 | { | |
2047 | case wxRIBBON_BUTTONBAR_BUTTON_LARGE: | |
2048 | { | |
2049 | int iYBorder = rect.y + bitmap_large.GetHeight() + 4; | |
2050 | wxRect partial_bg(rect); | |
2051 | if(state & wxRIBBON_BUTTONBAR_BUTTON_NORMAL_HOVERED) | |
2052 | { | |
2053 | partial_bg.SetBottom(iYBorder - 1); | |
2054 | } | |
2055 | else | |
2056 | { | |
2057 | partial_bg.height -= (iYBorder - partial_bg.y + 1); | |
2058 | partial_bg.y = iYBorder + 1; | |
2059 | } | |
2060 | dc.DrawLine(rect.x, iYBorder, rect.x + rect.width, iYBorder); | |
2061 | bg_rect.Intersect(partial_bg); | |
2062 | bg_rect_top.Intersect(partial_bg); | |
2063 | } | |
2064 | break; | |
2065 | case wxRIBBON_BUTTONBAR_BUTTON_MEDIUM: | |
2066 | { | |
2067 | int iArrowWidth = 9; | |
2068 | if(state & wxRIBBON_BUTTONBAR_BUTTON_NORMAL_HOVERED) | |
2069 | { | |
2070 | bg_rect.width -= iArrowWidth; | |
2071 | bg_rect_top.width -= iArrowWidth; | |
2072 | dc.DrawLine(bg_rect_top.x + bg_rect_top.width, | |
2073 | rect.y, bg_rect_top.x + bg_rect_top.width, | |
2074 | rect.y + rect.height); | |
2075 | } | |
2076 | else | |
2077 | { | |
2078 | --iArrowWidth; | |
2079 | bg_rect.x += bg_rect.width - iArrowWidth; | |
2080 | bg_rect_top.x += bg_rect_top.width - iArrowWidth; | |
2081 | bg_rect.width = iArrowWidth; | |
2082 | bg_rect_top.width = iArrowWidth; | |
2083 | dc.DrawLine(bg_rect_top.x - 1, rect.y, | |
2084 | bg_rect_top.x - 1, rect.y + rect.height); | |
2085 | } | |
2086 | } | |
2087 | break; | |
2088 | case wxRIBBON_BUTTONBAR_BUTTON_SMALL: | |
2089 | break; | |
2090 | } | |
2091 | } | |
2092 | ||
2093 | if(state & wxRIBBON_BUTTONBAR_BUTTON_ACTIVE_MASK) | |
2094 | { | |
2095 | dc.GradientFillLinear(bg_rect_top, | |
2096 | m_button_bar_active_background_top_colour, | |
2097 | m_button_bar_active_background_top_gradient_colour, wxSOUTH); | |
2098 | dc.GradientFillLinear(bg_rect, | |
2099 | m_button_bar_active_background_colour, | |
2100 | m_button_bar_active_background_gradient_colour, wxSOUTH); | |
2101 | } | |
2102 | else | |
2103 | { | |
2104 | dc.GradientFillLinear(bg_rect_top, | |
2105 | m_button_bar_hover_background_top_colour, | |
2106 | m_button_bar_hover_background_top_gradient_colour, wxSOUTH); | |
2107 | dc.GradientFillLinear(bg_rect, | |
2108 | m_button_bar_hover_background_colour, | |
2109 | m_button_bar_hover_background_gradient_colour, wxSOUTH); | |
2110 | } | |
2111 | ||
2112 | wxPoint border_points[9]; | |
2113 | border_points[0] = wxPoint(2, 0); | |
2114 | border_points[1] = wxPoint(rect.width - 3, 0); | |
2115 | border_points[2] = wxPoint(rect.width - 1, 2); | |
2116 | border_points[3] = wxPoint(rect.width - 1, rect.height - 3); | |
2117 | border_points[4] = wxPoint(rect.width - 3, rect.height - 1); | |
2118 | border_points[5] = wxPoint(2, rect.height - 1); | |
2119 | border_points[6] = wxPoint(0, rect.height - 3); | |
2120 | border_points[7] = wxPoint(0, 2); | |
2121 | border_points[8] = border_points[0]; | |
2122 | ||
2123 | dc.DrawLines(sizeof(border_points)/sizeof(wxPoint), border_points, | |
2124 | rect.x, rect.y); | |
2125 | } | |
2126 | ||
2127 | dc.SetFont(m_button_bar_label_font); | |
2128 | dc.SetTextForeground(m_button_bar_label_colour); | |
2129 | DrawButtonBarButtonForeground(dc, rect, kind, state, label, bitmap_large, | |
2130 | bitmap_small); | |
2131 | } | |
2132 | ||
2133 | void wxRibbonMSWArtProvider::DrawButtonBarButtonForeground( | |
2134 | wxDC& dc, | |
2135 | const wxRect& rect, | |
2136 | wxRibbonButtonKind kind, | |
2137 | long state, | |
2138 | const wxString& label, | |
2139 | const wxBitmap& bitmap_large, | |
2140 | const wxBitmap& bitmap_small) | |
2141 | { | |
2142 | switch(state & wxRIBBON_BUTTONBAR_BUTTON_SIZE_MASK) | |
2143 | { | |
2144 | case wxRIBBON_BUTTONBAR_BUTTON_LARGE: | |
2145 | { | |
2146 | const int padding = 2; | |
2147 | dc.DrawBitmap(bitmap_large, | |
2148 | rect.x + (rect.width - bitmap_large.GetWidth()) / 2, | |
2149 | rect.y + padding, true); | |
2150 | int ypos = rect.y + padding + bitmap_large.GetHeight() + padding; | |
2151 | int arrow_width = kind == wxRIBBON_BUTTON_NORMAL ? 0 : 8; | |
2152 | wxCoord label_w, label_h; | |
2153 | dc.GetTextExtent(label, &label_w, &label_h); | |
2154 | if(label_w + 2 * padding <= rect.width) | |
2155 | { | |
2156 | dc.DrawText(label, rect.x + (rect.width - label_w) / 2, ypos); | |
2157 | if(arrow_width != 0) | |
2158 | { | |
2159 | DrawDropdownArrow(dc, rect.x + rect.width / 2, | |
2160 | ypos + (label_h * 3) / 2, | |
2161 | m_button_bar_label_colour); | |
2162 | } | |
2163 | } | |
2164 | else | |
2165 | { | |
2166 | size_t breaki = label.Len(); | |
2167 | do | |
2168 | { | |
2169 | --breaki; | |
2170 | if(wxRibbonCanLabelBreakAtPosition(label, breaki)) | |
2171 | { | |
2172 | wxString label_top = label.Mid(0, breaki); | |
2173 | dc.GetTextExtent(label_top, &label_w, &label_h); | |
2174 | if(label_w + 2 * padding <= rect.width) | |
2175 | { | |
2176 | dc.DrawText(label_top, | |
2177 | rect.x + (rect.width - label_w) / 2, ypos); | |
2178 | ypos += label_h; | |
2179 | wxString label_bottom = label.Mid(breaki + 1); | |
2180 | dc.GetTextExtent(label_bottom, &label_w, &label_h); | |
2181 | label_w += arrow_width; | |
2182 | int iX = rect.x + (rect.width - label_w) / 2; | |
2183 | dc.DrawText(label_bottom, iX, ypos); | |
2184 | if(arrow_width != 0) | |
2185 | { | |
ce00f59b | 2186 | DrawDropdownArrow(dc, |
3c3ead1d PC |
2187 | iX + 2 +label_w - arrow_width, |
2188 | ypos + label_h / 2 + 1, | |
2189 | m_button_bar_label_colour); | |
2190 | } | |
2191 | break; | |
2192 | } | |
2193 | } | |
2194 | } while(breaki > 0); | |
2195 | } | |
2196 | } | |
2197 | break; | |
2198 | case wxRIBBON_BUTTONBAR_BUTTON_MEDIUM: | |
2199 | { | |
2200 | int x_cursor = rect.x + 2; | |
2201 | dc.DrawBitmap(bitmap_small, x_cursor, | |
2202 | rect.y + (rect.height - bitmap_small.GetHeight())/2, true); | |
2203 | x_cursor += bitmap_small.GetWidth() + 2; | |
2204 | wxCoord label_w, label_h; | |
2205 | dc.GetTextExtent(label, &label_w, &label_h); | |
2206 | dc.DrawText(label, x_cursor, | |
2207 | rect.y + (rect.height - label_h) / 2); | |
2208 | x_cursor += label_w + 3; | |
2209 | if(kind != wxRIBBON_BUTTON_NORMAL) | |
2210 | { | |
2211 | DrawDropdownArrow(dc, x_cursor, rect.y + rect.height / 2, | |
2212 | m_button_bar_label_colour); | |
2213 | } | |
2214 | break; | |
2215 | } | |
2216 | default: | |
2217 | // TODO | |
2218 | break; | |
2219 | } | |
2220 | } | |
2221 | ||
2222 | void wxRibbonMSWArtProvider::DrawToolBarBackground( | |
2223 | wxDC& dc, | |
2224 | wxWindow* wnd, | |
2225 | const wxRect& rect) | |
2226 | { | |
2227 | DrawPartialPageBackground(dc, wnd, rect); | |
2228 | } | |
2229 | ||
2230 | void wxRibbonMSWArtProvider::DrawToolGroupBackground( | |
2231 | wxDC& dc, | |
2232 | wxWindow* WXUNUSED(wnd), | |
2233 | const wxRect& rect) | |
2234 | { | |
2235 | dc.SetPen(m_toolbar_border_pen); | |
2236 | wxPoint outline[9]; | |
2237 | outline[0] = wxPoint(2, 0); | |
2238 | outline[1] = wxPoint(rect.width - 3, 0); | |
2239 | outline[2] = wxPoint(rect.width - 1, 2); | |
2240 | outline[3] = wxPoint(rect.width - 1, rect.height - 3); | |
2241 | outline[4] = wxPoint(rect.width - 3, rect.height - 1); | |
2242 | outline[5] = wxPoint(2, rect.height - 1); | |
2243 | outline[6] = wxPoint(0, rect.height - 3); | |
2244 | outline[7] = wxPoint(0, 2); | |
2245 | outline[8] = outline[0]; | |
2246 | ||
2247 | dc.DrawLines(sizeof(outline)/sizeof(wxPoint), outline, rect.x, rect.y); | |
2248 | } | |
2249 | ||
2250 | void wxRibbonMSWArtProvider::DrawTool( | |
2251 | wxDC& dc, | |
2252 | wxWindow* WXUNUSED(wnd), | |
2253 | const wxRect& rect, | |
2254 | const wxBitmap& bitmap, | |
2255 | wxRibbonButtonKind kind, | |
2256 | long state) | |
2257 | { | |
2258 | wxRect bg_rect(rect); | |
2259 | bg_rect.Deflate(1); | |
2260 | if((state & wxRIBBON_TOOLBAR_TOOL_LAST) == 0) | |
2261 | bg_rect.width++; | |
2262 | bool is_split_hybrid = (kind == wxRIBBON_BUTTON_HYBRID && (state & | |
2263 | (wxRIBBON_TOOLBAR_TOOL_HOVER_MASK | wxRIBBON_TOOLBAR_TOOL_ACTIVE_MASK))); | |
2264 | ||
2265 | // Background | |
2266 | wxRect bg_rect_top(bg_rect); | |
2267 | bg_rect_top.height = (bg_rect_top.height * 2) / 5; | |
2268 | wxRect bg_rect_btm(bg_rect); | |
2269 | bg_rect_btm.y += bg_rect_top.height; | |
2270 | bg_rect_btm.height -= bg_rect_top.height; | |
2271 | wxColour bg_top_colour = m_tool_background_top_colour; | |
2272 | wxColour bg_top_grad_colour = m_tool_background_top_gradient_colour; | |
2273 | wxColour bg_colour = m_tool_background_colour; | |
2274 | wxColour bg_grad_colour = m_tool_background_gradient_colour; | |
2275 | if(state & wxRIBBON_TOOLBAR_TOOL_ACTIVE_MASK) | |
2276 | { | |
2277 | bg_top_colour = m_tool_active_background_top_colour; | |
2278 | bg_top_grad_colour = m_tool_active_background_top_gradient_colour; | |
2279 | bg_colour = m_tool_active_background_colour; | |
2280 | bg_grad_colour = m_tool_active_background_gradient_colour; | |
2281 | } | |
2282 | else if(state & wxRIBBON_TOOLBAR_TOOL_HOVER_MASK) | |
2283 | { | |
2284 | bg_top_colour = m_tool_hover_background_top_colour; | |
2285 | bg_top_grad_colour = m_tool_hover_background_top_gradient_colour; | |
2286 | bg_colour = m_tool_hover_background_colour; | |
2287 | bg_grad_colour = m_tool_hover_background_gradient_colour; | |
2288 | } | |
2289 | dc.GradientFillLinear(bg_rect_top, bg_top_colour, bg_top_grad_colour, wxSOUTH); | |
2290 | dc.GradientFillLinear(bg_rect_btm, bg_colour, bg_grad_colour, wxSOUTH); | |
2291 | if(is_split_hybrid) | |
2292 | { | |
2293 | wxRect nonrect(bg_rect); | |
2294 | if(state & (wxRIBBON_TOOLBAR_TOOL_DROPDOWN_HOVERED | | |
2295 | wxRIBBON_TOOLBAR_TOOL_DROPDOWN_ACTIVE)) | |
2296 | { | |
2297 | nonrect.width -= 8; | |
2298 | } | |
2299 | else | |
2300 | { | |
2301 | nonrect.x += nonrect.width - 8; | |
2302 | nonrect.width = 8; | |
2303 | } | |
2304 | wxBrush B(m_tool_hover_background_top_colour); | |
2305 | dc.SetPen(*wxTRANSPARENT_PEN); | |
2306 | dc.SetBrush(B); | |
2307 | dc.DrawRectangle(nonrect.x, nonrect.y, nonrect.width, nonrect.height); | |
2308 | } | |
ce00f59b | 2309 | |
3c3ead1d PC |
2310 | // Border |
2311 | dc.SetPen(m_toolbar_border_pen); | |
2312 | if(state & wxRIBBON_TOOLBAR_TOOL_FIRST) | |
2313 | { | |
2314 | dc.DrawPoint(rect.x + 1, rect.y + 1); | |
2315 | dc.DrawPoint(rect.x + 1, rect.y + rect.height - 2); | |
2316 | } | |
2317 | else | |
ce00f59b | 2318 | dc.DrawLine(rect.x, rect.y + 1, rect.x, rect.y + rect.height - 1); |
3c3ead1d PC |
2319 | |
2320 | if(state & wxRIBBON_TOOLBAR_TOOL_LAST) | |
2321 | { | |
2322 | dc.DrawPoint(rect.x + rect.width - 2, rect.y + 1); | |
2323 | dc.DrawPoint(rect.x + rect.width - 2, rect.y + rect.height - 2); | |
2324 | } | |
2325 | ||
2326 | // Foreground | |
2327 | int avail_width = bg_rect.GetWidth(); | |
2328 | if(kind != wxRIBBON_BUTTON_NORMAL) | |
2329 | { | |
2330 | avail_width -= 8; | |
2331 | if(is_split_hybrid) | |
2332 | { | |
ce00f59b | 2333 | dc.DrawLine(rect.x + avail_width + 1, rect.y, |
3c3ead1d PC |
2334 | rect.x + avail_width + 1, rect.y + rect.height); |
2335 | } | |
2336 | dc.DrawBitmap(m_toolbar_drop_bitmap, bg_rect.x + avail_width + 2, | |
2337 | bg_rect.y + (bg_rect.height / 2) - 2, true); | |
2338 | } | |
2339 | dc.DrawBitmap(bitmap, bg_rect.x + (avail_width - bitmap.GetWidth()) / 2, | |
2340 | bg_rect.y + (bg_rect.height - bitmap.GetHeight()) / 2, true); | |
2341 | } | |
2342 | ||
2343 | void wxRibbonMSWArtProvider::GetBarTabWidth( | |
2344 | wxDC& dc, | |
2345 | wxWindow* WXUNUSED(wnd), | |
2346 | const wxString& label, | |
2347 | const wxBitmap& bitmap, | |
2348 | int* ideal, | |
2349 | int* small_begin_need_separator, | |
2350 | int* small_must_have_separator, | |
2351 | int* minimum) | |
2352 | { | |
2353 | int width = 0; | |
2354 | int min = 0; | |
2355 | if((m_flags & wxRIBBON_BAR_SHOW_PAGE_LABELS) && !label.IsEmpty()) | |
2356 | { | |
2357 | dc.SetFont(m_tab_label_font); | |
2358 | width += dc.GetTextExtent(label).GetWidth(); | |
2359 | min += wxMin(25, width); // enough for a few chars | |
2360 | if(bitmap.IsOk()) | |
2361 | { | |
2362 | // gap between label and bitmap | |
2363 | width += 4; | |
2364 | min += 2; | |
2365 | } | |
2366 | } | |
2367 | if((m_flags & wxRIBBON_BAR_SHOW_PAGE_ICONS) && bitmap.IsOk()) | |
2368 | { | |
2369 | width += bitmap.GetWidth(); | |
2370 | min += bitmap.GetWidth(); | |
2371 | } | |
2372 | ||
2373 | if(ideal != NULL) | |
2374 | { | |
2375 | *ideal = width + 30; | |
2376 | } | |
2377 | if(small_begin_need_separator != NULL) | |
2378 | { | |
2379 | *small_begin_need_separator = width + 20; | |
2380 | } | |
2381 | if(small_must_have_separator != NULL) | |
2382 | { | |
2383 | *small_must_have_separator = width + 10; | |
2384 | } | |
2385 | if(minimum != NULL) | |
2386 | { | |
2387 | *minimum = min; | |
2388 | } | |
2389 | } | |
2390 | ||
2391 | int wxRibbonMSWArtProvider::GetTabCtrlHeight( | |
2392 | wxDC& dc, | |
2393 | wxWindow* WXUNUSED(wnd), | |
2394 | const wxRibbonPageTabInfoArray& pages) | |
2395 | { | |
2396 | int text_height = 0; | |
2397 | int icon_height = 0; | |
2398 | ||
2399 | if(pages.GetCount() <= 1 && (m_flags & wxRIBBON_BAR_ALWAYS_SHOW_TABS) == 0) | |
2400 | { | |
2401 | // To preserve space, a single tab need not be displayed. We still need | |
2402 | // two pixels of border / padding though. | |
2403 | return 2; | |
2404 | } | |
2405 | ||
2406 | if(m_flags & wxRIBBON_BAR_SHOW_PAGE_LABELS) | |
2407 | { | |
2408 | dc.SetFont(m_tab_label_font); | |
2409 | text_height = dc.GetTextExtent(wxT("ABCDEFXj")).GetHeight() + 10; | |
2410 | } | |
2411 | if(m_flags & wxRIBBON_BAR_SHOW_PAGE_ICONS) | |
2412 | { | |
2413 | size_t numpages = pages.GetCount(); | |
2414 | for(size_t i = 0; i < numpages; ++i) | |
2415 | { | |
2416 | const wxRibbonPageTabInfo& info = pages.Item(i); | |
2417 | if(info.page->GetIcon().IsOk()) | |
2418 | { | |
2419 | icon_height = wxMax(icon_height, info.page->GetIcon().GetHeight() + 4); | |
2420 | } | |
2421 | } | |
2422 | } | |
2423 | ||
2424 | return wxMax(text_height, icon_height); | |
2425 | } | |
2426 | ||
2427 | wxSize wxRibbonMSWArtProvider::GetScrollButtonMinimumSize( | |
2428 | wxDC& WXUNUSED(dc), | |
2429 | wxWindow* WXUNUSED(wnd), | |
2430 | long WXUNUSED(style)) | |
2431 | { | |
2432 | return wxSize(12, 12); | |
2433 | } | |
2434 | ||
2435 | wxSize wxRibbonMSWArtProvider::GetPanelSize( | |
2436 | wxDC& dc, | |
2437 | const wxRibbonPanel* wnd, | |
2438 | wxSize client_size, | |
2439 | wxPoint* client_offset) | |
2440 | { | |
2441 | dc.SetFont(m_panel_label_font); | |
2442 | wxSize label_size = dc.GetTextExtent(wnd->GetLabel()); | |
2443 | ||
2444 | client_size.IncBy(0, label_size.GetHeight()); | |
2445 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
2446 | client_size.IncBy(4, 8); | |
2447 | else | |
2448 | client_size.IncBy(6, 6); | |
2449 | ||
2450 | if(client_offset != NULL) | |
2451 | { | |
2452 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
2453 | *client_offset = wxPoint(2, 3); | |
2454 | else | |
2455 | *client_offset = wxPoint(3, 2); | |
2456 | } | |
2457 | ||
2458 | return client_size; | |
2459 | } | |
2460 | ||
2461 | wxSize wxRibbonMSWArtProvider::GetPanelClientSize( | |
2462 | wxDC& dc, | |
2463 | const wxRibbonPanel* wnd, | |
2464 | wxSize size, | |
2465 | wxPoint* client_offset) | |
2466 | { | |
2467 | dc.SetFont(m_panel_label_font); | |
2468 | wxSize label_size = dc.GetTextExtent(wnd->GetLabel()); | |
2469 | ||
2470 | size.DecBy(0, label_size.GetHeight()); | |
2471 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
2472 | size.DecBy(4, 8); | |
2473 | else | |
2474 | size.DecBy(6, 6); | |
2475 | ||
2476 | if(client_offset != NULL) | |
2477 | { | |
2478 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
2479 | *client_offset = wxPoint(2, 3); | |
2480 | else | |
2481 | *client_offset = wxPoint(3, 2); | |
2482 | } | |
16eac072 PC |
2483 | if (size.x < 0) size.x = 0; |
2484 | if (size.y < 0) size.y = 0; | |
3c3ead1d PC |
2485 | |
2486 | return size; | |
2487 | } | |
2488 | ||
2489 | wxSize wxRibbonMSWArtProvider::GetGallerySize( | |
2490 | wxDC& WXUNUSED(dc), | |
2491 | const wxRibbonGallery* WXUNUSED(wnd), | |
2492 | wxSize client_size) | |
2493 | { | |
2494 | client_size.IncBy( 2, 1); // Left / top padding | |
2495 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
2496 | client_size.IncBy(1, 16); // Right / bottom padding | |
2497 | else | |
2498 | client_size.IncBy(16, 1); // Right / bottom padding | |
2499 | return client_size; | |
2500 | } | |
2501 | ||
2502 | wxSize wxRibbonMSWArtProvider::GetGalleryClientSize( | |
2503 | wxDC& WXUNUSED(dc), | |
2504 | const wxRibbonGallery* WXUNUSED(wnd), | |
2505 | wxSize size, | |
2506 | wxPoint* client_offset, | |
2507 | wxRect* scroll_up_button, | |
2508 | wxRect* scroll_down_button, | |
2509 | wxRect* extension_button) | |
2510 | { | |
2511 | wxRect scroll_up; | |
2512 | wxRect scroll_down; | |
2513 | wxRect extension; | |
2514 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
2515 | { | |
2516 | // Flow is vertical - put buttons on bottom | |
2517 | scroll_up.y = size.GetHeight() - 15; | |
2518 | scroll_up.height = 15; | |
2519 | scroll_up.x = 0; | |
2520 | scroll_up.width = (size.GetWidth() + 2) / 3; | |
2521 | scroll_down.y = scroll_up.y; | |
2522 | scroll_down.height = scroll_up.height; | |
2523 | scroll_down.x = scroll_up.x + scroll_up.width; | |
ce00f59b | 2524 | scroll_down.width = scroll_up.width; |
3c3ead1d PC |
2525 | extension.y = scroll_down.y; |
2526 | extension.height = scroll_down.height; | |
2527 | extension.x = scroll_down.x + scroll_down.width; | |
2528 | extension.width = size.GetWidth() - scroll_up.width - scroll_down.width; | |
2529 | size.DecBy(1, 16); | |
2530 | size.DecBy( 2, 1); | |
2531 | } | |
2532 | else | |
2533 | { | |
2534 | // Flow is horizontal - put buttons on right | |
2535 | scroll_up.x = size.GetWidth() - 15; | |
2536 | scroll_up.width = 15; | |
2537 | scroll_up.y = 0; | |
2538 | scroll_up.height = (size.GetHeight() + 2) / 3; | |
2539 | scroll_down.x = scroll_up.x; | |
2540 | scroll_down.width = scroll_up.width; | |
2541 | scroll_down.y = scroll_up.y + scroll_up.height; | |
ce00f59b | 2542 | scroll_down.height = scroll_up.height; |
3c3ead1d PC |
2543 | extension.x = scroll_down.x; |
2544 | extension.width = scroll_down.width; | |
2545 | extension.y = scroll_down.y + scroll_down.height; | |
2546 | extension.height = size.GetHeight() - scroll_up.height - scroll_down.height; | |
2547 | size.DecBy(16, 1); | |
2548 | size.DecBy( 2, 1); | |
2549 | } | |
ce00f59b | 2550 | |
3c3ead1d PC |
2551 | if(client_offset != NULL) |
2552 | *client_offset = wxPoint(2, 1); | |
2553 | if(scroll_up_button != NULL) | |
2554 | *scroll_up_button = scroll_up; | |
2555 | if(scroll_down_button != NULL) | |
2556 | *scroll_down_button = scroll_down; | |
2557 | if(extension_button != NULL) | |
2558 | *extension_button = extension; | |
2559 | ||
2560 | return size; | |
2561 | } | |
2562 | ||
2563 | wxRect wxRibbonMSWArtProvider::GetPageBackgroundRedrawArea( | |
2564 | wxDC& WXUNUSED(dc), | |
2565 | const wxRibbonPage* WXUNUSED(wnd), | |
2566 | wxSize page_old_size, | |
2567 | wxSize page_new_size) | |
2568 | { | |
2569 | wxRect new_rect, old_rect; | |
2570 | ||
2571 | if(page_new_size.GetWidth() != page_old_size.GetWidth()) | |
2572 | { | |
2573 | if(page_new_size.GetHeight() != page_old_size.GetHeight()) | |
2574 | { | |
2575 | // Width and height both changed - redraw everything | |
2576 | return wxRect(page_new_size); | |
2577 | } | |
2578 | else | |
2579 | { | |
2580 | // Only width changed - redraw right hand side | |
2581 | const int right_edge_width = 4; | |
2582 | ||
2583 | new_rect = wxRect(page_new_size.GetWidth() - right_edge_width, 0, right_edge_width, page_new_size.GetHeight()); | |
2584 | old_rect = wxRect(page_old_size.GetWidth() - right_edge_width, 0, right_edge_width, page_old_size.GetHeight()); | |
2585 | } | |
2586 | } | |
2587 | else | |
2588 | { | |
2589 | if(page_new_size.GetHeight() == page_old_size.GetHeight()) | |
2590 | { | |
2591 | // Nothing changed (should never happen) - redraw nothing | |
2592 | return wxRect(0, 0, 0, 0); | |
2593 | } | |
2594 | else | |
2595 | { | |
2596 | // Height changed - need to redraw everything (as the background | |
2597 | // gradient is done vertically). | |
2598 | return page_new_size; | |
2599 | } | |
2600 | } | |
2601 | ||
2602 | new_rect.Union(old_rect); | |
2603 | new_rect.Intersect(wxRect(page_new_size)); | |
2604 | return new_rect; | |
2605 | } | |
2606 | ||
2607 | bool wxRibbonMSWArtProvider::GetButtonBarButtonSize( | |
2608 | wxDC& dc, | |
2609 | wxWindow* wnd, | |
2610 | wxRibbonButtonKind kind, | |
2611 | wxRibbonButtonBarButtonState size, | |
2612 | const wxString& label, | |
2613 | wxSize bitmap_size_large, | |
2614 | wxSize bitmap_size_small, | |
2615 | wxSize* button_size, | |
2616 | wxRect* normal_region, | |
2617 | wxRect* dropdown_region) | |
2618 | { | |
2619 | const int drop_button_width = 8; | |
2620 | ||
2621 | dc.SetFont(m_button_bar_label_font); | |
2622 | switch(size & wxRIBBON_BUTTONBAR_BUTTON_SIZE_MASK) | |
2623 | { | |
2624 | case wxRIBBON_BUTTONBAR_BUTTON_SMALL: | |
2625 | // Small bitmap, no label | |
2626 | *button_size = bitmap_size_small + wxSize(6, 4); | |
2627 | switch(kind) | |
2628 | { | |
2629 | case wxRIBBON_BUTTON_NORMAL: | |
2630 | *normal_region = wxRect(*button_size); | |
2631 | *dropdown_region = wxRect(0, 0, 0, 0); | |
2632 | break; | |
2633 | case wxRIBBON_BUTTON_DROPDOWN: | |
2634 | *button_size += wxSize(drop_button_width, 0); | |
2635 | *dropdown_region = wxRect(*button_size); | |
2636 | *normal_region = wxRect(0, 0, 0, 0); | |
2637 | break; | |
2638 | case wxRIBBON_BUTTON_HYBRID: | |
2639 | *normal_region = wxRect(*button_size); | |
2640 | *dropdown_region = wxRect(button_size->GetWidth(), 0, | |
2641 | drop_button_width, button_size->GetHeight()); | |
2642 | *button_size += wxSize(drop_button_width, 0); | |
2643 | break; | |
2644 | } | |
2645 | break; | |
2646 | case wxRIBBON_BUTTONBAR_BUTTON_MEDIUM: | |
2647 | // Small bitmap, with label to the right | |
2648 | { | |
2649 | GetButtonBarButtonSize(dc, wnd, kind, wxRIBBON_BUTTONBAR_BUTTON_SMALL, | |
2650 | label, bitmap_size_large, bitmap_size_small, button_size, | |
2651 | normal_region, dropdown_region); | |
2652 | int text_size = dc.GetTextExtent(label).GetWidth(); | |
2653 | button_size->SetWidth(button_size->GetWidth() + text_size); | |
2654 | switch(kind) | |
2655 | { | |
2656 | case wxRIBBON_BUTTON_DROPDOWN: | |
2657 | dropdown_region->SetWidth(dropdown_region->GetWidth() + text_size); | |
2658 | break; | |
2659 | case wxRIBBON_BUTTON_HYBRID: | |
2660 | dropdown_region->SetX(dropdown_region->GetX() + text_size); | |
2661 | // no break | |
2662 | case wxRIBBON_BUTTON_NORMAL: | |
2663 | normal_region->SetWidth(normal_region->GetWidth() + text_size); | |
2664 | break; | |
2665 | } | |
2666 | break; | |
2667 | } | |
2668 | case wxRIBBON_BUTTONBAR_BUTTON_LARGE: | |
2669 | // Large bitmap, with label below (possibly split over 2 lines) | |
2670 | { | |
2671 | wxSize icon_size(bitmap_size_large); | |
2672 | icon_size += wxSize(4, 4); | |
2673 | wxCoord label_height; | |
2674 | wxCoord best_width; | |
2675 | dc.GetTextExtent(label, &best_width, &label_height); | |
3c3ead1d PC |
2676 | int last_line_extra_width = 0; |
2677 | if(kind != wxRIBBON_BUTTON_NORMAL) | |
2678 | { | |
2679 | last_line_extra_width += 8; | |
3c3ead1d PC |
2680 | } |
2681 | size_t i; | |
2682 | for(i = 0; i < label.Len(); ++i) | |
2683 | { | |
2684 | if(wxRibbonCanLabelBreakAtPosition(label, i)) | |
2685 | { | |
2686 | int width = wxMax( | |
2687 | dc.GetTextExtent(label.Mid(0, i - 1)).GetWidth(), | |
2688 | dc.GetTextExtent(label.Mid(i + 1)).GetWidth() + last_line_extra_width); | |
2689 | if(width < best_width) | |
2690 | { | |
2691 | best_width = width; | |
3c3ead1d PC |
2692 | } |
2693 | } | |
2694 | } | |
2695 | label_height *= 2; // Assume two lines even when only one is used | |
2696 | // (to give all buttons a consistent height) | |
2697 | icon_size.SetWidth(wxMax(icon_size.GetWidth(), best_width) + 6); | |
2698 | icon_size.SetHeight(icon_size.GetHeight() + label_height); | |
2699 | *button_size = icon_size; | |
2700 | switch(kind) | |
2701 | { | |
2702 | case wxRIBBON_BUTTON_DROPDOWN: | |
2703 | *dropdown_region = wxRect(icon_size); | |
2704 | break; | |
2705 | case wxRIBBON_BUTTON_HYBRID: | |
2706 | *normal_region = wxRect(icon_size); | |
2707 | normal_region->height -= 2 + label_height; | |
2708 | dropdown_region->x = 0; | |
2709 | dropdown_region->y = normal_region->height; | |
2710 | dropdown_region->width = icon_size.GetWidth(); | |
2711 | dropdown_region->height = icon_size.GetHeight() - normal_region->height; | |
2712 | break; | |
2713 | case wxRIBBON_BUTTON_NORMAL: | |
2714 | *normal_region = wxRect(icon_size); | |
2715 | break; | |
2716 | } | |
2717 | break; | |
2718 | } | |
2719 | }; | |
2720 | return true; | |
2721 | } | |
2722 | ||
2723 | wxSize wxRibbonMSWArtProvider::GetMinimisedPanelMinimumSize( | |
2724 | wxDC& dc, | |
2725 | const wxRibbonPanel* wnd, | |
2726 | wxSize* desired_bitmap_size, | |
2727 | wxDirection* expanded_panel_direction) | |
2728 | { | |
2729 | if(desired_bitmap_size != NULL) | |
2730 | { | |
2731 | *desired_bitmap_size = wxSize(16, 16); | |
2732 | } | |
2733 | if(expanded_panel_direction != NULL) | |
2734 | { | |
2735 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
2736 | *expanded_panel_direction = wxEAST; | |
2737 | else | |
2738 | *expanded_panel_direction = wxSOUTH; | |
2739 | } | |
2740 | wxSize base_size(42, 42); | |
2741 | ||
2742 | dc.SetFont(m_panel_label_font); | |
2743 | wxSize label_size(dc.GetTextExtent(wnd->GetLabel())); | |
2744 | label_size.IncBy(2, 2); // Allow for differences between this DC and a paint DC | |
2745 | label_size.IncBy(6, 0); // Padding | |
2746 | label_size.y *= 2; // Second line for dropdown button | |
2747 | ||
2748 | if(m_flags & wxRIBBON_BAR_FLOW_VERTICAL) | |
2749 | { | |
2750 | // Label alongside icon | |
2751 | return wxSize(base_size.x + label_size.x, | |
2752 | wxMax(base_size.y, label_size.y)); | |
2753 | } | |
2754 | else | |
2755 | { | |
2756 | // Label beneath icon | |
2757 | return wxSize(wxMax(base_size.x, label_size.x), | |
2758 | base_size.y + label_size.y); | |
2759 | } | |
2760 | } | |
2761 | ||
2762 | wxSize wxRibbonMSWArtProvider::GetToolSize( | |
2763 | wxDC& WXUNUSED(dc), | |
2764 | wxWindow* WXUNUSED(wnd), | |
2765 | wxSize bitmap_size, | |
2766 | wxRibbonButtonKind kind, | |
2767 | bool WXUNUSED(is_first), | |
2768 | bool is_last, | |
2769 | wxRect* dropdown_region) | |
2770 | { | |
2771 | wxSize size(bitmap_size); | |
2772 | size.IncBy(7, 6); | |
2773 | if(is_last) | |
2774 | size.IncBy(1, 0); | |
2775 | if(kind != wxRIBBON_BUTTON_NORMAL) | |
2776 | { | |
2777 | size.IncBy(8, 0); | |
2778 | if(dropdown_region) | |
2779 | { | |
2780 | if(kind == wxRIBBON_BUTTON_DROPDOWN) | |
2781 | *dropdown_region = size; | |
2782 | else | |
2783 | *dropdown_region = wxRect(size.GetWidth() - 8, 0, 8, size.GetHeight()); | |
2784 | } | |
2785 | } | |
2786 | else | |
2787 | { | |
2788 | if(dropdown_region) | |
2789 | *dropdown_region = wxRect(0, 0, 0, 0); | |
2790 | } | |
2791 | return size; | |
2792 | } | |
2793 | ||
2794 | #endif // wxUSE_RIBBON |