]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/paletteg.h
Add WXK_NONE symbolic constant indicating absence of a key.
[wxWidgets.git] / include / wx / generic / paletteg.h
index a8ecde718531fbfd922181baa202a48d07ad83d9..4d3ccc308dcef607cb3e5b7896101bafb8d4541f 100644 (file)
@@ -33,8 +33,6 @@ public:
     wxPalette();
     wxPalette( int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue );
     virtual ~wxPalette();
-    virtual bool Ok() const { return IsOk(); }
-    virtual bool IsOk() const;
 
     bool Create( int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
     int GetPixel( unsigned char red, unsigned char green, unsigned char blue ) const;
@@ -42,6 +40,10 @@ public:
 
     virtual int GetColoursCount() const;
 
+protected:
+    virtual wxGDIRefData *CreateGDIRefData() const;
+    virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
+
 private:
     DECLARE_DYNAMIC_CLASS(wxPalette)
 };