/////////////////////////////////////////////////////////////////////////////
// Name: colour.cpp
// Purpose: wxColour class
-// Author: AUTHOR
+// Author: David Webster
// Modified by:
-// Created: ??/??/98
+// Created: 10/13/99
// RCS-ID: $Id$
-// Copyright: (c) AUTHOR
-// Licence: wxWindows licence
+// Copyright: (c) David Webster
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-#pragma implementation "colour.h"
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/colour.h"
#endif
#include "wx/gdicmn.h"
-#include "wx/colour.h"
+#define INCL_GPI
+#define INCL_PM
+#include<os2.h>
-#if !USE_SHARED_LIBRARY
IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
-#endif
// Colour
+void wxColour::Init()
+{
+ m_bIsInit = false;
+ m_vPixel = 0;
+ m_cRed = m_cBlue = m_cGreen = 0;
+} // end of wxColour::Init
+
wxColour::wxColour ()
{
- m_isInit = FALSE;
- m_red = m_blue = m_green = 0;
-/* TODO
- m_pixel = 0;
-*/
-}
+ Init();
+} // end of wxColour::wxColour
-wxColour::wxColour (unsigned char r, unsigned char g, unsigned char b)
+wxColour::wxColour (
+ unsigned char cRed
+, unsigned char cGreen
+, unsigned char cBlue
+)
{
- m_red = r;
- m_green = g;
- m_blue = b;
- m_isInit = TRUE;
-/* TODO
- m_pixel = PALETTERGB (m_red, m_green, m_blue);
-*/
-}
+ Set(cRed, cGreen, cBlue);
+} // end of wxColour::wxColour
-wxColour::wxColour (const wxColour& col)
+wxColour::wxColour(
+ const wxColour& rCol
+)
{
- m_red = col.m_red;
- m_green = col.m_green;
- m_blue = col.m_blue;
- m_isInit = col.m_isInit;
-/* TODO
- m_pixel = col.m_pixel;
-*/
-}
+ *this = rCol;
+} // end of wxColour::wxColour
-wxColour& wxColour::operator =(const wxColour& col)
+wxColour& wxColour::operator =(
+ const wxColour& rCol
+)
{
- m_red = col.m_red;
- m_green = col.m_green;
- m_blue = col.m_blue;
- m_isInit = col.m_isInit;
-/* TODO
- m_pixel = col.m_pixel;
-*/
- return *this;
-}
+ m_cRed = rCol.m_cRed;
+ m_cGreen = rCol.m_cGreen;
+ m_cBlue = rCol.m_cBlue;
+ m_bIsInit = rCol.m_bIsInit;
+ m_vPixel = rCol.m_vPixel;
+ return *this;
+} // end of wxColour& wxColour::operator =
-void wxColour::InitFromName(const wxString& col)
+void wxColour::InitFromName(
+ const wxString& sCol
+)
{
- wxColour *the_colour = wxTheColourDatabase->FindColour (col);
- if (the_colour)
+ if ( wxTheColourDatabase )
{
- m_red = the_colour->Red ();
- m_green = the_colour->Green ();
- m_blue = the_colour->Blue ();
- m_isInit = TRUE;
+ wxColour col = wxTheColourDatabase->Find(sCol);
+ if ( col.Ok() )
+ {
+ *this = col;
+ return;
+ }
}
- else
- {
- m_red = 0;
- m_green = 0;
- m_blue = 0;
- m_isInit = FALSE;
- }
-/* TODO
- m_pixel = PALETTERGB (m_red, m_green, m_blue);
-*/
-}
-wxColour::~wxColour ()
+ // leave invalid
+ Init();
+
+} // end of wxColour::InitFromName
+
+wxColour::~wxColour()
{
-}
+} // end of wxColour::~wxColour
-void wxColour::Set (unsigned char r, unsigned char g, unsigned char b)
+void wxColour::Set(
+ unsigned char cRed
+, unsigned char cGreen
+, unsigned char cBlue
+)
{
- m_red = r;
- m_green = g;
- m_blue = b;
- m_isInit = TRUE;
-/* TODO
- m_pixel = PALETTERGB (m_red, m_green, m_blue);
-*/
-}
+ m_cRed = cRed;
+ m_cGreen = cGreen;
+ m_cBlue = cBlue;
+ m_bIsInit = true;
+ m_vPixel = OS2RGB (m_cRed, m_cGreen, m_cBlue);
+} // end of wxColour::Set