]> git.saurik.com Git - wxWidgets.git/blame - src/generic/colrdlgg.cpp
don't wake up on Windows messages when waiting for thread termination in a console...
[wxWidgets.git] / src / generic / colrdlgg.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
f4da9a94 2// Name: src/generic/colrdlgg.cpp
c801d85f
KB
3// Purpose: Choice dialogs
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6aa89a22 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
c801d85f
KB
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
1e6feb95 16 #pragma hdrstop
c801d85f
KB
17#endif
18
853bbd9e 19#if wxUSE_COLOURDLG && (!defined(__WXGTK20__) || defined(__WXUNIVERSAL__))
1e6feb95 20
c801d85f 21#ifndef WX_PRECOMP
1e6feb95
VZ
22 #include "wx/utils.h"
23 #include "wx/intl.h"
24 #include "wx/dialog.h"
25 #include "wx/listbox.h"
26 #include "wx/button.h"
27 #include "wx/stattext.h"
28 #include "wx/layout.h"
29 #include "wx/dcclient.h"
1e6feb95 30 #include "wx/sizer.h"
f4da9a94 31 #include "wx/slider.h"
4130b487
RR
32#endif
33
34#if wxUSE_STATLINE
35 #include "wx/statline.h"
c801d85f
KB
36#endif
37
38#include "wx/generic/colrdlgg.h"
39
c801d85f
KB
40IMPLEMENT_DYNAMIC_CLASS(wxGenericColourDialog, wxDialog)
41
42BEGIN_EVENT_TABLE(wxGenericColourDialog, wxDialog)
c35414db 43 EVT_BUTTON(wxID_ADD_CUSTOM, wxGenericColourDialog::OnAddCustom)
6bb44116 44#if wxUSE_SLIDER
c35414db
VZ
45 EVT_SLIDER(wxID_RED_SLIDER, wxGenericColourDialog::OnRedSlider)
46 EVT_SLIDER(wxID_GREEN_SLIDER, wxGenericColourDialog::OnGreenSlider)
47 EVT_SLIDER(wxID_BLUE_SLIDER, wxGenericColourDialog::OnBlueSlider)
6bb44116 48#endif
c35414db
VZ
49 EVT_PAINT(wxGenericColourDialog::OnPaint)
50 EVT_MOUSE_EVENTS(wxGenericColourDialog::OnMouseEvent)
51 EVT_CLOSE(wxGenericColourDialog::OnCloseWindow)
c801d85f
KB
52END_EVENT_TABLE()
53
c801d85f
KB
54
55/*
56 * Generic wxColourDialog
57 */
58
61138de0
VZ
59// don't change the number of elements (48) in this array, the code below is
60// hardcoded to use it
61static const wxChar *wxColourDialogNames[] =
62{
63 wxT("ORANGE"),
64 wxT("GOLDENROD"),
65 wxT("WHEAT"),
66 wxT("SPRING GREEN"),
67 wxT("SKY BLUE"),
68 wxT("SLATE BLUE"),
69 wxT("MEDIUM VIOLET RED"),
70 wxT("PURPLE"),
71
72 wxT("RED"),
73 wxT("YELLOW"),
74 wxT("MEDIUM SPRING GREEN"),
75 wxT("PALE GREEN"),
76 wxT("CYAN"),
77 wxT("LIGHT STEEL BLUE"),
78 wxT("ORCHID"),
79 wxT("LIGHT MAGENTA"),
80
81 wxT("BROWN"),
82 wxT("YELLOW"),
83 wxT("GREEN"),
84 wxT("CADET BLUE"),
85 wxT("MEDIUM BLUE"),
86 wxT("MAGENTA"),
87 wxT("MAROON"),
88 wxT("ORANGE RED"),
89
90 wxT("FIREBRICK"),
91 wxT("CORAL"),
92 wxT("FOREST GREEN"),
93 wxT("AQUAMARINE"),
94 wxT("BLUE"),
95 wxT("NAVY"),
96 wxT("THISTLE"),
97 wxT("MEDIUM VIOLET RED"),
98
99 wxT("INDIAN RED"),
100 wxT("GOLD"),
101 wxT("MEDIUM SEA GREEN"),
102 wxT("MEDIUM BLUE"),
103 wxT("MIDNIGHT BLUE"),
104 wxT("GREY"),
105 wxT("PURPLE"),
106 wxT("KHAKI"),
107
108 wxT("BLACK"),
109 wxT("MEDIUM FOREST GREEN"),
110 wxT("KHAKI"),
111 wxT("DARK GREY"),
112 wxT("SEA GREEN"),
113 wxT("LIGHT GREY"),
114 wxT("MEDIUM SLATE BLUE"),
115 wxT("WHITE")
116};
c801d85f 117
4130b487 118wxGenericColourDialog::wxGenericColourDialog()
c801d85f 119{
f4da9a94
WS
120 dialogParent = NULL;
121 whichKind = 1;
122 colourSelection = -1;
c801d85f
KB
123}
124
f6bcfd97
BP
125wxGenericColourDialog::wxGenericColourDialog(wxWindow *parent,
126 wxColourData *data)
c801d85f 127{
f4da9a94
WS
128 whichKind = 1;
129 colourSelection = -1;
130 Create(parent, data);
c801d85f
KB
131}
132
4130b487 133wxGenericColourDialog::~wxGenericColourDialog()
c801d85f
KB
134{
135}
136
74e3313b 137void wxGenericColourDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
c801d85f 138{
f4da9a94 139 EndModal(wxID_CANCEL);
c801d85f
KB
140}
141
142bool wxGenericColourDialog::Create(wxWindow *parent, wxColourData *data)
143{
ca65c044 144 if ( !wxDialog::Create(parent, wxID_ANY, _("Choose colour"),
c47addef 145 wxPoint(0,0), wxSize(900, 900)) )
ca65c044 146 return false;
c35414db 147
f6bcfd97 148 dialogParent = parent;
c801d85f 149
f6bcfd97
BP
150 if (data)
151 colourData = *data;
c35414db 152
f6bcfd97
BP
153 InitializeColours();
154 CalculateMeasurements();
155 CreateWidgets();
156
ca65c044 157 return true;
c801d85f
KB
158}
159
4130b487 160int wxGenericColourDialog::ShowModal()
c801d85f 161{
f4da9a94 162 return wxDialog::ShowModal();
c801d85f
KB
163}
164
165
166// Internal functions
167void wxGenericColourDialog::OnMouseEvent(wxMouseEvent& event)
168{
169 if (event.ButtonDown(1))
170 {
171 int x = (int)event.GetX();
172 int y = (int)event.GetY();
173
b1f9d7bf
DW
174#ifdef __WXPM__
175 // Handle OS/2's reverse coordinate system and account for the dialog title
176 int nClientHeight;
177
178 GetClientSize(NULL, &nClientHeight);
179 y = (nClientHeight - y) + 20;
180#endif
c801d85f
KB
181 if ((x >= standardColoursRect.x && x <= (standardColoursRect.x + standardColoursRect.width)) &&
182 (y >= standardColoursRect.y && y <= (standardColoursRect.y + standardColoursRect.height)))
183 {
184 int selX = (int)(x - standardColoursRect.x)/(smallRectangleSize.x + gridSpacing);
185 int selY = (int)(y - standardColoursRect.y)/(smallRectangleSize.y + gridSpacing);
186 int ptr = (int)(selX + selY*8);
187 OnBasicColourClick(ptr);
188 }
189 else if ((x >= customColoursRect.x && x <= (customColoursRect.x + customColoursRect.width)) &&
190 (y >= customColoursRect.y && y <= (customColoursRect.y + customColoursRect.height)))
191 {
192 int selX = (int)(x - customColoursRect.x)/(smallRectangleSize.x + gridSpacing);
193 int selY = (int)(y - customColoursRect.y)/(smallRectangleSize.y + gridSpacing);
194 int ptr = (int)(selX + selY*8);
195 OnCustomColourClick(ptr);
196 }
c10920de
VS
197 else
198 event.Skip();
c801d85f 199 }
c10920de
VS
200 else
201 event.Skip();
c801d85f
KB
202}
203
204void wxGenericColourDialog::OnPaint(wxPaintEvent& event)
205{
1bf38b0e 206#if !defined(__WXMOTIF__) && !defined(__WXPM__) && !defined(__WXCOCOA__)
7a893a31
WS
207 wxDialog::OnPaint(event);
208#else
209 wxUnusedVar(event);
d75638f8 210#endif
c801d85f 211
7a893a31 212 wxPaintDC dc(this);
c801d85f 213
7a893a31
WS
214 PaintBasicColours(dc);
215 PaintCustomColours(dc);
216 PaintCustomColour(dc);
217 PaintHighlight(dc, true);
c801d85f
KB
218}
219
4130b487 220void wxGenericColourDialog::CalculateMeasurements()
c801d85f 221{
f4da9a94
WS
222 smallRectangleSize.x = 18;
223 smallRectangleSize.y = 14;
224 customRectangleSize.x = 40;
225 customRectangleSize.y = 40;
c801d85f 226
f4da9a94
WS
227 gridSpacing = 6;
228 sectionSpacing = 15;
c801d85f 229
f4da9a94 230 standardColoursRect.x = 10;
b1f9d7bf 231#ifdef __WXPM__
f4da9a94 232 standardColoursRect.y = 15 + 20; /* OS/2 needs to account for dialog titlebar */
b1f9d7bf 233#else
f4da9a94 234 standardColoursRect.y = 15;
b1f9d7bf 235#endif
f4da9a94
WS
236 standardColoursRect.width = (8*smallRectangleSize.x) + (7*gridSpacing);
237 standardColoursRect.height = (6*smallRectangleSize.y) + (5*gridSpacing);
238
239 customColoursRect.x = standardColoursRect.x;
240 customColoursRect.y = standardColoursRect.y + standardColoursRect.height + 20;
241 customColoursRect.width = (8*smallRectangleSize.x) + (7*gridSpacing);
242 customColoursRect.height = (2*smallRectangleSize.y) + (1*gridSpacing);
243
244 singleCustomColourRect.x = customColoursRect.width + customColoursRect.x + sectionSpacing;
245 singleCustomColourRect.y = 80;
246 singleCustomColourRect.width = customRectangleSize.x;
247 singleCustomColourRect.height = customRectangleSize.y;
248
249 okButtonX = 10;
250 customButtonX = singleCustomColourRect.x ;
251 buttonY = customColoursRect.y + customColoursRect.height + 10;
c801d85f
KB
252}
253
4130b487 254void wxGenericColourDialog::CreateWidgets()
c801d85f 255{
4130b487 256 wxBeginBusyCursor();
c801d85f 257
6bb44116
WS
258 wxBoxSizer *topSizer = new wxBoxSizer( wxVERTICAL );
259
f79a46f8 260 const int sliderHeight = 160;
4130b487 261
bd9f3519 262 // first sliders
6bb44116
WS
263#if wxUSE_SLIDER
264 const int sliderX = singleCustomColourRect.x + singleCustomColourRect.width + sectionSpacing;
265
984b0d8b 266 redSlider = new wxSlider(this, wxID_RED_SLIDER, colourData.m_dataColour.Red(), 0, 255,
a3b8b891 267 wxDefaultPosition, wxSize(wxDefaultCoord, sliderHeight), wxSL_VERTICAL|wxSL_LABELS|wxSL_INVERSE);
984b0d8b 268 greenSlider = new wxSlider(this, wxID_GREEN_SLIDER, colourData.m_dataColour.Green(), 0, 255,
a3b8b891 269 wxDefaultPosition, wxSize(wxDefaultCoord, sliderHeight), wxSL_VERTICAL|wxSL_LABELS|wxSL_INVERSE);
984b0d8b 270 blueSlider = new wxSlider(this, wxID_BLUE_SLIDER, colourData.m_dataColour.Blue(), 0, 255,
a3b8b891 271 wxDefaultPosition, wxSize(wxDefaultCoord, sliderHeight), wxSL_VERTICAL|wxSL_LABELS|wxSL_INVERSE);
f79a46f8
WS
272
273 wxBoxSizer *sliderSizer = new wxBoxSizer( wxHORIZONTAL );
274
bd9f3519 275 sliderSizer->Add(sliderX, sliderHeight );
4130b487 276
bd9f3519
VZ
277 wxSizerFlags flagsRight;
278 flagsRight.Align(wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL).DoubleBorder();
279
280 sliderSizer->Add(redSlider, flagsRight);
281 sliderSizer->Add(greenSlider,flagsRight);
282 sliderSizer->Add(blueSlider,flagsRight);
283
284 topSizer->Add(sliderSizer, wxSizerFlags().Centre().DoubleBorder());
6bb44116 285#else
bd9f3519 286 topSizer->Add(1, sliderHeight, wxSizerFlags(1).Centre().TripleBorder());
6bb44116 287#endif // wxUSE_SLIDER
6c34d0ed 288
bd9f3519
VZ
289 // then the custom button
290 topSizer->Add(new wxButton(this, wxID_ADD_CUSTOM,
291 _("Add to custom colours") ),
292 wxSizerFlags().DoubleHorzBorder());
c35414db 293
bd9f3519
VZ
294 // then the standard buttons
295 wxSizer *buttonsizer = CreateSeparatedButtonSizer(wxOK | wxCANCEL);
296 if ( buttonsizer )
297 {
298 topSizer->Add(buttonsizer, wxSizerFlags().Expand().DoubleBorder());
299 }
c801d85f 300
ca65c044 301 SetAutoLayout( true );
f79a46f8 302 SetSizer( topSizer );
6c34d0ed 303
f79a46f8
WS
304 topSizer->SetSizeHints( this );
305 topSizer->Fit( this );
c801d85f 306
4130b487 307 Centre( wxBOTH );
c801d85f 308
4130b487 309 wxEndBusyCursor();
c801d85f
KB
310}
311
312void wxGenericColourDialog::InitializeColours(void)
313{
a4ba2eec 314 size_t i;
ea8a9699 315
61138de0 316 for (i = 0; i < WXSIZEOF(wxColourDialogNames); i++)
ea8a9699 317 {
564a150b
VZ
318 wxColour col = wxTheColourDatabase->Find(wxColourDialogNames[i]);
319 if (col.Ok())
320 standardColours[i].Set(col.Red(), col.Green(), col.Blue());
ea8a9699
VZ
321 else
322 standardColours[i].Set(0, 0, 0);
323 }
c801d85f 324
564a150b 325 for (i = 0; i < WXSIZEOF(customColours); i++)
ea8a9699 326 {
a2b99ff5
VS
327 wxColour c = colourData.GetCustomColour(i);
328 if (c.Ok())
329 customColours[i] = colourData.GetCustomColour(i);
330 else
331 customColours[i] = wxColour(255, 255, 255);
ea8a9699 332 }
c801d85f 333
ea8a9699
VZ
334 wxColour curr = colourData.GetColour();
335 if ( curr.Ok() )
336 {
ca65c044 337 bool initColourFound = false;
ea8a9699 338
61138de0 339 for (i = 0; i < WXSIZEOF(wxColourDialogNames); i++)
ea8a9699
VZ
340 {
341 if ( standardColours[i] == curr && !initColourFound )
342 {
343 whichKind = 1;
344 colourSelection = i;
ca65c044 345 initColourFound = true;
ea8a9699
VZ
346 break;
347 }
348 }
349 if ( !initColourFound )
350 {
564a150b 351 for ( i = 0; i < WXSIZEOF(customColours); i++ )
ea8a9699
VZ
352 {
353 if ( customColours[i] == curr )
354 {
355 whichKind = 2;
356 colourSelection = i;
ea8a9699
VZ
357 break;
358 }
359 }
360 }
984b0d8b 361 colourData.m_dataColour.Set( curr.Red(), curr.Green(), curr.Blue() );
ea8a9699
VZ
362 }
363 else
364 {
365 whichKind = 1;
366 colourSelection = 0;
984b0d8b 367 colourData.m_dataColour.Set( 0, 0, 0 );
ea8a9699 368 }
c801d85f
KB
369}
370
371void wxGenericColourDialog::PaintBasicColours(wxDC& dc)
372{
f4da9a94
WS
373 int i;
374 for (i = 0; i < 6; i++)
c801d85f 375 {
f4da9a94
WS
376 int j;
377 for (j = 0; j < 8; j++)
378 {
379 int ptr = i*8 + j;
c35414db 380
f4da9a94
WS
381 int x = (j*(smallRectangleSize.x+gridSpacing) + standardColoursRect.x);
382 int y = (i*(smallRectangleSize.y+gridSpacing) + standardColoursRect.y);
c801d85f 383
f4da9a94
WS
384 dc.SetPen(*wxBLACK_PEN);
385 wxBrush brush(standardColours[ptr], wxSOLID);
386 dc.SetBrush(brush);
c801d85f 387
f4da9a94
WS
388 dc.DrawRectangle( x, y, smallRectangleSize.x, smallRectangleSize.y);
389 }
c801d85f 390 }
c801d85f
KB
391}
392
393void wxGenericColourDialog::PaintCustomColours(wxDC& dc)
394{
c801d85f
KB
395 int i;
396 for (i = 0; i < 2; i++)
397 {
398 int j;
399 for (j = 0; j < 8; j++)
400 {
401 int ptr = i*8 + j;
c35414db 402
c801d85f
KB
403 int x = (j*(smallRectangleSize.x+gridSpacing)) + customColoursRect.x;
404 int y = (i*(smallRectangleSize.y+gridSpacing)) + customColoursRect.y;
405
406 dc.SetPen(*wxBLACK_PEN);
407
408 wxBrush brush(customColours[ptr], wxSOLID);
409 dc.SetBrush(brush);
410
411 dc.DrawRectangle( x, y, smallRectangleSize.x, smallRectangleSize.y);
412 }
413 }
c801d85f
KB
414}
415
416void wxGenericColourDialog::PaintHighlight(wxDC& dc, bool draw)
417{
ea8a9699
VZ
418 if ( colourSelection < 0 )
419 return;
420
c801d85f
KB
421 // Number of pixels bigger than the standard rectangle size
422 // for drawing a highlight
423 int deltaX = 2;
424 int deltaY = 2;
425
426 if (whichKind == 1)
427 {
428 // Standard colours
429 int y = (int)(colourSelection / 8);
430 int x = (int)(colourSelection - (y*8));
431
432 x = (x*(smallRectangleSize.x + gridSpacing) + standardColoursRect.x) - deltaX;
433 y = (y*(smallRectangleSize.y + gridSpacing) + standardColoursRect.y) - deltaY;
434
435 if (draw)
436 dc.SetPen(*wxBLACK_PEN);
437 else
438 dc.SetPen(*wxLIGHT_GREY_PEN);
439
440 dc.SetBrush(*wxTRANSPARENT_BRUSH);
441 dc.DrawRectangle( x, y, (smallRectangleSize.x + (2*deltaX)), (smallRectangleSize.y + (2*deltaY)));
442 }
443 else
444 {
445 // User-defined colours
446 int y = (int)(colourSelection / 8);
447 int x = (int)(colourSelection - (y*8));
448
449 x = (x*(smallRectangleSize.x + gridSpacing) + customColoursRect.x) - deltaX;
450 y = (y*(smallRectangleSize.y + gridSpacing) + customColoursRect.y) - deltaY;
451
452 if (draw)
453 dc.SetPen(*wxBLACK_PEN);
454 else
455 dc.SetPen(*wxLIGHT_GREY_PEN);
c35414db 456
c801d85f
KB
457 dc.SetBrush(*wxTRANSPARENT_BRUSH);
458 dc.DrawRectangle( x, y, (smallRectangleSize.x + (2*deltaX)), (smallRectangleSize.y + (2*deltaY)));
459 }
c801d85f
KB
460}
461
462void wxGenericColourDialog::PaintCustomColour(wxDC& dc)
463{
f4da9a94 464 dc.SetPen(*wxBLACK_PEN);
c801d85f 465
f4da9a94
WS
466 wxBrush *brush = new wxBrush(colourData.m_dataColour, wxSOLID);
467 dc.SetBrush(*brush);
c801d85f 468
f4da9a94
WS
469 dc.DrawRectangle( singleCustomColourRect.x, singleCustomColourRect.y,
470 customRectangleSize.x, customRectangleSize.y);
c801d85f 471
f4da9a94
WS
472 dc.SetBrush(wxNullBrush);
473 delete brush;
c801d85f
KB
474}
475
476void wxGenericColourDialog::OnBasicColourClick(int which)
477{
ca65c044 478 wxClientDC dc(this);
c801d85f 479
ca65c044
WS
480 PaintHighlight(dc, false);
481 whichKind = 1;
482 colourSelection = which;
2997ca30 483
6bb44116 484#if wxUSE_SLIDER
ca65c044 485 redSlider->SetValue( standardColours[colourSelection].Red() );
ea8a9699
VZ
486 greenSlider->SetValue( standardColours[colourSelection].Green() );
487 blueSlider->SetValue( standardColours[colourSelection].Blue() );
6bb44116 488#endif // wxUSE_SLIDER
2997ca30
WS
489
490 colourData.m_dataColour.Set(standardColours[colourSelection].Red(),
491 standardColours[colourSelection].Green(),
984b0d8b 492 standardColours[colourSelection].Blue());
c801d85f 493
ca65c044
WS
494 PaintCustomColour(dc);
495 PaintHighlight(dc, true);
c801d85f
KB
496}
497
498void wxGenericColourDialog::OnCustomColourClick(int which)
499{
ca65c044
WS
500 wxClientDC dc(this);
501 PaintHighlight(dc, false);
502 whichKind = 2;
503 colourSelection = which;
2997ca30 504
6bb44116 505#if wxUSE_SLIDER
ca65c044 506 redSlider->SetValue( customColours[colourSelection].Red() );
ea8a9699
VZ
507 greenSlider->SetValue( customColours[colourSelection].Green() );
508 blueSlider->SetValue( customColours[colourSelection].Blue() );
6bb44116 509#endif // wxUSE_SLIDER
2997ca30
WS
510
511 colourData.m_dataColour.Set(customColours[colourSelection].Red(),
512 customColours[colourSelection].Green(),
984b0d8b 513 customColours[colourSelection].Blue());
2997ca30 514
ca65c044
WS
515 PaintCustomColour(dc);
516 PaintHighlight(dc, true);
c801d85f
KB
517}
518
519/*
520void wxGenericColourDialog::OnOk(void)
521{
ca65c044 522 Show(false);
c801d85f
KB
523}
524
525void wxGenericColourDialog::OnCancel(void)
526{
ca65c044
WS
527 colourDialogCancelled = true;
528 Show(false);
c801d85f
KB
529}
530*/
531
532void wxGenericColourDialog::OnAddCustom(wxCommandEvent& WXUNUSED(event))
533{
534 wxClientDC dc(this);
535 if (whichKind != 2)
536 {
ca65c044 537 PaintHighlight(dc, false);
c801d85f
KB
538 whichKind = 2;
539 colourSelection = 0;
ca65c044 540 PaintHighlight(dc, true);
c801d85f
KB
541 }
542
2997ca30
WS
543 customColours[colourSelection].Set(colourData.m_dataColour.Red(),
544 colourData.m_dataColour.Green(),
984b0d8b 545 colourData.m_dataColour.Blue());
2997ca30 546
c801d85f 547 colourData.SetCustomColour(colourSelection, customColours[colourSelection]);
c35414db 548
c801d85f
KB
549 PaintCustomColours(dc);
550}
551
6bb44116
WS
552#if wxUSE_SLIDER
553
c801d85f
KB
554void wxGenericColourDialog::OnRedSlider(wxCommandEvent& WXUNUSED(event))
555{
556 if (!redSlider)
557 return;
c35414db 558
c801d85f 559 wxClientDC dc(this);
984b0d8b 560 colourData.m_dataColour.Set((unsigned char)redSlider->GetValue(), colourData.m_dataColour.Green(), colourData.m_dataColour.Blue());
c801d85f
KB
561 PaintCustomColour(dc);
562}
563
564void wxGenericColourDialog::OnGreenSlider(wxCommandEvent& WXUNUSED(event))
565{
566 if (!greenSlider)
567 return;
568
569 wxClientDC dc(this);
984b0d8b 570 colourData.m_dataColour.Set(colourData.m_dataColour.Red(), (unsigned char)greenSlider->GetValue(), colourData.m_dataColour.Blue());
c801d85f
KB
571 PaintCustomColour(dc);
572}
573
574void wxGenericColourDialog::OnBlueSlider(wxCommandEvent& WXUNUSED(event))
575{
576 if (!blueSlider)
577 return;
578
579 wxClientDC dc(this);
984b0d8b 580 colourData.m_dataColour.Set(colourData.m_dataColour.Red(), colourData.m_dataColour.Green(), (unsigned char)blueSlider->GetValue());
c801d85f
KB
581 PaintCustomColour(dc);
582}
583
6bb44116
WS
584#endif // wxUSE_SLIDER
585
a2b99ff5 586#endif // wxUSE_COLOURDLG && !defined(__WXGTK20__)