]>
Commit | Line | Data |
---|---|---|
e9576ca5 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: colordlg.cpp | |
3 | // Purpose: wxColourDialog class. NOTE: you can use the generic class | |
4 | // if you wish, instead of implementing this. | |
a31a5f85 | 5 | // Author: Stefan Csomor |
e9576ca5 | 6 | // Modified by: |
a31a5f85 | 7 | // Created: 1998-01-01 |
e9576ca5 | 8 | // RCS-ID: $Id$ |
a31a5f85 | 9 | // Copyright: (c) Stefan Csomor |
65571936 | 10 | // Licence: wxWindows licence |
e9576ca5 SC |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
a8e9860d SC |
13 | #include "wx/wxprec.h" |
14 | ||
519cb848 | 15 | #include "wx/mac/colordlg.h" |
356c775f RN |
16 | #include "wx/fontdlg.h" |
17 | ||
18 | ||
19 | #if !USE_NATIVE_FONT_DIALOG_FOR_MACOSX | |
e9576ca5 | 20 | |
e9576ca5 | 21 | IMPLEMENT_DYNAMIC_CLASS(wxColourDialog, wxDialog) |
e9576ca5 | 22 | |
76a5e5d2 | 23 | #include "wx/mac/private.h" |
66a09d47 SC |
24 | #ifndef __DARWIN__ |
25 | #include <ColorPicker.h> | |
26 | #endif | |
76a5e5d2 | 27 | |
e9576ca5 SC |
28 | /* |
29 | * wxColourDialog | |
30 | */ | |
31 | ||
32 | wxColourDialog::wxColourDialog() | |
33 | { | |
34 | m_dialogParent = NULL; | |
35 | } | |
36 | ||
37 | wxColourDialog::wxColourDialog(wxWindow *parent, wxColourData *data) | |
38 | { | |
39 | Create(parent, data); | |
40 | } | |
41 | ||
42 | bool wxColourDialog::Create(wxWindow *parent, wxColourData *data) | |
43 | { | |
44 | m_dialogParent = parent; | |
902725ee | 45 | |
e9576ca5 SC |
46 | if (data) |
47 | m_colourData = *data; | |
902725ee | 48 | return true; |
e9576ca5 SC |
49 | } |
50 | ||
51 | int wxColourDialog::ShowModal() | |
52 | { | |
e40298d5 | 53 | Point where ; |
ae500232 | 54 | RGBColor currentColor = *((RGBColor*)m_colourData.m_dataColour.GetPixel()) , newColor ; |
902725ee | 55 | |
e40298d5 | 56 | where.h = where.v = -1; |
519cb848 | 57 | |
e40298d5 JS |
58 | if (GetColor( where, "\pSelect a new palette color.", ¤tColor, &newColor )) |
59 | { | |
ae500232 | 60 | m_colourData.m_dataColour.Set( (WXCOLORREF*) &newColor ) ; |
e40298d5 JS |
61 | return wxID_OK; |
62 | } | |
e9576ca5 SC |
63 | |
64 | return wxID_CANCEL; | |
65 | } | |
66 | ||
356c775f | 67 | #endif |