00001 // $Id: sgbase.h 1282 2006-06-09 09:46: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 // SGTEMPLATE.h - the TEMPLATESGallery (TEMPLATE SuperGallery) class 00099 00100 00101 // You must do the following things: 00102 // 1 Copy this file into your own header file, and screw that up, not this! ;-) 00103 // 2 Strip back the topmost line to say '// #Header#' (where # is a dollar sign) 00104 // 3 Change the INC_SGBASE lines below to relevant names 00105 // 4 Do a GLOBAL, CASE SENSITIVE replace of 'TEMPLATE' with your gallery name (eg 'Bitmap') 00106 // 5 Do a CASE SENSITIVE replace of 'DATATYPE' with your gallery type (eg 'KernelBitmap') 00107 // (This means a DisplayItem will hold a (KernelBitmap *) pointer, etc - search for 00108 // DATATYPE before replacing to see what I mean) 00109 // 6 Do a global CASE SENSITIVE replace of 'AUTHOR' with your name 00110 // 7 Delete these instructional comment lines 00111 // Remember to add this new file to all.lst and kernel.mak 00112 00113 #ifndef INC_SGBASE 00114 #define INC_SGBASE 00115 00116 00117 //#include "sgallery.h" - in camtypes.h [AUTOMATICALLY REMOVED] 00118 //#include "sgtree.h" - in camtypes.h [AUTOMATICALLY REMOVED] 00119 00120 00121 class TEMPLATE; // TO DO: You may or not need this 00122 class DATATYPE; 00123 00124 00125 /*********************************************************************************************** 00126 00127 > class SGDisplayDATATYPE : public SGDisplayItem 00128 00129 Author: Unattributed (Xara Group Ltd) <camelotdev@xara.com> (Based on template code by Jason) 00130 Created: 27/01/95 00131 Purpose: This DisplayTree node is used by the TEMPLATE SuperGallery 00132 It is responsible for providing the ability to handle/redraw one DATATYPE 00133 displayed in said gallery. 00134 00135 SeeAlso: TEMPLATESGallery; SuperGallery; SGDisplayItem 00136 00137 ***********************************************************************************************/ 00138 00139 class CCAPI SGDisplayDATATYPE : public SGDisplayItem 00140 { 00141 CC_DECLARE_DYNAMIC(SGDisplayDATATYPE); 00142 00143 public: 00144 SGDisplayDATATYPE(); 00145 SGDisplayDATATYPE(DATATYPE *DATATYPEToDisplay); 00146 00147 virtual BOOL HandleEvent(SGEventType EventType, void *EventInfo, 00148 SGMiscInfo *MiscInfo); 00149 00150 virtual void GetNameText(String_256 *Result); 00151 // Returns the name text for this item 00152 00153 00154 protected: // Internal handlers 00155 virtual void CalculateMyRect(SGFormatInfo *FormatInfo, SGMiscInfo *MiscInfo); 00156 // Determines item size for the current DisplayMode and calculates FormatRect 00157 00158 virtual void HandleRedraw(SGRedrawInfo *RedrawInfo, SGMiscInfo *MiscInfo); 00159 // Redraws the item into the current FormatRect 00160 00161 00162 public: // Specialisations of this class 00163 inline DATATYPE *GetDisplayedDATATYPE(void); 00164 00165 00166 private: // Special member variables 00167 DATATYPE *TheDATATYPE; 00168 }; 00169 00170 00171 00172 /******************************************************************************************** 00173 00174 > inline DATATYPE *SGDisplayDATATYPE::GetDisplayedDATATYPE(void) 00175 00176 Author: Unattributed (Xara Group Ltd) <camelotdev@xara.com> (Based on template code by Jason) 00177 Created: 27/1/95 00178 00179 Returns: A pointer to the DATATYPE which this Display Item is used to display. 00180 00181 Purpose: To find out the DATATYPE this object is responsible for displaying 00182 00183 ********************************************************************************************/ 00184 00185 DATATYPE *SGDisplayDATATYPE::GetDisplayedDATATYPE(void) 00186 { 00187 return(TheDATATYPE); 00188 } 00189 00190 00191 00192 00193 00194 00195 /*********************************************************************************************** 00196 00197 > class TEMPLATESGallery : public SuperGallery 00198 00199 Author: Unattributed (Xara Group Ltd) <camelotdev@xara.com> (Based on template code by Jason) 00200 Created: 27/1/95 (Based on the Colour SGallery code) 00201 Purpose: The TEMPLATE SuperGallery class 00202 00203 Notes: SuperGalleries are specced in a number of docs including 00204 specs\sgallery.doc ("super" gallery extensions) 00205 specs\propui.doc (gallery basic ui) 00206 There is also howtouse\sgallery.doc which describes creating a supergallery 00207 00208 SeeAlso: SuperGallery; SGDisplayTEMPLATE 00209 00210 ***********************************************************************************************/ 00211 00212 class TEMPLATESGallery : public SuperGallery 00213 { 00214 CC_DECLARE_DYNCREATE(TEMPLATESGallery) 00215 00216 public: 00217 TEMPLATESGallery(); 00218 ~TEMPLATESGallery(); 00219 00220 virtual MsgResult Message(Msg* Message); 00221 00222 00223 protected: // Overridden upcall methods 00224 virtual BOOL PreCreate(void); 00225 00226 virtual BOOL ApplyAction(SGActionType Action); 00227 00228 00229 protected: // Personal/Internal methods 00230 void CreateNewSubtree(Document *ParentDoc, SGDisplayGroup *ExistingGroup = NULL); 00231 // Creates a new subtree group to display the TEMPLATEs for the given document 00232 // If ExistingGroup != NULL, that group will be re-cached for the given doc 00233 }; 00234 00235 00236 00237 00238 00239 /******************************************************************************************** 00240 00241 > class OpDisplayTEMPLATEGallery: public Operation 00242 00243 Author: Unattributed (Xara Group Ltd) <camelotdev@xara.com> 00244 Created: 9/2/95 (Based on the Colour SGallery code) 00245 00246 Purpose: Displays the TEMPLATE gallery. 00247 This op can be attached to a menu, button or keypress 00248 SeeAlso: TEMPLATESGallery 00249 00250 ********************************************************************************************/ 00251 00252 #define OPTOKEN_DISPLAYTEMPLATEGALLERY _T("DisplayTEMPLATEGallery") 00253 00254 class CCAPI OpDisplayTEMPLATEGallery: public Operation 00255 { 00256 CC_DECLARE_DYNCREATE( OpDisplayTEMPLATEGallery ); 00257 00258 public: 00259 static BOOL Init(); 00260 static OpState GetState(String_256*, OpDescriptor*); 00261 void Do(OpDescriptor*); 00262 00263 private: 00264 static DialogBarOp *FindGallery(void); 00265 // Finds the TEMPLATE gallery class instance 00266 }; 00267 00268 00269 #endif 00270