]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/gdiobj.h
There is no task bar icon for Cocoa (yet).
[wxWidgets.git] / include / wx / motif / gdiobj.h
index c25575dffcf412ad02632c509196ff04b202b6fa..f55c95cec77bfb859d7cb191f9077589aa6b2f75 100644 (file)
 class WXDLLEXPORT wxGDIRefData: public wxObjectRefData {
 public:
     inline wxGDIRefData()
-       {
-       }
+    {
+    }
 };
 
 #define M_GDIDATA ((wxGDIRefData *)m_refData)
 
 class WXDLLEXPORT wxGDIObject: public wxObject
 {
-DECLARE_DYNAMIC_CLASS(wxGDIObject)
- public:
-  inline wxGDIObject() { m_visible = FALSE; };
-  inline ~wxGDIObject() {};
-
-  inline bool IsNull() const { return (m_refData == 0); }
-
-  virtual bool GetVisible() { return m_visible; }
-  virtual void SetVisible(bool v) { m_visible = v; }
-
+    DECLARE_DYNAMIC_CLASS(wxGDIObject)
+public:
+    inline wxGDIObject() { m_visible = FALSE; };
+    inline ~wxGDIObject() {};
+    
+    inline bool IsNull() const { return (m_refData == 0); }
+    
+    virtual bool GetVisible() { return m_visible; }
+    virtual void SetVisible(bool v) { m_visible = v; }
+    
 protected:
-  bool m_visible; // Can a pointer to this object be safely taken?
-                 // - only if created within FindOrCreate...
+    bool m_visible; // Can a pointer to this object be safely taken?
+    // - only if created within FindOrCreate...
 };
 
 #endif
-    // _WX_GDIOBJ_H_
+// _WX_GDIOBJ_H_