#include "camtypes.h"#include "cdrfiltr.h"#include "progress.h"#include "cdrcol.h"#include "rifffile.h"#include "cdrform.h"#include "nodepath.h"#include "page.h"#include "nodershp.h"#include "ndoptmz.h"#include "collist.h"#include "layer.h"#include "sglayer.h"#include "sprdmsg.h"#include "nodebmp.h"#include "nodetxts.h"#include "zoomops.h"#include "nodemold.h"#include "moldshap.h"#include "ndmldpth.h"#include "nodemldr.h"#include "fontman.h"#include "cmxifltr.h"Go to the source code of this file.
Defines | |
| #define | new CAM_DEBUG_NEW | 
| #define | PROGRESSUPDATE_MASK 0x7f | 
| #define | CDRFILTER_DI_RETURNERROR {Success = FALSE; return ClearUp();} | 
| Does the import of a CDR (.cdr or .cdt).   | |
| #define | RECTANGLE_CORNER_MAGIC (1.0 - 0.552) | 
| generates a rectangle object   | |
| #define | RECT_MOVE(px, py) {co.x = (px); co.y = (py); if(!pPath->InkPath.InsertMoveTo(co)) goto NoMemory;} | 
| #define | RECT_LINE(px, py) {co.x = (px); co.y = (py); if(!pPath->InkPath.InsertLineTo(co)) goto NoMemory;} | 
| #define | RECT_CURVE(cx1, cy1, cx2, cy2, px, py) | 
| #define | RECT_CLOSE {if(!pPath->InkPath.CloseSubPath()) goto NoMemory;} | 
| #define | BITM_MOVE(px, py) {co.x = (px); co.y = (py); if(!pPath->InkPath.InsertMoveTo(co)) return FALSE;} | 
| generates a bitmap object   | |
| #define | BITM_LINE(px, py) {co.x = (px); co.y = (py); if(!pPath->InkPath.InsertLineTo(co)) return FALSE;} | 
| #define | BITM_CLOSE {if(!pPath->InkPath.CloseSubPath()) return FALSE;} | 
| #define | PERS_MOVE(co) {if(!pShape->InkPath.InsertMoveTo(co)) return FALSE;} | 
| transforms an object given a CDR perspective   | |
| #define | PERS_LINE(co) {if(!pShape->InkPath.InsertLineTo(co)) return FALSE;} | 
| #define | PERS_CLOSE {if(!pShape->InkPath.CloseSubPath()) return FALSE;} | 
| #define | ENVV3_NCOORDS 25 | 
| converts a envelope from position N   | |
Functions | |
| DECLARE_SOURCE ("$Revision: 1282 $") | |
      
  | 
  
| 
 
 Definition at line 2741 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 
 Definition at line 2740 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 generates a bitmap object 
 
 
 
 
 
 Definition at line 2739 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 Does the import of a CDR (.cdr or .cdt). 
 
 
 
 
 
 Definition at line 365 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 converts a envelope from position N 
 
 
 
 
 
 Definition at line 4537 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 
 Definition at line 173 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 
 Definition at line 3410 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 
 Definition at line 3409 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 transforms an object given a CDR perspective 
 
 
 
 
 
 Definition at line 3408 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 
 Definition at line 175 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 
 Definition at line 2599 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 Value: {cn1.x = (cx1); cn1.y = (cy1); cn2.x = (cx2); cn2.y = (cy2); \
            co.x = (px); co.y = (py); if(!pPath->InkPath.InsertCurveTo(cn1, cn2, co)) goto NoMemory;}
Definition at line 2597 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 
 Definition at line 2596 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 
 Definition at line 2595 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 generates a rectangle object 
 
 
 
 
 
 Definition at line 2593 of file cdrfiltr.cpp.  | 
  
      
  | 
  
| 
 
  | 
  
 1.4.4