+ virtual void DrawSpline( wxList *points );
+ virtual void DrawSpline( long x1, long y1, long x2, long y2, long x3, long y3 )
+ { wxDC::DrawSpline(x1, y1, x2, y2, x3, y3); }
+ virtual void DrawSpline( int n, wxPoint points[] )
+ { wxDC::DrawSpline(n, points); }
+
+ // Motif-specific
+ void SetDCClipping (); // Helper function for setting clipping
+
+ inline WXGC GetGC() const { return m_gc; }
+ inline WXGC GetBackingGC() const { return m_gcBacking; }
+ inline WXDisplay* GetDisplay() const { return m_display; }
+ inline bool GetAutoSetting() const { return m_autoSetting; }
+ inline void SetAutoSetting(bool flag) { m_autoSetting = flag; }