-// ----------------------------------------------------------------------------
-// wxColourData
-// ----------------------------------------------------------------------------
-
-wxColourData::wxColourData()
-{
- m_chooseFull = false;
- m_dataColour.Set(0,0,0);
- // m_custColours are wxNullColours initially
-}
-
-wxColourData::wxColourData(const wxColourData& data)
- : wxObject()
-{
- (*this) = data;
-}
-
-wxColourData::~wxColourData()
-{
-}
-
-void wxColourData::SetCustomColour(int i, const wxColour& colour)
-{
- wxCHECK_RET( (i >= 0 && i < WXSIZEOF(m_custColours)), _T("custom colour index out of range") );
-
- m_custColours[i] = colour;
-}
-
-wxColour wxColourData::GetCustomColour(int i)
-{
- wxCHECK_MSG( (i >= 0 && i < WXSIZEOF(m_custColours)), wxColour(0,0,0),
- _T("custom colour index out of range") );
-
- return m_custColours[i];
-}
-
-void wxColourData::operator=(const wxColourData& data)
-{
- for (int i = 0; i < WXSIZEOF(m_custColours); i++)
- m_custColours[i] = data.m_custColours[i];
-
- m_dataColour = data.m_dataColour;
- m_chooseFull = data.m_chooseFull;
-}
-
-// ----------------------------------------------------------------------------
-// [de]serialization
-// ----------------------------------------------------------------------------
-
-// separator used between different fields
-static const char wxCOL_DATA_SEP = ',';
-
-wxString wxColourData::ToString() const
-{
- wxString str(m_chooseFull ? '1' : '0');
-
- for ( int i = 0; i < WXSIZEOF(m_custColours); i++ )
- {
- str += wxCOL_DATA_SEP;
-
- const wxColour& clr = m_custColours[i];
- if ( clr.IsOk() )
- str += clr.GetAsString(wxC2S_HTML_SYNTAX);
- }
-
- return str;
-}
-
-bool wxColourData::FromString(const wxString& str)
-{
- wxString token;
- int n = -1; // index of the field, -1 corresponds to m_chooseFull
- for ( wxString::const_iterator i = str.begin(); i != str.end(); ++i )
- {
- if ( *i == wxCOL_DATA_SEP )
- {
- if ( n == -1 )
- {
- if ( token == '0' )
- m_chooseFull = false;
- else if ( token == '1' )
- m_chooseFull = true;
- else // only '0' and '1' are used in ToString()
- return false;
- }
- else // custom colour
- {
- if ( n == WXSIZEOF(m_custColours) )
- return false; // too many custom colours
-
- // empty strings are used by ToString() for colours not used
- if ( token.empty() )
- m_custColours[n] = wxNullColour;
- else if ( !m_custColours[n].Set(token) )
- return false; // invalid colour string
- }
-
- token.clear();
- n++;
- }
- else // continuation of the current field
- {
- token += *i;
- }
- }
-
- return true;
-}
-
-// ----------------------------------------------------------------------------
-// Font data
-// ----------------------------------------------------------------------------
-
-wxFontData::wxFontData()
-{
- // Intialize colour to black.
- m_fontColour = wxNullColour;
-
- m_showHelp = false;
- m_allowSymbols = true;
- m_enableEffects = true;
- m_minSize = 0;
- m_maxSize = 0;
-
- m_encoding = wxFONTENCODING_SYSTEM;
-}
-
-wxFontData::~wxFontData()
-{
-}
-
-#if wxUSE_FONTDLG
-
-wxFontDialogBase::~wxFontDialogBase()
-{
-}
-
-#endif // wxUSE_FONTDLG
-
-#if wxUSE_PRINTING_ARCHITECTURE