// ========================================================================
// wxPen
// ========================================================================
-class WXDLLEXPORT wxPen: public wxGDIObject
+class WXDLLIMPEXP_CORE wxPen: public wxGDIObject
{
public:
wxPen();
void SetJoin(wxPenJoin join);
void SetCap(wxPenCap cap);
- wxColour& GetColour() const;
+ wxColour GetColour() const;
int GetWidth() const;
wxPenStyle GetStyle() const;
wxPenJoin GetJoin() const;
int GetDashes(wxDash **ptr) const;
wxBitmap *GetStipple() const;
+#if FUTURE_WXWIN_COMPATIBILITY_3_0
+ wxDEPRECATED_FUTURE( void SetStyle(int style) )
+ { SetStyle((wxPenStyle)style); }
+#endif
+
+ // Cocoa-specific
WX_NSColor GetNSColor();
int GetCocoaLineDash(const CGFloat **pattern);