]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/dcmemory.cpp
Remove Palm OS port.
[wxWidgets.git] / src / palmos / dcmemory.cpp
diff --git a/src/palmos/dcmemory.cpp b/src/palmos/dcmemory.cpp
deleted file mode 100644 (file)
index 13bf45b..0000000
+++ /dev/null
@@ -1,93 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        src/palmos/dcmemory.cpp
-// Purpose:     wxMemoryDC class
-// Author:      William Osborne - minimal working wxPalmOS port
-// Modified by:
-// Created:     10/13/04
-// RCS-ID:      $Id$
-// Copyright:   (c) William Osborne
-// Licence:     wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
-
-// ============================================================================
-// declarations
-// ============================================================================
-
-// ----------------------------------------------------------------------------
-// headers
-// ----------------------------------------------------------------------------
-
-// For compilers that support precompilation, includes "wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-    #pragma hdrstop
-#endif
-
-#include "wx/dcmemory.h"
-#include "wx/palmos/dcmemory.h"
-
-#ifndef WX_PRECOMP
-    #include "wx/utils.h"
-    #include "wx/log.h"
-#endif
-
-// ----------------------------------------------------------------------------
-// wxMemoryDCImpl
-// ----------------------------------------------------------------------------
-
-IMPLEMENT_ABSTRACT_CLASS(wxMemoryDCImpl, wxPalmDCImpl)
-
-wxMemoryDCImpl::wxMemoryDCImpl( wxMemoryDC *owner )
-        : wxPalmDCImpl( owner )
-{
-    CreateCompatible(NULL);
-    Init();
-}
-
-wxMemoryDCImpl::wxMemoryDCImpl( wxMemoryDC *owner, wxBitmap& bitmap )
-        : wxPalmDCImpl( owner )
-{
-    CreateCompatible(NULL);
-    Init();
-    DoSelect(bitmap);
-}
-
-wxMemoryDCImpl::wxMemoryDCImpl( wxMemoryDC *owner, wxDC *dc )
-        : wxPalmDCImpl( owner )
-{
-    wxCHECK_RET( dc, wxT("NULL dc in wxMemoryDC ctor") );
-
-    CreateCompatible(dc);
-
-    Init();
-}
-
-void wxMemoryDCImpl::Init()
-{
-}
-
-bool wxMemoryDCImpl::CreateCompatible(wxDC *dc)
-{
-    wxDCImpl *impl = dc ? dc->GetImpl() : NULL ;
-    wxPalmDCImpl *msw_impl = wxDynamicCast( impl, wxPalmDCImpl );
-    if ( dc && !msw_impl)
-    {
-        m_ok = false;
-        return false;
-    }
-
-    return false;
-}
-
-void wxMemoryDCImpl::DoSelect( const wxBitmap& bitmap )
-{
-}
-
-void wxMemoryDCImpl::DoGetSize(int *width, int *height) const
-{
-}
-
-wxBitmap wxMemoryDCImpl::DoGetAsBitmap(const wxRect* subrect) const
-{
-}