git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37740
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
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); };
//
//
} // 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
)