]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/colourdata.h
Ensure that the overall table border doesn't get overdrawn by cell borders with a...
[wxWidgets.git] / interface / wx / colourdata.h
index 45b5aab17593ac3f3e3ae38349fb033f679e5540..0b1dea908f8246e986b9cebfa80b8c00a2155374 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        colourdata.h
 // Purpose:     interface of wxColourData
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 class wxColourData : public wxObject
 {
 public:
+    /// number of custom colours we store
+    enum
+    {
+        NUM_CUSTOM = 16
+    };
+
     /**
         Constructor. Initializes the custom colours to @c wxNullColour, the
         @e data colour setting to black, and the @e choose full setting to
@@ -33,10 +38,9 @@ public:
 
     /**
         Under Windows, determines whether the Windows colour dialog will
-        display the full dialog with custom colour selection controls. Under
-        PalmOS, determines whether colour dialog will display full rgb colour
-        picker or only available palette indexer. Has no meaning under other
-        platforms.
+        display the full dialog with custom colour selection controls.
+
+        Has no meaning under other platforms.
 
         The default value is @true.
     */
@@ -87,7 +91,7 @@ public:
     void SetCustomColour(int i, const wxColour& colour);
 
     /**
-        Converts the colours saved in this class in a string form, separing
+        Converts the colours saved in this class in a string form, separating
         the various colours with a comma.
     */
     wxString ToString() const;