]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mgl/pen.h
Upport scrolling changes and mouse wheel changes.
[wxWidgets.git] / include / wx / mgl / pen.h
index a4f59afc5b02df1429261497b6e88d7c516a79cb..a18d97efb2a3f075b6a34465439e60f69a3be22f 100644 (file)
@@ -33,14 +33,12 @@ public:
     wxPen() {}
     wxPen(const wxColour &colour, int width = 1, int style = wxSOLID);
     wxPen(const wxBitmap& stipple, int width);
-    wxPen(const wxPen& pen);
-    ~wxPen() {}
-    wxPen& operator = (const wxPen& pen);
+    virtual ~wxPen() {}
     bool operator == (const wxPen& pen) const;
     bool operator != (const wxPen& pen) const;
 
     void SetColour(const wxColour &colour);
-    void SetColour(const unsigned char red, const unsigned char green, const unsigned char blue);
+    void SetColour(unsigned char red, unsigned char green, unsigned char blue);
     void SetCap(int capStyle);
     void SetJoin(int joinStyle);
     void SetStyle(int style);
@@ -58,7 +56,8 @@ public:
     wxDash* GetDash() const;
     wxBitmap *GetStipple() const;
 
-    bool Ok() const;
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const;
 
     // implementation:
     void* GetPixPattern() const;