]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/x11/pen.h
Some code renaming to avoid confusion. Test editable column in sample.
[wxWidgets.git] / include / wx / x11 / pen.h
index d5c042a14d00ae4e5f05a97950eda7287c57479f..ccb6310eb552db6eb74bde9a1d7fb53034cb306d 100644 (file)
@@ -19,9 +19,9 @@
 // classes
 //-----------------------------------------------------------------------------
 
-class WXDLLIMPEXP_CORE wxPen;
-class WXDLLIMPEXP_CORE wxColour;
-class WXDLLIMPEXP_CORE wxBitmap;
+class WXDLLIMPEXP_FWD_CORE wxPen;
+class WXDLLIMPEXP_FWD_CORE wxColour;
+class WXDLLIMPEXP_FWD_CORE wxBitmap;
 
 typedef char wxX11Dash;
 
@@ -36,12 +36,10 @@ public:
 
     wxPen( const wxColour &colour, int width = 1, int style = wxSOLID );
     wxPen( const wxBitmap &stipple, int width );
-    ~wxPen();
+    virtual ~wxPen();
 
-    wxPen( const wxPen& pen ) { Ref(pen); }
-    wxPen& operator = ( const wxPen& pen ) { Ref(pen); return *this; }
-
-    bool Ok() const { return m_refData != NULL; }
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const { return m_refData != NULL; }
 
     bool operator == ( const wxPen& pen ) const;
     bool operator != (const wxPen& pen) const { return !(*this == pen); }
@@ -65,7 +63,7 @@ public:
     wxDash* GetDash() const;
     wxBitmap* GetStipple() const;
 
-private:
+protected:
     // ref counting code
     virtual wxObjectRefData *CreateRefData() const;
     virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;