]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/classic/gdiobj.cpp
removed outdated Classic files to avoid confusing people
[wxWidgets.git] / src / mac / classic / gdiobj.cpp
diff --git a/src/mac/classic/gdiobj.cpp b/src/mac/classic/gdiobj.cpp
deleted file mode 100644 (file)
index 4f45052..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        src/mac/classic/gdiobj.cpp
-// Purpose:     wxGDIObject class
-// Author:      Stefan Csomor
-// Modified by:
-// Created:     1998-01-01
-// RCS-ID:      $Id$
-// Copyright:   (c) Stefan Csomor
-// Licence:     wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
-
-#include "wx/wxprec.h"
-
-#include "wx/gdiobj.h"
-
-#ifndef WX_PRECOMP
-    #include "wx/gdicmn.h"
-#endif
-
-#include "wx/mac/private.h"
-
-class wxStockGDIMac: public wxStockGDI
-{
-public:
-    wxStockGDIMac();
-
-    virtual const wxFont* GetFont(Item item);
-
-private:
-    typedef wxStockGDI super;
-};
-
-static wxStockGDIMac gs_wxStockGDIMac_instance;
-
-wxStockGDIMac::wxStockGDIMac()
-{
-    // Override default instance
-    ms_instance = this;
-}
-
-const wxFont* wxStockGDIMac::GetFont(Item item)
-{
-    wxFont* font = wx_static_cast(wxFont*, ms_stockObject[item]);
-    if (font == NULL)
-    {
-        Str255 fontName;
-        SInt16 fontSize;
-        Style fontStyle;
-        switch (item)
-        {
-        case FONT_NORMAL:
-            GetThemeFont(kThemeSystemFont, GetApplicationScript(), fontName, &fontSize, &fontStyle);
-            font = new wxFont(fontSize, wxMODERN, wxNORMAL, wxNORMAL, false, wxMacMakeStringFromPascal(fontName));
-            break;
-        case FONT_SMALL:
-            GetThemeFont(kThemeSmallSystemFont, GetApplicationScript(), fontName, &fontSize, &fontStyle);
-            font = new wxFont(fontSize, wxSWISS, wxNORMAL, wxNORMAL, false, wxMacMakeStringFromPascal(fontName));
-            break;
-        default:
-            font = wx_const_cast(wxFont*, super::GetFont(item));
-            break;
-        }
-        ms_stockObject[item] = font;
-    }
-    return font;
-}