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