nativeps.h

Go to the documentation of this file.
00001 // $Id: nativeps.h 751 2006-03-31 15:43:49Z alex $
00002 /* @@tag:xara-cn@@ DO NOT MODIFY THIS LINE
00003 ================================XARAHEADERSTART===========================
00004  
00005                Xara LX, a vector drawing and manipulation program.
00006                     Copyright (C) 1993-2006 Xara Group Ltd.
00007        Copyright on certain contributions may be held in joint with their
00008               respective authors. See AUTHORS file for details.
00009 
00010 LICENSE TO USE AND MODIFY SOFTWARE
00011 ----------------------------------
00012 
00013 This file is part of Xara LX.
00014 
00015 Xara LX is free software; you can redistribute it and/or modify it
00016 under the terms of the GNU General Public License version 2 as published
00017 by the Free Software Foundation.
00018 
00019 Xara LX and its component source files are distributed in the hope
00020 that it will be useful, but WITHOUT ANY WARRANTY; without even the
00021 implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
00022 See the GNU General Public License for more details.
00023 
00024 You should have received a copy of the GNU General Public License along
00025 with Xara LX (see the file GPL in the root directory of the
00026 distribution); if not, write to the Free Software Foundation, Inc., 51
00027 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
00028 
00029 
00030 ADDITIONAL RIGHTS
00031 -----------------
00032 
00033 Conditional upon your continuing compliance with the GNU General Public
00034 License described above, Xara Group Ltd grants to you certain additional
00035 rights. 
00036 
00037 The additional rights are to use, modify, and distribute the software
00038 together with the wxWidgets library, the wxXtra library, and the "CDraw"
00039 library and any other such library that any version of Xara LX relased
00040 by Xara Group Ltd requires in order to compile and execute, including
00041 the static linking of that library to XaraLX. In the case of the
00042 "CDraw" library, you may satisfy obligation under the GNU General Public
00043 License to provide source code by providing a binary copy of the library
00044 concerned and a copy of the license accompanying it.
00045 
00046 Nothing in this section restricts any of the rights you have under
00047 the GNU General Public License.
00048 
00049 
00050 SCOPE OF LICENSE
00051 ----------------
00052 
00053 This license applies to this program (XaraLX) and its constituent source
00054 files only, and does not necessarily apply to other Xara products which may
00055 in part share the same code base, and are subject to their own licensing
00056 terms.
00057 
00058 This license does not apply to files in the wxXtra directory, which
00059 are built into a separate library, and are subject to the wxWindows
00060 license contained within that directory in the file "WXXTRA-LICENSE".
00061 
00062 This license does not apply to the binary libraries (if any) within
00063 the "libs" directory, which are subject to a separate license contained
00064 within that directory in the file "LIBS-LICENSE".
00065 
00066 
00067 ARRANGEMENTS FOR CONTRIBUTION OF MODIFICATIONS
00068 ----------------------------------------------
00069 
00070 Subject to the terms of the GNU Public License (see above), you are
00071 free to do whatever you like with your modifications. However, you may
00072 (at your option) wish contribute them to Xara's source tree. You can
00073 find details of how to do this at:
00074   http://www.xaraxtreme.org/developers/
00075 
00076 Prior to contributing your modifications, you will need to complete our
00077 contributor agreement. This can be found at:
00078   http://www.xaraxtreme.org/developers/contribute/
00079 
00080 Please note that Xara will not accept modifications which modify any of
00081 the text between the start and end of this header (marked
00082 XARAHEADERSTART and XARAHEADEREND).
00083 
00084 
00085 MARKS
00086 -----
00087 
00088 Xara, Xara LX, Xara X, Xara X/Xtreme, Xara Xtreme, the Xtreme and Xara
00089 designs are registered or unregistered trademarks, design-marks, and/or
00090 service marks of Xara Group Ltd. All rights in these marks are reserved.
00091 
00092 
00093       Xara Group Ltd, Gaddesden Place, Hemel Hempstead, HP2 6EX, UK.
00094                         http://www.xara.com/
00095 
00096 =================================XARAHEADEREND============================
00097  */
00098 // The Camelot Native File format for Studio (version 1)
00099 
00100 #ifndef INC_NATIVEEPS
00101 #define INC_NATIVEEPS
00102 
00103 #include "cameleps.h"
00104 class KernelBitmapRef;
00105 
00106 
00107 
00108 // All the commands used by Camelot Native EPS files.
00109 enum
00110 {
00111     // Bitmap objects/bitmap fills
00112     EPSC_cbmp = EPSC_cameps_last,
00113 };
00114 
00115 
00116 
00117 
00118 /********************************************************************************************
00119 
00120 >   class CamelotNativeEPSFilter : public CamelotEPSFilter
00121 
00122     Author:     Rik_Heywood (Xara Group Ltd) <camelotdev@xara.com>
00123     Created:    15/12/94
00124     Purpose:    This filter will be almost the same as Camelot EPS, only it will hold a
00125                 little more information and store data slightly more efficiently. Mainly,
00126                 it will save out bitmaps as binary. It won't really be valid EPS as it
00127                 will not always be ascii. The Native file format is being done this way as
00128                 it will take little or no effort to do this.
00129 
00130 ********************************************************************************************/
00131 
00132 class CamelotNativeEPSFilter : public CamelotEPSFilter
00133 {
00134     // Give my name in memory dumps
00135     CC_DECLARE_DYNAMIC(CamelotNativeEPSFilter);
00136 
00137 public:
00138     // Construction and initialisation
00139     CamelotNativeEPSFilter();
00140     ~CamelotNativeEPSFilter();
00141     BOOL Init();
00142 
00143     // Exporting
00144     BOOL PrepareToExport(CCLexFile* pFile, Spread *pSpread);
00145     virtual EPSExportDC* CreateExportDC();
00146     virtual BOOL ExportBitmap(KernelBitmap&);
00147 
00148     // Importing
00149     BOOL PrepareToImport();
00150     virtual INT32 ImportBinary(ADDR pData, INT32 Length);
00151     virtual BOOL ProcessFilterComment();
00152     virtual void CleanUpAfterImport(BOOL Successful);
00153     BitmapFilterSupport GetBitmapSupportLevel();
00154     virtual void BitmapPoolAttach(KernelBitmap* pBitmap);
00155 
00156     // Flag to show if the pool is being saved or not   
00157     BOOL IsSavingBitmapPool;
00158 
00159     double SmartGetBuildNumber();
00160     double GetBuildNumber() { return BuildVersionNumber; }
00161 
00162 protected:
00163     virtual void LookUpToken();
00164     virtual BOOL ProcessToken();
00165     INT32  EPSHeaderIsOk(ADDR pFileHeader, UINT32 HeaderSize);
00166 
00167     // Function to get export options, if any
00168     virtual BOOL GetExportOptions( );
00169 
00170     // Function to load in bitmaps
00171     virtual BOOL ReadBitmap();
00172 
00173     // Stuff to handle the bitmap pool
00174     INT32 BitmapCount;
00175     INT32 PendingBitmapNum;
00176     KernelBitmapRef* BitmapPoolRefs;
00177 
00178     // The old value of the Import With Layers Flag
00179     BOOL OldImportWithLayers;
00180     BOOL OldOpenWithLayers;
00181 
00182     static CommandMap NativeCommands[];
00183 
00184     // Items to handle the file compression
00185     INT32 CompressionType;  // type of compression in use (0 at present)
00186     BOOL CompressionOn;     // on/off flag
00187 
00188     virtual BOOL SetFileCompressionState(BOOL NewState); 
00189     virtual BOOL GetFileCompressionState(); 
00190 
00191     double FileVersionNumber;
00192     double BuildVersionNumber;
00193 
00194     INT32 OldMinLineWidth;      // because we need somewhere to store it as we set it to zero
00195 
00196 public:
00197     // Control over whether we compress native files or not. 
00198     static BOOL SetNativeCompression(BOOL NewState);
00199     static BOOL GetNativeCompression();
00200     static BOOL CompressNative; // compression preference flag
00201 };
00202 
00203 
00204 
00205 
00206 
00207 /********************************************************************************************
00208 
00209 >   class NativeRenderRegion : public CamelotEPSRenderRegion
00210 
00211     Author:     Rik_Heywood (Xara Group Ltd) <camelotdev@xara.com>
00212     Created:    15/12/94
00213     Purpose:    The render region class for the native file save.
00214 
00215 ********************************************************************************************/
00216 
00217 class NativeRenderRegion : public CamelotEPSRenderRegion
00218 {
00219     CC_DECLARE_DYNAMIC(NativeRenderRegion)
00220     
00221 public:
00222     NativeRenderRegion(DocRect ClipRect, Matrix ConvertMatrix, FIXED16 ViewScale);
00223 
00224     virtual void ConditionalSuicide ( void );   // Graeme (24-0-00).
00225 
00226     void GetRenderRegionCaps(RRCaps* pCaps);
00227 
00228 protected:
00229     virtual BOOL WriteProlog(KernelDC*);
00230     virtual BOOL WriteSetup(KernelDC*);
00231 
00232     // File version saving. In anything but Native format does nothing
00233     virtual BOOL WriteFileVersion(KernelDC*);
00234 
00235     // Compressed saving. In anything but Native format does nothing
00236     virtual BOOL WriteCompressionState(KernelDC*);
00237     virtual BOOL WriteEndCompressionState(KernelDC*);
00238 
00239     // Flag to say that we started up the compressor ok
00240     BOOL CompressionInitedOk;
00241 
00242 public:
00243     void GetValidPathAttributes();
00244     void GetValidTransparencyAttributes();
00245     virtual void GetValidTextAttributes();
00246     virtual BOOL RenderChar(WCHAR ch, Matrix* pMatrix);
00247 
00248 // virtual Functions to help with rendering
00249     virtual BOOL WantsGrids();
00250 
00251     // (ChrisG - 30/01/01) Added so that we don't use the CamelotEPS (Xara X EPS) 
00252     //  version (which copes with RGB colours, not just CMYK ones).
00253     virtual void OutputFillColour ();
00254     virtual void OutputStrokeColour ();
00255     virtual BOOL OutputGradFillColours(DocColour* StartCol, DocColour* EndCol, ColourContext* pContext);
00256 };
00257 
00258 
00259 
00260 
00261 /********************************************************************************************
00262 
00263 >   class NativeExportDC : public EPSExportDC
00264 
00265     Author:     Rik_Heywood (Xara Group Ltd) <camelotdev@xara.com>
00266     Created:    19/12/94
00267     Purpose:    This class makes use of the base class for almost everything. Its real
00268                 purpose is just to overide the Binary and Bitmap areas of the DC. In
00269                 EPSExportDC these are converted to Hex strings and here they are output
00270                 directly as binary...
00271     SeeAlso:    EPSExportDC
00272 
00273 ********************************************************************************************/
00274 
00275 class NativeExportDC : public EPSExportDC
00276 {
00277 public:
00278     NativeExportDC(Filter*);
00279 
00280     // This class want to overide the bitmap functions from the base class
00281     virtual INT32 OutputRawBinary(BYTE *Data, UINT32 Length, UINT32 Alignment = 1);
00282 };
00283 
00284 
00285 #endif  // INC_NATIVEEPS
00286 
00287 

Generated on Sat Nov 10 03:45:46 2007 for Camelot by  doxygen 1.4.4