]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/pen.h
added wxWeakRef<T> (slightly modified patch 1860953)
[wxWidgets.git] / include / wx / msw / pen.h
index aa50b49cf6c8a4bbffdf69daf798c1b4a60b68a3..448c58e69e040d34d0a4fd19123e0946749bd9e1 100644 (file)
 class WXDLLEXPORT wxPen : public wxGDIObject
 {
 public:
-    wxPen();
+    wxPen() { }
     wxPen(const wxColour& col, int width = 1, int style = wxSOLID);
     wxPen(const wxBitmap& stipple, int width);
-    virtual ~wxPen();
+    virtual ~wxPen() { }
 
     bool operator==(const wxPen& pen) const;
     bool operator!=(const wxPen& pen) const { return !(*this == pen); }
 
-    virtual bool Ok() const { return IsOk(); }
-    virtual bool IsOk() const { return (m_refData != NULL); }
-
     // Override in order to recreate the pen
     void SetColour(const wxColour& col);
     void SetColour(unsigned char r, unsigned char g, unsigned char b);
@@ -54,15 +51,18 @@ public:
     int GetDashCount() const;
     wxBitmap* GetStipple() const;
 
-    // Internal
-    bool RealizeResource();
-    bool FreeResource(bool force = false);
-    WXHANDLE GetResourceHandle() const;
-    bool IsFree() const;
+    // internal: wxGDIObject methods
+    virtual bool RealizeResource();
+    virtual bool FreeResource(bool force = false);
+    virtual WXHANDLE GetResourceHandle() const;
+    virtual bool IsFree() const;
 
 protected:
-    virtual wxObjectRefData* CreateRefData() const;
-    virtual wxObjectRefData* CloneRefData(const wxObjectRefData* data) const;
+    virtual wxGDIRefData* CreateGDIRefData() const;
+    virtual wxGDIRefData* CloneGDIRefData(const wxGDIRefData* data) const;
+
+    // same as FreeResource() + RealizeResource()
+    bool Recreate();
 
     DECLARE_DYNAMIC_CLASS(wxPen)
 };