]>
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
) { Ref(col
); }
53 wxColour
& operator = ( const wxColour
& col
) { Ref(col
); return *this; }
57 bool Ok() const { return m_refData
!= NULL
; }
59 bool operator == ( const wxColour
& col
) const;
60 bool operator != ( const wxColour
& col
) const { return !(*this == col
); }
62 void Set( unsigned char red
, unsigned char green
, unsigned char blue
);
63 void Set( unsigned long colRGB
)
65 // We don't need to know sizeof(long) here because we assume that the three
66 // least significant bytes contain the R, G and B values
67 Set((unsigned char)colRGB
,
68 (unsigned char)(colRGB
>> 8),
69 (unsigned char)(colRGB
>> 16));
72 unsigned char Red() const;
73 unsigned char Green() const;
74 unsigned char Blue() const;
77 // Implementation part
78 void CalcPixel( GdkColormap
*cmap
);
80 GdkColor
*GetColor() const;
84 virtual wxObjectRefData
*CreateRefData() const;
85 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
88 void InitFromName(const wxString
& colourName
);
91 DECLARE_DYNAMIC_CLASS(wxColour
)
94 #endif // __GTKCOLOURH__