]> git.saurik.com Git - wxWidgets.git/commitdiff
Missing wxPen (dashes) members.
authorWłodzimierz Skiba <abx@abx.art.pl>
Sun, 26 Feb 2006 10:45:38 +0000 (10:45 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Sun, 26 Feb 2006 10:45:38 +0000 (10:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37740 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/os2/pen.h
src/os2/pen.cpp

index 2185169aff02b87dadd34a09ec8958f050a6a558..0d122947997c8b068f71eff6e2f74f5d90bbb4b2 100644 (file)
@@ -84,6 +84,10 @@ public:
     inline int       GetCap(void) const { return (M_PENDATA ? M_PENDATA->m_nCap : 0); };
     inline int       GetPS(void) const { return (M_PENDATA ? M_PENDATA->m_hPen : 0); };
 
+    int GetDashes(wxDash **ptr) const;
+    int GetDashCount() const;
+    wxDash* GetDash() const;
+
     inline wxBitmap* GetStipple(void) const { return (M_PENDATA ? (& M_PENDATA->m_vStipple) : (wxBitmap*) NULL); };
 
     //
index dc85074fd91425835a425ef0e189e592ae160b53..dc99fed02d81d3a5cca8670b0070cec60c6fd19a 100644 (file)
@@ -404,6 +404,25 @@ void wxPen::SetDashes( int WXUNUSED(nNbDashes),
     //
 } // end of wxPen::SetDashes
 
+int wxPen::GetDashes( wxDash **ptr ) const
+{
+     // TODO
+     *ptr = (wxDash*) NULL;
+     return 0;
+}
+
+int wxPen::GetDashCount() const
+{
+     // TODO
+    return 0;
+}
+
+wxDash* wxPen::GetDash() const
+{
+     // TODO
+    return NULL;
+}
+
 void wxPen::SetJoin(
   int                               nJoin
 )