]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed obsolete file
authorJulian Smart <julian@anthemion.co.uk>
Sat, 12 Jul 2003 13:39:32 +0000 (13:39 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 12 Jul 2003 13:39:32 +0000 (13:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21918 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/wince/gdiobj.h [deleted file]

diff --git a/include/wx/msw/wince/gdiobj.h b/include/wx/msw/wince/gdiobj.h
deleted file mode 100644 (file)
index d3bd57f..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        wx/msw/gdiobj.h
-// Purpose:     wxGDIObject class: base class for other GDI classes
-// Author:      Marco Cavallini 
-// Modified by:
-// Created:     11/11/2002
-// RCS-ID:      
-// Copyright:   (c) KOAN SAS ( www.koansoftware.com )
-// Licence:    wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
-
-#ifndef _WX_GDIOBJ_H_
-#define _WX_GDIOBJ_H_
-
-
-#include "wx/object.h"  // base class
-
-// ----------------------------------------------------------------------------
-// wxGDIRefData is the base class for wxXXXData structures which contain the
-// real data for the GDI object and are shared among all wxWin objects sharing
-// the same native GDI object
-// ----------------------------------------------------------------------------
-
-class WXDLLEXPORT wxGDIRefData : public wxObjectRefData
-{
-    // this class is intentionally left blank
-};
-
-// ----------------------------------------------------------------------------
-// wxGDIObject
-// ----------------------------------------------------------------------------
-
-class WXDLLEXPORT wxGDIObject : public wxObject
-{
-public:
-    wxGDIObject() { m_visible = FALSE; };
-
-    // Creates the resource
-    virtual bool RealizeResource() { return FALSE; };
-
-    // Frees the resource
-    virtual bool FreeResource(bool WXUNUSED(force) = FALSE) { return FALSE; }
-
-    virtual bool IsFree() const { return FALSE; }
-
-    bool IsNull() const { return (m_refData == 0); }
-
-    // Returns handle.
-//    virtual WXHANDLE GetResourceHandle() { return 0; }
-    WXHANDLE GetResourceHandle() { return 0; }
-
-    virtual bool GetVisible() { return m_visible; }
-    virtual void SetVisible(bool v) { m_visible = v; }
-
-protected:
-    bool m_visible; // TRUE only if we should delete this object ourselves
-
-private:
-    DECLARE_DYNAMIC_CLASS(wxGDIObject)
-};
-
-#endif
-    // _WX_GDIOBJ_H_