]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/pen.h
Prealpha, prebeta of new wxTreeCtrl for GTK. It is possible to AddRoot,
[wxWidgets.git] / include / wx / gtk / pen.h
index e3529c6699a81a7ff6bb648c0270b82c99b0f9f4..0649fe2473107641e54cfbcf811dc1f5a5e4a58b 100644 (file)
@@ -40,7 +40,6 @@ class wxPen: public wxGDIObject
   
     wxPen(void);
     wxPen( const wxColour &colour, int width, int style );
-    wxPen( const wxString &colourName, int width, int style );
     wxPen( const wxPen& pen );
     wxPen( const wxPen* pen );
     ~wxPen(void);
@@ -49,8 +48,7 @@ class wxPen: public wxGDIObject
     bool operator != ( const wxPen& pen );
     
     void SetColour( const wxColour &colour );
-    void SetColour( const wxString &colourName );
-    void SetColour( const int red, const int green, const int blue );
+    void SetColour( int red, int green, int blue );
     void SetCap( int capStyle );
     void SetJoin( int joinStyle );
     void SetStyle( int style );
@@ -62,6 +60,8 @@ class wxPen: public wxGDIObject
     int GetWidth(void) const;
     bool Ok(void) const;
     
+    void Unshare(void);
+    
     // no data :-)
 };