]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/metafile.cpp
old mingw32 compilation fix
[wxWidgets.git] / src / mac / metafile.cpp
index ddbfb8402ffb5140bb2ffe808dda731aef14ba47..2380c96edcedf45d568bad2eee267162c7933990 100644 (file)
 #pragma implementation "metafile.h"
 #endif
 
-#include "wx/object.h"
-#include "wx/string.h"
-#include "wx/dc.h"
-#include "wx/stubs/metafile.h"
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+#pragma hdrstop
+#endif
+
+#ifndef WX_PRECOMP
+#include "wx/setup.h"
+#endif
+
+#if wxUSE_METAFILE
+
+#ifndef WX_PRECOMP
+#include "wx/utils.h"
+#include "wx/app.h"
+#endif
+
+#include "wx/metafile.h"
 #include "wx/clipbrd.h"
 
+#include "wx/mac/private.h"
+
+#include <stdio.h>
+#include <string.h>
+
 extern bool wxClipboardIsOpen;
 
 #if !USE_SHARED_LIBRARY
-IMPLEMENT_DYNAMIC_CLASS(wxMetaFile, wxObject)
-IMPLEMENT_ABSTRACT_CLASS(wxMetaFileDC, wxDC)
+IMPLEMENT_DYNAMIC_CLASS(wxMetafile, wxObject)
+IMPLEMENT_ABSTRACT_CLASS(wxMetafileDC, wxDC)
 #endif
 
+/*
+ * Metafiles
+ * Currently, the only purpose for making a metafile is to put
+ * it on the clipboard.
+ */
+
+wxMetafileRefData::wxMetafileRefData(void)
+{
+    m_metafile = 0;
+}
+
+wxMetafileRefData::~wxMetafileRefData(void)
+{
+    if (m_metafile)
+    {
+               KillPicture( (PicHandle) m_metafile ) ;
+        m_metafile = 0;
+    }
+}
+
 wxMetaFile::wxMetaFile(const wxString& file)
 {
-    // TODO
+    m_refData = new wxMetafileRefData;
+
+
+    M_METAFILEDATA->m_metafile = 0;
+    wxASSERT_MSG( file.IsEmpty() , "no file based metafile support yet") ;
+/*
+    if (!file.IsNull() && (file.Cmp("") == 0))
+        M_METAFILEDATA->m_metafile = (WXHANDLE) GetMetaFile(file);
+*/
 }
 
 wxMetaFile::~wxMetaFile()
 {
-    // TODO
 }
 
 bool wxMetaFile::SetClipboard(int width, int height)
 {
-    bool alreadyOpen=wxClipboardOpen();
+#if wxUSE_DRAG_AND_DROP
+//TODO finishi this port , we need the data obj first
+    if (!m_refData)
+        return FALSE;
+
+    bool alreadyOpen=wxTheClipboard->IsOpened() ;
     if (!alreadyOpen)
     {
-        wxOpenClipboard();
-        if (!wxEmptyClipboard()) return FALSE;
+        wxTheClipboard->Open();
+        wxTheClipboard->Clear();
     }
-    bool success = wxSetClipboardData(wxDF_METAFILE,this, width,height);
-    if (!alreadyOpen) wxCloseClipboard();
-    return (bool) success;
+    wxDataObject *data =
+      new wxMetafileDataObject( *this) ;
+    bool success = wxTheClipboard->SetData(data);
+    if (!alreadyOpen) 
+      wxTheClipboard->Close();
+           return (bool) success;
+#endif
+    return TRUE ;
+}
+
+void wxMetafile::SetHMETAFILE(WXHMETAFILE mf)
+{
+    if (!m_refData)
+        m_refData = new wxMetafileRefData;
+
+    M_METAFILEDATA->m_metafile = mf;
 }
 
 bool wxMetaFile::Play(wxDC *dc)
 {
-    // TODO
+  if (!m_refData)
     return FALSE;
+
+       if (!dc->Ok() )
+               return FALSE;
+               
+       {
+               wxMacPortSetter helper( dc ) ;
+               PicHandle pict = (PicHandle) GetHMETAFILE() ;
+               DrawPicture( pict , &(**pict).picFrame ) ;
+       }
+    return TRUE;
 }
 
 /*
@@ -64,176 +139,76 @@ bool wxMetaFile::Play(wxDC *dc)
 // *DO* give origin/extent arguments to wxMakeMetaFilePlaceable.
 wxMetaFileDC::wxMetaFileDC(const wxString& file)
 {
-    // TODO
+  m_metaFile = NULL;
+  m_minX = 10000;
+  m_minY = 10000;
+  m_maxX = -10000;
+  m_maxY = -10000;
+
+  wxASSERT_MSG( file.IsEmpty() , "no file based metafile support yet") ;
+
+  m_metaFile = new wxMetaFile("") ;
+  Rect r={0,0,1000,1000} ;
+       
+  m_metaFile->SetHMETAFILE( OpenPicture( &r ) ) ;
+  ::GetPort( (GrafPtr*) &m_macPort ) ; 
+  m_ok = TRUE ;
+
+  SetMapMode(wxMM_TEXT); 
 }
 
 // New constructor that takes origin and extent. If you use this, don't
 // give origin/extent arguments to wxMakeMetaFilePlaceable.
+
 wxMetaFileDC::wxMetaFileDC(const wxString& file, int xext, int yext, int xorg, int yorg)
 {
-    // TODO
-}
+  m_minX = 10000;
+  m_minY = 10000;
+  m_maxX = -10000;
+  m_maxY = -10000;
 
-wxMetaFileDC::~wxMetaFileDC()
-{
+  wxASSERT_MSG( file.IsEmpty() , "no file based metafile support yet") ;
+
+       m_metaFile = new wxMetaFile("") ;
+       Rect r={yorg,xorg,yorg+yext,xorg+xext} ;
+       
+       m_metaFile->SetHMETAFILE( OpenPicture( &r ) ) ;
+       ::GetPort( (GrafPtr*) &m_macPort ) ;    
+  m_ok = TRUE ;
+
+  SetMapMode(wxMM_TEXT); 
 }
 
-void wxMetaFileDC::GetTextExtent(const wxString& string, float *x, float *y,
-                                 float *descent, float *externalLeading, wxFont *theFont, bool use16bit)
+wxMetaFileDC::~wxMetaFileDC()
 {
-    // TODO
 }
 
 wxMetaFile *wxMetaFileDC::Close()
 {
-    // TODO
-    return NULL;
+       ClosePicture() ;
+       return m_metaFile;
 }
 
-void wxMetaFileDC::SetMapMode(int mode)
+#if wxUSE_DATAOBJ
+size_t wxMetafileDataObject::GetDataSize() const
 {
-    // TODO
+  return GetHandleSize( (Handle) (*((wxMetafile*)&m_metafile)).GetHMETAFILE() ) ;
 }
 
-#if 0
-
-#ifdef __WIN32__
-struct RECT32
-{
-  short left;
-  short top;
-  short right;
-  short bottom;
-};
-
-struct mfPLACEABLEHEADER {
-       DWORD   key;
-       short   hmf;
-       RECT32  bbox;
-       WORD    inch;
-       DWORD   reserved;
-       WORD    checksum;
-};
-#else
-struct mfPLACEABLEHEADER {
-       DWORD   key;
-       HANDLE  hmf;
-       RECT    bbox;
-       WORD    inch;
-       DWORD   reserved;
-       WORD    checksum;
-};
-#endif
-
-/*
- * Pass filename of existing non-placeable metafile, and bounding box.
- * Adds a placeable metafile header, sets the mapping mode to anisotropic,
- * and sets the window origin and extent to mimic the wxMM_TEXT mapping mode.
- *
- */
-bool wxMakeMetaFilePlaceable(const wxString& filename, float scale)
+bool wxMetafileDataObject::GetDataHere(void *buf) const
 {
-  return wxMakeMetaFilePlaceable(filename, 0, 0, 0, 0, scale, FALSE);
+  memcpy( buf , (*(PicHandle)(*((wxMetafile*)&m_metafile)).GetHMETAFILE()) ,
+    GetHandleSize( (Handle) (*((wxMetafile*)&m_metafile)).GetHMETAFILE() ) ) ;
+  return true ;
 }
 
-bool wxMakeMetaFilePlaceable(const wxString& filename, int x1, int y1, int x2, int y2, float scale, bool useOriginAndExtent)
+bool wxMetafileDataObject::SetData(size_t len, const void *buf)
 {
-  // I'm not sure if this is the correct way of suggesting a scale
-  // to the client application, but it's the only way I can find.
-  int unitsPerInch = (int)(576/scale);
-  
-  mfPLACEABLEHEADER header;
-  header.key = 0x9AC6CDD7L;
-  header.hmf = 0;
-  header.bbox.left = (int)(x1);
-  header.bbox.top = (int)(y1);
-  header.bbox.right = (int)(x2);
-  header.bbox.bottom = (int)(y2);
-  header.inch = unitsPerInch;
-  header.reserved = 0;
-
-  // Calculate checksum  
-  WORD *p;
-  mfPLACEABLEHEADER *pMFHead = &header;
-  for (p =(WORD *)pMFHead,pMFHead -> checksum = 0;
-       p < (WORD *)&pMFHead ->checksum; ++p)
-       pMFHead ->checksum ^= *p;
-
-  FILE *fd = fopen((char *)(const char *)filename, "rb");
-  if (!fd) return FALSE;
-  
-  char tempFileBuf[256];
-  wxGetTempFileName("mf", tempFileBuf);
-  FILE *fHandle = fopen(tempFileBuf, "wb");
-  if (!fHandle)
-    return FALSE;
-  fwrite((void *)&header, sizeof(unsigned char), sizeof(mfPLACEABLEHEADER), fHandle);
-
-  // Calculate origin and extent
-  int originX = x1;
-  int originY = y1;
-  int extentX = x2 - x1;
-  int extentY = (y2 - y1);
-
-  // Read metafile header and write
-  METAHEADER metaHeader;
-  fread((void *)&metaHeader, sizeof(unsigned char), sizeof(metaHeader), fd);
-  
-  if (useOriginAndExtent)
-    metaHeader.mtSize += 15;
-  else
-    metaHeader.mtSize += 5;
-    
-  fwrite((void *)&metaHeader, sizeof(unsigned char), sizeof(metaHeader), fHandle);
-
-  // Write SetMapMode, SetWindowOrigin and SetWindowExt records
-  char modeBuffer[8];
-  char originBuffer[10];
-  char extentBuffer[10];
-  METARECORD *modeRecord = (METARECORD *)&modeBuffer;
-
-  METARECORD *originRecord = (METARECORD *)&originBuffer;
-  METARECORD *extentRecord = (METARECORD *)&extentBuffer;
-
-  modeRecord->rdSize = 4;
-  modeRecord->rdFunction = META_SETMAPMODE;
-  modeRecord->rdParm[0] = wxMM_ANISOTROPIC;
-
-  originRecord->rdSize = 5;
-  originRecord->rdFunction = META_SETWINDOWORG;
-  originRecord->rdParm[0] = originY;
-  originRecord->rdParm[1] = originX;
-
-  extentRecord->rdSize = 5;
-  extentRecord->rdFunction = META_SETWINDOWEXT;
-  extentRecord->rdParm[0] = extentY;
-  extentRecord->rdParm[1] = extentX;
-
-  fwrite((void *)modeBuffer, sizeof(char), 8, fHandle);
-  
-  if (useOriginAndExtent)
-  {
-    fwrite((void *)originBuffer, sizeof(char), 10, fHandle);
-    fwrite((void *)extentBuffer, sizeof(char), 10, fHandle);
-  }
-
-  int ch = -2;
-  while (ch != EOF)
-  {
-    ch = getc(fd);
-    if (ch != EOF)
-    {
-      putc(ch, fHandle);
-    }
-  }
-  fclose(fHandle);
-  fclose(fd);
-  wxRemoveFile(filename);
-  wxCopyFile(tempFileBuf, filename);
-  wxRemoveFile(tempFileBuf);
-  return TRUE;
+  Handle handle = (Handle) m_metafile.GetHMETAFILE() ;
+  SetHandleSize( handle , len ) ;
+  memcpy( *handle , buf , len ) ;
+  return true ;
 }
-
 #endif
 
+#endif