]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/x11/pen.h
wxLaunchDefaultBrowser() now supports wxBROWSER_NEW_WINDOW flag (and it actually...
[wxWidgets.git] / include / wx / x11 / pen.h
index 46d954158f6a0ff9faef5b870f148231a2821e97..5206da4978b9a2d2299c5f35cbea0f836c943b2f 100644 (file)
 #ifndef _WX_PEN_H_
 #define _WX_PEN_H_
 
-#ifdef __GNUG__
-#pragma interface "pen.h"
-#endif
-
+#include "wx/gdicmn.h"
 #include "wx/gdiobj.h"
-#include "wx/colour.h"
-#include "wx/bitmap.h"
 
 //-----------------------------------------------------------------------------
 // classes
 //-----------------------------------------------------------------------------
 
-class wxPen;
+class WXDLLIMPEXP_CORE wxPen;
+class WXDLLIMPEXP_CORE wxColour;
+class WXDLLIMPEXP_CORE wxBitmap;
 
 typedef char wxX11Dash;
 
@@ -32,12 +29,13 @@ typedef char wxX11Dash;
 // wxPen
 //-----------------------------------------------------------------------------
 
-class wxPen: public wxGDIObject
+class WXDLLIMPEXP_CORE wxPen: public wxGDIObject
 {
 public:
     wxPen() { }
     
-    wxPen( const wxColour &colour, int width, int style );
+    wxPen( const wxColour &colour, int width = 1, int style = wxSOLID );
+    wxPen( const wxBitmap &stipple, int width );
     ~wxPen();
     
     wxPen( const wxPen& pen ) { Ref(pen); }
@@ -55,7 +53,8 @@ public:
     void SetStyle( int style );
     void SetWidth( int width );
     void SetDashes( int number_of_dashes, const wxDash *dash );
-    
+    void SetStipple( wxBitmap *stipple );
+
     wxColour &GetColour() const;
     int GetCap() const;
     int GetJoin() const;
@@ -64,6 +63,7 @@ public:
     int GetDashes(wxDash **ptr) const;
     int GetDashCount() const;
     wxDash* GetDash() const;
+    wxBitmap* GetStipple() const;
 
 private:    
     // ref counting code