]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/pen.h
Small optical changes for MSW
[wxWidgets.git] / include / wx / gtk / pen.h
index fb37103370bc8f0dc10ed88e9aca21b7cc38f531..cbe0cd1ae2ec4fd4f9f36e8190f09e20a83a4bd7 100644 (file)
@@ -27,6 +27,8 @@
 
 class wxPen;
 
+typedef    char wxDash;
+
 //-----------------------------------------------------------------------------
 // wxPen
 //-----------------------------------------------------------------------------
@@ -51,11 +53,17 @@ class wxPen: public wxGDIObject
     void SetJoin( int joinStyle );
     void SetStyle( int style );
     void SetWidth( int width );
+    void SetDashes( int number_of_dashes, const wxDash *dash );
+    
     wxColour &GetColour() const;
     int GetCap() const;
     int GetJoin() const;
     int GetStyle() const;
     int GetWidth() const;
+    int GetDashes(wxDash **ptr) const;
+    int GetDashCount() const;
+    wxDash* GetDash() const;
+    
     bool Ok() const;
 
     void Unshare();