]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/colour.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKCOLOURH__
12 #define __GTKCOLOURH__
19 #include "wx/object.h"
20 #include "wx/string.h"
21 #include "wx/gdiobj.h"
22 #include "wx/palette.h"
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
35 //-----------------------------------------------------------------------------
37 //-----------------------------------------------------------------------------
39 class wxColour
: public wxGDIObject
45 wxColour( unsigned char red
, unsigned char green
, unsigned char blue
);
46 wxColour( unsigned long colRGB
) { Set(colRGB
); }
48 // Implicit conversion from the colour name
49 wxColour( const wxString
&colourName
) { InitFromName(colourName
); }
50 wxColour( const char *colourName
) { InitFromName(colourName
); }
52 wxColour( const wxColour
& col
)
55 wxColour
& operator = ( const wxColour
& col
) { Ref(col
); return *this; }
59 bool Ok() const { return m_refData
!= NULL
; }
61 bool operator == ( const wxColour
& col
) const;
62 bool operator != ( const wxColour
& col
) const { return !(*this == col
); }
64 void Set( unsigned char red
, unsigned char green
, unsigned char blue
);
65 void Set( unsigned long colRGB
)
67 // We don't need to know sizeof(long) here because we assume that the three
68 // least significant bytes contain the R, G and B values
69 Set((unsigned char)colRGB
,
70 (unsigned char)(colRGB
>> 8),
71 (unsigned char)(colRGB
>> 16));
74 unsigned char Red() const;
75 unsigned char Green() const;
76 unsigned char Blue() const;
79 // Implementation part
80 void CalcPixel( GdkColormap
*cmap
);
82 GdkColor
*GetColor() const;
86 virtual wxObjectRefData
*CreateRefData() const;
87 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
90 void InitFromName(const wxString
& colourName
);
93 DECLARE_DYNAMIC_CLASS(wxColour
)
96 #endif // __GTKCOLOURH__