* installer/win32/dia-diagram.ico:
[dia.git] / installer / win32 / dia.nsi
blob1d72e82b2d31b0ec7058a7f3d94e7d0bae8320fc
1 ; Dia -- an diagram creation/manipulation program
2 ; Copyright (C) 1998-2006 Alexander Larsson, Lars Clausen and others
3 ;
4 ; dia-installer.nsi : Nullsoft Installation System (NSIS) script
5 ; Copyright (C) 2000-2004 Herman Bloggs, Steffen Macke
6 ; Copyright (C) 2005,2006 Steffen Macke
7 ;
8 ; This program is free software; you can redistribute it and/or modify
9 ; it under the terms of the GNU General Public License as published by
10 ; the Free Software Foundation; either version 2 of the License, or
11 ; (at your option) any later version.
12 ; This program is distributed in the hope that it will be useful,
13 ; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ; GNU General Public License for more details.
17 ; You should have received a copy of the GNU General Public License
18 ; along with this program; if not, write to the Free Software
19 ; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 ; NOTE: this .NSI script is designed for NSIS v2.0
23 ;--------------------------------
24 ;Global Variables
25 Var name
27 ;--------------------------------
28 ;Configuration
30 ;The name var is set in .onInit
31 Name $name
33 ; Uninstall only the installed files and folders
34 !define UninstLog "uninstall.log"
35 Var UninstLog
37 ; Where the GTK+ binares are installed. Set in .onInit
38 Var GTKBIN
40 ; Add file macro
41 !macro File FilePath FileName
42 !define FileID ${__LINE__}
43 ;IfFileExists "$OUTDIR\${FileName}" NoExtract_${FileID}
44 File "${FilePath}${FileName}"
45 NoExtract_${FileID}:
46 FileWrite $UninstLog "$OUTDIR\${FileName}$\r$\n"
47 !undef FileID
48 !macroend
49 !define File "!insertmacro File"
51 ; Set output path macro
52 !macro SetOutPath Path
53 SetOutPath "${Path}"
54 FileWrite $UninstLog "${PATH}$\r$\n"
55 !macroend
56 !define SetOutPath "!insertmacro SetOutPath"
58 Section -openlogfile
59 SetOutPath "$INSTDIR"
60 ; Check if install directory is pre 0.95
61 IfFileExists "$INSTDIR\bin\libgtk-win32-2.0-0.dll" abort_no_overinstall continue_install
62 abort_no_overinstall:
63 MessageBox MB_OK|MB_ICONEXCLAMATION $(DIA_NO_INSTALL_OVER)
64 Abort $(DIA_NO_INSTALL_OVER)
65 continue_install:
66 IfFileExists "$INSTDIR\${UninstLog}" +3
67 FileOpen $UninstLog "$INSTDIR\${UninstLog}" w
68 Goto +4
69 SetFileAttributes "$INSTDIR\${UninstLog}" NORMAL
70 FileOpen $UninstLog "$INSTDIR\${UninstLog}" a
71 FileSeek $UninstLog 0 END
72 SectionEnd
74 OutFile "dia-setup-${DIA_VERSION}.exe"
76 SetCompressor LZMA
77 ;DirShow show
78 ShowInstDetails show
79 ShowUninstDetails show
80 SetDateSave on
82 ; $name and $INSTDIR are set in .onInit function..
84 !include "MUI.nsh"
85 ;!include "Sections.nsh"
87 ;--------------------------------
88 ;Defines
90 !define DIA_REG_KEY "SOFTWARE\Dia"
91 !define DIA_UNINSTALL_KEY "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Dia"
92 !define HKLM_APP_PATHS_KEY "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\diaw.exe"
93 !define HKLM_CMD_PATHS_KEY "SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\dia.exe"
94 !define DIA_STARTUP_RUN_KEY "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"
95 !define DIA_UNINST_EXE "dia-${DIA_VERSION}-uninstall.exe"
97 XPStyle On
99 VIAddVersionKey "ProductName" "Dia for Windows"
100 VIAddVersionKey "CompanyName" "The Dia Developers"
101 VIAddVersionKey "LegalCopyright" "(c) 2003-2006 Alexander Larsson and others"
102 VIAddVersionKey "FileDescription" "Dia for Windows Installer"
103 VIAddVersionKey "FileVersion" "0.95.1.0"
104 VIProductVersion "0.95.1.0"
106 ;--------------------------------
107 ;Modern UI Configuration
109 !define MUI_ICON "dia-install.ico"
110 !define MUI_UNICON "dia-uninstall.ico"
111 !define MUI_WELCOMEFINISHPAGE_BITMAP "dia-intro.bmp"
112 !define MUI_HEADERIMAGE
113 !define MUI_HEADERIMAGE_BITMAP "dia-header.bmp"
114 !define MUI_HEADERIMAGE_UNBITMAP "dia-header.bmp"
116 ; Alter License section
117 !define MUI_LICENSEPAGE_BUTTON $(DIA_LICENSE_BUTTON)
118 !define MUI_LICENSEPAGE_TEXT_BOTTOM $(DIA_LICENSE_BOTTOM_TEXT)
120 !define MUI_COMPONENTSPAGE_SMALLDESC
121 !define MUI_ABORTWARNING
123 ;Finish Page config
124 !define MUI_FINISHPAGE_RUN "$INSTDIR\bin\diaw.exe"
125 !define MUI_FINISHPAGE_RUN_NOTCHECKED
126 !define MUI_FINISHPAGE_LINK $(DIA_FINISH_VISIT_WEB_SITE)
127 !define MUI_FINISHPAGE_LINK_LOCATION "http://dia-installer.sourceforge.net/"
129 ;--------------------------------
130 ;Pages
132 !insertmacro MUI_PAGE_WELCOME
133 !insertmacro MUI_PAGE_LICENSE "..\..\COPYING"
134 !insertmacro MUI_PAGE_COMPONENTS
136 ; Dia install dir page
137 !insertmacro MUI_PAGE_DIRECTORY
139 !insertmacro MUI_PAGE_INSTFILES
140 !insertmacro MUI_PAGE_FINISH
142 !insertmacro MUI_UNPAGE_WELCOME
143 !insertmacro MUI_UNPAGE_CONFIRM
144 !insertmacro MUI_UNPAGE_INSTFILES
145 !insertmacro MUI_UNPAGE_FINISH
147 ;--------------------------------
148 ;Languages
150 ;; English goes first because its the default. The rest are
151 ;; in alphabetical order (at least the strings actually displayed
152 ;; will be).
154 !insertmacro MUI_LANGUAGE "English"
155 !insertmacro MUI_LANGUAGE "German"
156 !insertmacro MUI_LANGUAGE "French"
158 ;--------------------------------
159 ;Translations
161 !define DIA_DEFAULT_LANGFILE "locale\english.nsh"
163 !include "langmacros.nsh"
165 !insertmacro DIA_MACRO_INCLUDE_LANGFILE "ENGLISH" "locale\english.nsh"
166 !insertmacro DIA_MACRO_INCLUDE_LANGFILE "GERMAN" "locale\german.nsh"
167 !insertmacro DIA_MACRO_INCLUDE_LANGFILE "FRENCH" "locale\french.nsh"
169 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;
170 ;; Start Install Sections ;;
171 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;
173 ;--------------------------------
174 ;Dia Install Section
176 Section $(DIA_SECTION_TITLE) SecDia
177 SetOverwrite On
178 SectionIn 1 RO
180 ; Check install rights..
181 Call CheckUserInstallRights
182 Pop $R0
184 StrCmp $R0 "NONE" dia_none
185 StrCmp $R0 "HKLM" dia_hklm dia_hkcu
187 dia_hklm:
188 WriteRegStr HKLM "${HKLM_APP_PATHS_KEY}" "" "$INSTDIR\bin\diaw.exe"
189 WriteRegStr HKLM "${HKLM_APP_PATHS_KEY}" "Path" "$R1\bin;$GTKBIN"
190 WriteRegStr HKLM "${HKLM_CMD_PATHS_KEY}" "" "$INSTDIR\bin\dia.exe"
191 WriteRegStr HKLM "${HKLM_CMD_PATHS_KEY}" "Path" "$R1\bin;$GTKBIN"
192 WriteRegStr HKLM ${DIA_REG_KEY} "" "$INSTDIR"
193 WriteRegStr HKLM ${DIA_REG_KEY} "Version" "${DIA_VERSION}"
194 WriteRegStr HKLM "${DIA_UNINSTALL_KEY}" "DisplayName" $(DIA_UNINSTALL_DESC)
195 WriteRegStr HKLM "${DIA_UNINSTALL_KEY}" "UninstallString" "$INSTDIR\${DIA_UNINST_EXE}"
196 WriteRegStr HKLM "${DIA_UNINSTALL_KEY}" "DisplayIcon" "$INSTDIR\${DIA_UNINST_EXE}"
197 ; Sets scope of the desktop and Start Menu entries for all users.
198 SetShellVarContext "all"
199 Goto dia_install_files
201 dia_hkcu:
202 WriteRegStr HKCU ${DIA_REG_KEY} "" "$INSTDIR"
203 WriteRegStr HKCU ${DIA_REG_KEY} "Version" "${DIA_VERSION}"
204 WriteRegStr HKCU "${DIA_UNINSTALL_KEY}" "DisplayName" $(DIA_UNINSTALL_DESC)
205 WriteRegStr HKCU "${DIA_UNINSTALL_KEY}" "UninstallString" "$INSTDIR\${DIA_UNINST_EXE}"
206 WriteRegStr HKCU "${DIA_UNINSTALL_KEY}" "DisplayIcon" "$INSTDIR\${DIA_UNINST_EXE}"
208 Goto dia_install_files
210 dia_none:
212 dia_install_files:
214 WriteRegStr HKEY_CLASSES_ROOT ".dia" "" "diaFile"
215 WriteRegStr HKEY_CLASSES_ROOT ".dia" "Content Type" "application/dia"
216 WriteRegStr HKEY_CLASSES_ROOT "diaFile" "" "diaFile"
217 WriteRegBin HKEY_CLASSES_ROOT "diaFile" "EditFlags" 00000100
218 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\open\command" "" '"$INSTDIR\bin\diaw.exe" "%1"'
219 WriteRegStr HKEY_CLASSES_ROOT "diaFile\DefaultIcon" "" "$INSTDIR\etc\dia-diagram.ico,0"
220 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createcgm" "" "Create CGM image"
221 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createcgm\command" "" '"$INSTDIR\bin\dia.exe" -t cgm "%1"'
222 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createdxf" "" "Create DXF drawing"
223 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createdxf\command" "" '"$INSTDIR\bin\dia.exe" -t dxf "%1"'
224 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createeps" "" "Create EPS file"
225 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createeps\command" "" '"$INSTDIR\bin\dia.exe" -t eps "%1"'
226 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createhpgl" "" "Create HPGL file"
227 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createhpgl\command" "" '"$INSTDIR\bin\dia.exe" -t hpgl "%1"'
228 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createmp" "" "Create TeX Metapost macros"
229 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createmp\command" "" '"$INSTDIR\bin\dia.exe" -t mp "%1"'
230 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createpng" "" "Create PNG image"
231 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createpng\command" "" '"$INSTDIR\bin\dia.exe" -t png "%1"'
232 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createsvg" "" "Create SVG image"
233 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createsvg\command" "" '"$INSTDIR\bin\dia.exe" -t svg "%1"'
234 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createshape" "" "Create dia shape"
235 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createshape\command" "" '"$INSTDIR\bin\dia.exe" -t shape "%1"'
236 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createtex" "" "Create TeX PSTricks macros"
237 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createtex\command" "" '"$INSTDIR\bin\dia.exe" -t tex "%1"'
238 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createwmf" "" "Create Windows Meta File"
239 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createwmf\command" "" '"$INSTDIR\bin\dia.exe" -t wmf "%1"'
240 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createwpg" "" "Create WPG image"
241 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createwpg\command" "" '"$INSTDIR\bin\dia.exe" -t wpg "%1"'
242 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createfig" "" "Create XFig drawing"
243 WriteRegStr HKEY_CLASSES_ROOT "diaFile\Shell\createfig\command" "" '"$INSTDIR\bin\dia.exe" -t fig "%1"'
245 ${SetOutPath} "$INSTDIR\bin"
246 ; jEdit replacement: (^.*\\)(.*)$
247 ; \${File} "$1" "$2"
248 ${File} "..\..\..\bin\" "dia.exe"
249 ${File} "..\..\..\bin\" "diaw.exe"
250 ${File} "..\..\..\bin\" "dia-app.dll"
251 ${File} "..\..\..\bin\" "libart_lgpl_2-2.dll"
252 ${File} "..\..\..\bin\" "libcairo.dll"
253 ${File} "..\..\..\bin\" "libdia.dll"
254 ${File} "..\..\..\bin\" "libiconv2.dll"
255 ${File} "..\..\..\bin\" "libintl3.dll"
256 ${File} "..\..\..\bin\" "libxml2.dll"
257 ${File} "..\..\..\bin\" "libxslt.dll"
258 ${SetOutPath} "$INSTDIR\etc"
259 ${File} ".\" "dia-diagram.ico"
260 ${SetOutPath} "$INSTDIR\dia"
261 ${File} "..\..\" "aadl.dll"
262 ${File} "..\..\" "bondgraph.dll"
263 ${File} "..\..\" "cairo.dll"
264 ${File} "..\..\" "cgm.dll"
265 ${File} "..\..\" "chronogram.dll"
266 ${File} "..\..\" "custom.dll"
267 ${File} "..\..\" "dxf.dll"
268 ${File} "..\..\" "er.dll"
269 ${File} "..\..\" "flowchart.dll"
270 ${File} "..\..\" "fs.dll"
271 ${File} "..\..\" "grafcet.dll"
272 ${File} "..\..\" "hpgl.dll"
273 ${File} "..\..\" "Istar.dll"
274 ${File} "..\..\" "Jackson.dll"
275 ${File} "..\..\" "Kaos.dll"
276 ${File} "..\..\" "metapost.dll"
277 ${File} "..\..\" "misc.dll"
278 ${File} "..\..\" "network.dll"
279 ${File} "..\..\" "pixbuf.dll"
280 ${File} "..\..\" "pstricks.dll"
281 ${File} "..\..\" "sadt.dll"
282 ${File} "..\..\" "shape.dll"
283 ${File} "..\..\" "standard.dll"
284 ${File} "..\..\" "svg.dll"
285 ${File} "..\..\" "uml.dll"
286 ${File} "..\..\" "vdx.dll"
287 ${File} "..\..\" "wmf.dll"
288 ${File} "..\..\" "wpg.dll"
289 ${File} "..\..\" "xfig.dll"
290 ${File} "..\..\" "xslt.dll"
292 ${SetOutPath} "$INSTDIR\shapes\Assorted"
293 ${File} "..\..\shapes\Assorted\" "arrow-chevron.png"
294 ${File} "..\..\shapes\Assorted\" "arrow-chevron.shape"
295 ${File} "..\..\shapes\Assorted\" "arrow-down.png"
296 ${File} "..\..\shapes\Assorted\" "arrow-down.shape"
297 ${File} "..\..\shapes\Assorted\" "arrow-left-notched.png"
298 ${File} "..\..\shapes\Assorted\" "arrow-left-notched.shape"
299 ${File} "..\..\shapes\Assorted\" "arrow-left-right-up.png"
300 ${File} "..\..\shapes\Assorted\" "arrow-left-right-up.shape"
301 ${File} "..\..\shapes\Assorted\" "arrow-left-right.png"
302 ${File} "..\..\shapes\Assorted\" "arrow-left-right.shape"
303 ${File} "..\..\shapes\Assorted\" "arrow-left-up.png"
304 ${File} "..\..\shapes\Assorted\" "arrow-left-up.shape"
305 ${File} "..\..\shapes\Assorted\" "arrow-left.png"
306 ${File} "..\..\shapes\Assorted\" "arrow-left.shape"
307 ${File} "..\..\shapes\Assorted\" "arrow-pentagon.png"
308 ${File} "..\..\shapes\Assorted\" "arrow-pentagon.shape"
309 ${File} "..\..\shapes\Assorted\" "arrow-quad.png"
310 ${File} "..\..\shapes\Assorted\" "arrow-quad.shape"
311 ${File} "..\..\shapes\Assorted\" "arrow-right-notched.png"
312 ${File} "..\..\shapes\Assorted\" "arrow-right-notched.shape"
313 ${File} "..\..\shapes\Assorted\" "arrow-right.png"
314 ${File} "..\..\shapes\Assorted\" "arrow-right.shape"
315 ${File} "..\..\shapes\Assorted\" "arrow-turn-up.png"
316 ${File} "..\..\shapes\Assorted\" "arrow-turn-up.shape"
317 ${File} "..\..\shapes\Assorted\" "arrow-up-down-left.png"
318 ${File} "..\..\shapes\Assorted\" "arrow-up-down-left.shape"
319 ${File} "..\..\shapes\Assorted\" "arrow-up-down.png"
320 ${File} "..\..\shapes\Assorted\" "arrow-up-down.shape"
321 ${File} "..\..\shapes\Assorted\" "arrow-up.png"
322 ${File} "..\..\shapes\Assorted\" "arrow-up.shape"
323 ${File} "..\..\shapes\Assorted\" "circle-quarter.png"
324 ${File} "..\..\shapes\Assorted\" "circle-quarter.shape"
325 ${File} "..\..\shapes\Assorted\" "circle.png"
326 ${File} "..\..\shapes\Assorted\" "circle.shape"
327 ${File} "..\..\shapes\Assorted\" "cross-maltese.png"
328 ${File} "..\..\shapes\Assorted\" "cross-maltese.shape"
329 ${File} "..\..\shapes\Assorted\" "cross-swiss.png"
330 ${File} "..\..\shapes\Assorted\" "cross-swiss.shape"
331 ${File} "..\..\shapes\Assorted\" "diamond.png"
332 ${File} "..\..\shapes\Assorted\" "diamond.shape"
333 ${File} "..\..\shapes\Assorted\" "heart.png"
334 ${File} "..\..\shapes\Assorted\" "heart.shape"
335 ${File} "..\..\shapes\Assorted\" "heptagon.png"
336 ${File} "..\..\shapes\Assorted\" "heptagon.shape"
337 ${File} "..\..\shapes\Assorted\" "hexagon.png"
338 ${File} "..\..\shapes\Assorted\" "hexagon.shape"
339 ${File} "..\..\shapes\Assorted\" "moon-quarter.png"
340 ${File} "..\..\shapes\Assorted\" "moon-quarter.shape"
341 ${File} "..\..\shapes\Assorted\" "octagon.png"
342 ${File} "..\..\shapes\Assorted\" "octagon.shape"
343 ${File} "..\..\shapes\Assorted\" "parallelogram-horizontal.png"
344 ${File} "..\..\shapes\Assorted\" "parallelogram-horizontal.shape"
345 ${File} "..\..\shapes\Assorted\" "parallelogram-vertical.png"
346 ${File} "..\..\shapes\Assorted\" "parallelogram-vertical.shape"
347 ${File} "..\..\shapes\Assorted\" "pentagon.png"
348 ${File} "..\..\shapes\Assorted\" "pentagon.shape"
349 ${File} "..\..\shapes\Assorted\" "square.png"
350 ${File} "..\..\shapes\Assorted\" "square.shape"
351 ${File} "..\..\shapes\Assorted\" "star4.png"
352 ${File} "..\..\shapes\Assorted\" "star4.shape"
353 ${File} "..\..\shapes\Assorted\" "star4curved.png"
354 ${File} "..\..\shapes\Assorted\" "star4curved.shape"
355 ${File} "..\..\shapes\Assorted\" "star5.png"
356 ${File} "..\..\shapes\Assorted\" "star5.shape"
357 ${File} "..\..\shapes\Assorted\" "star6.png"
358 ${File} "..\..\shapes\Assorted\" "star6.shape"
359 ${File} "..\..\shapes\Assorted\" "star7.png"
360 ${File} "..\..\shapes\Assorted\" "star7.shape"
361 ${File} "..\..\shapes\Assorted\" "star8.png"
362 ${File} "..\..\shapes\Assorted\" "star8.shape"
363 ${File} "..\..\shapes\Assorted\" "star8curved.png"
364 ${File} "..\..\shapes\Assorted\" "star8curved.shape"
365 ${File} "..\..\shapes\Assorted\" "star8sharp.png"
366 ${File} "..\..\shapes\Assorted\" "star8sharp.shape"
367 ${File} "..\..\shapes\Assorted\" "sun.png"
368 ${File} "..\..\shapes\Assorted\" "sun.shape"
369 ${File} "..\..\shapes\Assorted\" "trapezoid.png"
370 ${File} "..\..\shapes\Assorted\" "trapezoid.shape"
371 ${File} "..\..\shapes\Assorted\" "triangle-isoceles.png"
372 ${File} "..\..\shapes\Assorted\" "triangle-isoceles.shape"
373 ${File} "..\..\shapes\Assorted\" "triangle-rightangle.png"
374 ${File} "..\..\shapes\Assorted\" "triangle-rightangle.shape"
375 ${SetOutPath} "$INSTDIR\shapes\ChemEng"
376 ${File} "..\..\shapes\ChemEng\" "ACgen.png"
377 ${File} "..\..\shapes\ChemEng\" "ACgen.shape"
378 ${File} "..\..\shapes\ChemEng\" "aircooler.png"
379 ${File} "..\..\shapes\ChemEng\" "aircooler.shape"
380 ${File} "..\..\shapes\ChemEng\" "airforced.png"
381 ${File} "..\..\shapes\ChemEng\" "airforced.shape"
382 ${File} "..\..\shapes\ChemEng\" "airinduced.png"
383 ${File} "..\..\shapes\ChemEng\" "airinduced.shape"
384 ${File} "..\..\shapes\ChemEng\" "autoclave.png"
385 ${File} "..\..\shapes\ChemEng\" "autoclave.shape"
386 ${File} "..\..\shapes\ChemEng\" "bigtraycol.png"
387 ${File} "..\..\shapes\ChemEng\" "bigtraycol.shape"
388 ${File} "..\..\shapes\ChemEng\" "centrifuge.png"
389 ${File} "..\..\shapes\ChemEng\" "centrifuge.shape"
390 ${File} "..\..\shapes\ChemEng\" "coil.png"
391 ${File} "..\..\shapes\ChemEng\" "coil.shape"
392 ${File} "..\..\shapes\ChemEng\" "coilv.png"
393 ${File} "..\..\shapes\ChemEng\" "coilv.shape"
394 ${File} "..\..\shapes\ChemEng\" "compr.png"
395 ${File} "..\..\shapes\ChemEng\" "compr.shape"
396 ${File} "..\..\shapes\ChemEng\" "coveredtank.png"
397 ${File} "..\..\shapes\ChemEng\" "coveredtank.shape"
398 ${File} "..\..\shapes\ChemEng\" "cyclone.png"
399 ${File} "..\..\shapes\ChemEng\" "cyclone.shape"
400 ${File} "..\..\shapes\ChemEng\" "displa.png"
401 ${File} "..\..\shapes\ChemEng\" "displa.shape"
402 ${File} "..\..\shapes\ChemEng\" "doublepipe.png"
403 ${File} "..\..\shapes\ChemEng\" "doublepipe.shape"
404 ${File} "..\..\shapes\ChemEng\" "ejector.png"
405 ${File} "..\..\shapes\ChemEng\" "ejector.shape"
406 ${File} "..\..\shapes\ChemEng\" "fan.png"
407 ${File} "..\..\shapes\ChemEng\" "fan.shape"
408 ${File} "..\..\shapes\ChemEng\" "filter.png"
409 ${File} "..\..\shapes\ChemEng\" "filter.shape"
410 ${File} "..\..\shapes\ChemEng\" "fixedroof.png"
411 ${File} "..\..\shapes\ChemEng\" "fixedroof.shape"
412 ${File} "..\..\shapes\ChemEng\" "floatingroof.png"
413 ${File} "..\..\shapes\ChemEng\" "floatingroof.shape"
414 ${File} "..\..\shapes\ChemEng\" "flowfan.png"
415 ${File} "..\..\shapes\ChemEng\" "flowfan.shape"
416 ${File} "..\..\shapes\ChemEng\" "fluidcont.png"
417 ${File} "..\..\shapes\ChemEng\" "fluidcont.shape"
418 ${File} "..\..\shapes\ChemEng\" "furnace.png"
419 ${File} "..\..\shapes\ChemEng\" "furnace.shape"
420 ${File} "..\..\shapes\ChemEng\" "gasholder.png"
421 ${File} "..\..\shapes\ChemEng\" "gasholder.shape"
422 ${File} "..\..\shapes\ChemEng\" "hx.png"
423 ${File} "..\..\shapes\ChemEng\" "hx.shape"
424 ${File} "..\..\shapes\ChemEng\" "hxv.png"
425 ${File} "..\..\shapes\ChemEng\" "hxv.shape"
426 ${File} "..\..\shapes\ChemEng\" "kettle.png"
427 ${File} "..\..\shapes\ChemEng\" "kettle.shape"
428 ${File} "..\..\shapes\ChemEng\" "knockout.png"
429 ${File} "..\..\shapes\ChemEng\" "knockout.shape"
430 ${File} "..\..\shapes\ChemEng\" "measure.png"
431 ${File} "..\..\shapes\ChemEng\" "measure.shape"
432 ${File} "..\..\shapes\ChemEng\" "mixer.png"
433 ${File} "..\..\shapes\ChemEng\" "mixer.shape"
434 ${File} "..\..\shapes\ChemEng\" "plate.png"
435 ${File} "..\..\shapes\ChemEng\" "plate.shape"
436 ${File} "..\..\shapes\ChemEng\" "pneum.png"
437 ${File} "..\..\shapes\ChemEng\" "pneum.shape"
438 ${File} "..\..\shapes\ChemEng\" "pneumv.png"
439 ${File} "..\..\shapes\ChemEng\" "pneumv.shape"
440 ${File} "..\..\shapes\ChemEng\" "pnuemv.png"
441 ${File} "..\..\shapes\ChemEng\" "pnuemv.shape"
442 ${File} "..\..\shapes\ChemEng\" "pump.png"
443 ${File} "..\..\shapes\ChemEng\" "pump.shape"
444 ${File} "..\..\shapes\ChemEng\" "reactor.png"
445 ${File} "..\..\shapes\ChemEng\" "reactor.shape"
446 ${File} "..\..\shapes\ChemEng\" "recipr.png"
447 ${File} "..\..\shapes\ChemEng\" "recipr.shape"
448 ${File} "..\..\shapes\ChemEng\" "regval.png"
449 ${File} "..\..\shapes\ChemEng\" "regval.shape"
450 ${File} "..\..\shapes\ChemEng\" "regvalv.png"
451 ${File} "..\..\shapes\ChemEng\" "regvalv.shape"
452 ${File} "..\..\shapes\ChemEng\" "SaT-fixedtube.png"
453 ${File} "..\..\shapes\ChemEng\" "SaT-fixedtube.shape"
454 ${File} "..\..\shapes\ChemEng\" "SaT-floatinghead.png"
455 ${File} "..\..\shapes\ChemEng\" "SaT-floatinghead.shape"
456 ${File} "..\..\shapes\ChemEng\" "sealedtank.png"
457 ${File} "..\..\shapes\ChemEng\" "sealedtank.shape"
458 ${File} "..\..\shapes\ChemEng\" "settling.png"
459 ${File} "..\..\shapes\ChemEng\" "settling.shape"
460 ${File} "..\..\shapes\ChemEng\" "spray.png"
461 ${File} "..\..\shapes\ChemEng\" "spray.shape"
462 ${File} "..\..\shapes\ChemEng\" "spraydrier.png"
463 ${File} "..\..\shapes\ChemEng\" "spraydrier.shape"
464 ${File} "..\..\shapes\ChemEng\" "storagesphere.png"
465 ${File} "..\..\shapes\ChemEng\" "storagesphere.shape"
466 ${File} "..\..\shapes\ChemEng\" "tank.png"
467 ${File} "..\..\shapes\ChemEng\" "tank.shape"
468 ${File} "..\..\shapes\ChemEng\" "traycol.png"
469 ${File} "..\..\shapes\ChemEng\" "traycol.shape"
470 ${File} "..\..\shapes\ChemEng\" "val.png"
471 ${File} "..\..\shapes\ChemEng\" "val.shape"
472 ${File} "..\..\shapes\ChemEng\" "valv.png"
473 ${File} "..\..\shapes\ChemEng\" "valv.shape"
474 ${File} "..\..\shapes\ChemEng\" "vessel.png"
475 ${File} "..\..\shapes\ChemEng\" "vessel.shape"
476 ${File} "..\..\shapes\ChemEng\" "wcool.png"
477 ${File} "..\..\shapes\ChemEng\" "wcool.shape"
478 ${File} "..\..\shapes\ChemEng\" "wcoolv.png"
479 ${File} "..\..\shapes\ChemEng\" "wcoolv.shape"
480 ${SetOutPath} "$INSTDIR\shapes\Circuit"
481 ${File} "..\..\shapes\Circuit\" "ground.png"
482 ${File} "..\..\shapes\Circuit\" "ground.shape"
483 ${File} "..\..\shapes\Circuit\" "ground.xpm"
484 ${File} "..\..\shapes\Circuit\" "hcapacitor.png"
485 ${File} "..\..\shapes\Circuit\" "hcapacitor.shape"
486 ${File} "..\..\shapes\Circuit\" "hcapacitor.xpm"
487 ${File} "..\..\shapes\Circuit\" "hdiode.png"
488 ${File} "..\..\shapes\Circuit\" "hdiode.shape"
489 ${File} "..\..\shapes\Circuit\" "hdiode.xpm"
490 ${File} "..\..\shapes\Circuit\" "hfuse_de.png"
491 ${File} "..\..\shapes\Circuit\" "hfuse_de.shape"
492 ${File} "..\..\shapes\Circuit\" "hfuse_de.xpm"
493 ${File} "..\..\shapes\Circuit\" "hinductor.png"
494 ${File} "..\..\shapes\Circuit\" "hinductor.shape"
495 ${File} "..\..\shapes\Circuit\" "hinductor.xpm"
496 ${File} "..\..\shapes\Circuit\" "hinductor_de.png"
497 ${File} "..\..\shapes\Circuit\" "hinductor_de.shape"
498 ${File} "..\..\shapes\Circuit\" "hinductor_de.xpm"
499 ${File} "..\..\shapes\Circuit\" "hjumper.png"
500 ${File} "..\..\shapes\Circuit\" "hjumper.shape"
501 ${File} "..\..\shapes\Circuit\" "hled_de.png"
502 ${File} "..\..\shapes\Circuit\" "hled_de.shape"
503 ${File} "..\..\shapes\Circuit\" "hled_de.xpm"
504 ${File} "..\..\shapes\Circuit\" "hpowersource_de.png"
505 ${File} "..\..\shapes\Circuit\" "hpowersource_de.shape"
506 ${File} "..\..\shapes\Circuit\" "hpowersource_de.xpm"
507 ${File} "..\..\shapes\Circuit\" "hresistor.png"
508 ${File} "..\..\shapes\Circuit\" "hresistor.shape"
509 ${File} "..\..\shapes\Circuit\" "hresistor.xpm"
510 ${File} "..\..\shapes\Circuit\" "hresistor_de.png"
511 ${File} "..\..\shapes\Circuit\" "hresistor_de.shape"
512 ${File} "..\..\shapes\Circuit\" "hresistor_de.xpm"
513 ${File} "..\..\shapes\Circuit\" "hzener.png"
514 ${File} "..\..\shapes\Circuit\" "hzener.shape"
515 ${File} "..\..\shapes\Circuit\" "hzener.xpm"
516 ${File} "..\..\shapes\Circuit\" "lamp_de.png"
517 ${File} "..\..\shapes\Circuit\" "lamp_de.shape"
518 ${File} "..\..\shapes\Circuit\" "lamp_de.xpm"
519 ${File} "..\..\shapes\Circuit\" "microphone_de.png"
520 ${File} "..\..\shapes\Circuit\" "microphone_de.shape"
521 ${File} "..\..\shapes\Circuit\" "microphone_de.xpm"
522 ${File} "..\..\shapes\Circuit\" "nmos_de.png"
523 ${File} "..\..\shapes\Circuit\" "nmos_de.shape"
524 ${File} "..\..\shapes\Circuit\" "nmos_de.xpm"
525 ${File} "..\..\shapes\Circuit\" "npn.png"
526 ${File} "..\..\shapes\Circuit\" "npn.shape"
527 ${File} "..\..\shapes\Circuit\" "npn.xpm"
528 ${File} "..\..\shapes\Circuit\" "opamp.png"
529 ${File} "..\..\shapes\Circuit\" "opamp.shape"
530 ${File} "..\..\shapes\Circuit\" "opamp.xpm"
531 ${File} "..\..\shapes\Circuit\" "pmos_de.png"
532 ${File} "..\..\shapes\Circuit\" "pmos_de.shape"
533 ${File} "..\..\shapes\Circuit\" "pmos_de.xpm"
534 ${File} "..\..\shapes\Circuit\" "pnp.png"
535 ${File} "..\..\shapes\Circuit\" "pnp.shape"
536 ${File} "..\..\shapes\Circuit\" "pnp.xpm"
537 ${File} "..\..\shapes\Circuit\" "README"
538 ${File} "..\..\shapes\Circuit\" "speaker_de.png"
539 ${File} "..\..\shapes\Circuit\" "speaker_de.shape"
540 ${File} "..\..\shapes\Circuit\" "speaker_de.xpm"
541 ${File} "..\..\shapes\Circuit\" "vcapacitor.png"
542 ${File} "..\..\shapes\Circuit\" "vcapacitor.shape"
543 ${File} "..\..\shapes\Circuit\" "vcapacitor.xpm"
544 ${File} "..\..\shapes\Circuit\" "vdiode.png"
545 ${File} "..\..\shapes\Circuit\" "vdiode.shape"
546 ${File} "..\..\shapes\Circuit\" "vdiode.xpm"
547 ${File} "..\..\shapes\Circuit\" "vfuse_de.png"
548 ${File} "..\..\shapes\Circuit\" "vfuse_de.shape"
549 ${File} "..\..\shapes\Circuit\" "vfuse_de.xpm"
550 ${File} "..\..\shapes\Circuit\" "vinductor.png"
551 ${File} "..\..\shapes\Circuit\" "vinductor.shape"
552 ${File} "..\..\shapes\Circuit\" "vinductor.xpm"
553 ${File} "..\..\shapes\Circuit\" "vinductor_de.png"
554 ${File} "..\..\shapes\Circuit\" "vinductor_de.shape"
555 ${File} "..\..\shapes\Circuit\" "vinductor_de.xpm"
556 ${File} "..\..\shapes\Circuit\" "vled_de.png"
557 ${File} "..\..\shapes\Circuit\" "vled_de.shape"
558 ${File} "..\..\shapes\Circuit\" "vled_de.xpm"
559 ${File} "..\..\shapes\Circuit\" "vpowersource_de.png"
560 ${File} "..\..\shapes\Circuit\" "vpowersource_de.shape"
561 ${File} "..\..\shapes\Circuit\" "vpowersource_de.xpm"
562 ${File} "..\..\shapes\Circuit\" "vresistor.png"
563 ${File} "..\..\shapes\Circuit\" "vresistor.shape"
564 ${File} "..\..\shapes\Circuit\" "vresistor.xpm"
565 ${File} "..\..\shapes\Circuit\" "vresistor_de.png"
566 ${File} "..\..\shapes\Circuit\" "vresistor_de.shape"
567 ${File} "..\..\shapes\Circuit\" "vresistor_de.xpm"
568 ${File} "..\..\shapes\Circuit\" "vzener.png"
569 ${File} "..\..\shapes\Circuit\" "vzener.shape"
570 ${File} "..\..\shapes\Circuit\" "vzener.xpm"
571 ${SetOutPath} "$INSTDIR\shapes\Cisco"
572 ${File} "..\..\shapes\Cisco\" "1000.png"
573 ${File} "..\..\shapes\Cisco\" "1000.shape"
574 ${File} "..\..\shapes\Cisco\" "100baset_hub.png"
575 ${File} "..\..\shapes\Cisco\" "100baset_hub.shape"
576 ${File} "..\..\shapes\Cisco\" "10700.png"
577 ${File} "..\..\shapes\Cisco\" "10700.shape"
578 ${File} "..\..\shapes\Cisco\" "15200.png"
579 ${File} "..\..\shapes\Cisco\" "15200.shape"
580 ${File} "..\..\shapes\Cisco\" "15800.png"
581 ${File} "..\..\shapes\Cisco\" "15800.shape"
582 ${File} "..\..\shapes\Cisco\" "3174.png"
583 ${File} "..\..\shapes\Cisco\" "3174.shape"
584 ${File} "..\..\shapes\Cisco\" "3x74.png"
585 ${File} "..\..\shapes\Cisco\" "3x74.shape"
586 ${File} "..\..\shapes\Cisco\" "5000.png"
587 ${File} "..\..\shapes\Cisco\" "5000.shape"
588 ${File} "..\..\shapes\Cisco\" "5002.png"
589 ${File} "..\..\shapes\Cisco\" "5002.shape"
590 ${File} "..\..\shapes\Cisco\" "5500.png"
591 ${File} "..\..\shapes\Cisco\" "5500.shape"
592 ${File} "..\..\shapes\Cisco\" "6701.png"
593 ${File} "..\..\shapes\Cisco\" "6701.shape"
594 ${File} "..\..\shapes\Cisco\" "6705.png"
595 ${File} "..\..\shapes\Cisco\" "6705.shape"
596 ${File} "..\..\shapes\Cisco\" "6732.png"
597 ${File} "..\..\shapes\Cisco\" "6732.shape"
598 ${File} "..\..\shapes\Cisco\" "7500ars.png"
599 ${File} "..\..\shapes\Cisco\" "7500ars.shape"
600 ${File} "..\..\shapes\Cisco\" "7505.png"
601 ${File} "..\..\shapes\Cisco\" "7505.shape"
602 ${File} "..\..\shapes\Cisco\" "7507.png"
603 ${File} "..\..\shapes\Cisco\" "7507.shape"
604 ${File} "..\..\shapes\Cisco\" "accesspoint.png"
605 ${File} "..\..\shapes\Cisco\" "accesspoint.shape"
606 ${File} "..\..\shapes\Cisco\" "access_gateway.png"
607 ${File} "..\..\shapes\Cisco\" "access_gateway.shape"
608 ${File} "..\..\shapes\Cisco\" "access_server.png"
609 ${File} "..\..\shapes\Cisco\" "access_server.shape"
610 ${File} "..\..\shapes\Cisco\" "adm.png"
611 ${File} "..\..\shapes\Cisco\" "adm.shape"
612 ${File} "..\..\shapes\Cisco\" "androgynous_person.png"
613 ${File} "..\..\shapes\Cisco\" "androgynous_person.shape"
614 ${File} "..\..\shapes\Cisco\" "antenna.png"
615 ${File} "..\..\shapes\Cisco\" "antenna.shape"
616 ${File} "..\..\shapes\Cisco\" "asic.png"
617 ${File} "..\..\shapes\Cisco\" "asic.shape"
618 ${File} "..\..\shapes\Cisco\" "ata.png"
619 ${File} "..\..\shapes\Cisco\" "ata.shape"
620 ${File} "..\..\shapes\Cisco\" "atm3800.png"
621 ${File} "..\..\shapes\Cisco\" "atm3800.shape"
622 ${File} "..\..\shapes\Cisco\" "atm_fast_gigabit_etherswitch.png"
623 ${File} "..\..\shapes\Cisco\" "atm_fast_gigabit_etherswitch.shape"
624 ${File} "..\..\shapes\Cisco\" "atm_router.png"
625 ${File} "..\..\shapes\Cisco\" "atm_router.shape"
626 ${File} "..\..\shapes\Cisco\" "atm_switch.png"
627 ${File} "..\..\shapes\Cisco\" "atm_switch.shape"
628 ${File} "..\..\shapes\Cisco\" "atm_tag_switch_router.png"
629 ${File} "..\..\shapes\Cisco\" "atm_tag_switch_router.shape"
630 ${File} "..\..\shapes\Cisco\" "atm_tag_sw_gigabit_router.png"
631 ${File} "..\..\shapes\Cisco\" "automatic_protection_switching.png"
632 ${File} "..\..\shapes\Cisco\" "automatic_protection_switching.shape"
633 ${File} "..\..\shapes\Cisco\" "bbfw.png"
634 ${File} "..\..\shapes\Cisco\" "bbfw.shape"
635 ${File} "..\..\shapes\Cisco\" "bbfw_media.png"
636 ${File} "..\..\shapes\Cisco\" "bbfw_media.shape"
637 ${File} "..\..\shapes\Cisco\" "bbs.png"
638 ${File} "..\..\shapes\Cisco\" "bbs.shape"
639 ${File} "..\..\shapes\Cisco\" "bbsm.png"
640 ${File} "..\..\shapes\Cisco\" "bbsm.shape"
641 ${File} "..\..\shapes\Cisco\" "branch_office.png"
642 ${File} "..\..\shapes\Cisco\" "branch_office.shape"
643 ${File} "..\..\shapes\Cisco\" "branch_office_blue.png"
644 ${File} "..\..\shapes\Cisco\" "branch_office_blue.shape"
645 ${File} "..\..\shapes\Cisco\" "branch_office_subdued.png"
646 ${File} "..\..\shapes\Cisco\" "branch_office_subdued.shape"
647 ${File} "..\..\shapes\Cisco\" "breakout_box.png"
648 ${File} "..\..\shapes\Cisco\" "breakout_box.shape"
649 ${File} "..\..\shapes\Cisco\" "bridge.png"
650 ${File} "..\..\shapes\Cisco\" "bridge.shape"
651 ${File} "..\..\shapes\Cisco\" "broadband_router.png"
652 ${File} "..\..\shapes\Cisco\" "broadband_router.shape"
653 ${File} "..\..\shapes\Cisco\" "bts10200.png"
654 ${File} "..\..\shapes\Cisco\" "bts10200.shape"
655 ${File} "..\..\shapes\Cisco\" "ca.png"
656 ${File} "..\..\shapes\Cisco\" "ca.shape"
657 ${File} "..\..\shapes\Cisco\" "cable_modem.png"
658 ${File} "..\..\shapes\Cisco\" "cable_modem.shape"
659 ${File} "..\..\shapes\Cisco\" "callmanager.png"
660 ${File} "..\..\shapes\Cisco\" "callmanager.shape"
661 ${File} "..\..\shapes\Cisco\" "car.png"
662 ${File} "..\..\shapes\Cisco\" "car.shape"
663 ${File} "..\..\shapes\Cisco\" "carrier_routing_system.png"
664 ${File} "..\..\shapes\Cisco\" "carrier_routing_system.shape"
665 ${File} "..\..\shapes\Cisco\" "catalyst_access_gateway.png"
666 ${File} "..\..\shapes\Cisco\" "catalyst_access_gateway.shape"
667 ${File} "..\..\shapes\Cisco\" "cddi_fddi.png"
668 ${File} "..\..\shapes\Cisco\" "cddi_fddi_concentrator.png"
669 ${File} "..\..\shapes\Cisco\" "cddi_fddi_concentrator.shape"
670 ${File} "..\..\shapes\Cisco\" "cdm.png"
671 ${File} "..\..\shapes\Cisco\" "cdm.shape"
672 ${File} "..\..\shapes\Cisco\" "cellular_phone.png"
673 ${File} "..\..\shapes\Cisco\" "cellular_phone.shape"
674 ${File} "..\..\shapes\Cisco\" "centri.png"
675 ${File} "..\..\shapes\Cisco\" "centri_firewall.png"
676 ${File} "..\..\shapes\Cisco\" "centri_firewall.shape"
677 ${File} "..\..\shapes\Cisco\" "channelized_pipe.png"
678 ${File} "..\..\shapes\Cisco\" "channelized_pipe.shape"
679 ${File} "..\..\shapes\Cisco\" "ciscosecurity.png"
680 ${File} "..\..\shapes\Cisco\" "ciscosecurity.shape"
681 ${File} "..\..\shapes\Cisco\" "ciscoworks.png"
682 ${File} "..\..\shapes\Cisco\" "ciscoworks.shape"
683 ${File} "..\..\shapes\Cisco\" "ciscoworks_man.png"
684 ${File} "..\..\shapes\Cisco\" "ciscoworks_man.shape"
685 ${File} "..\..\shapes\Cisco\" "cisco_hub.png"
686 ${File} "..\..\shapes\Cisco\" "cisco_hub.shape"
687 ${File} "..\..\shapes\Cisco\" "class45_switch.png"
688 ${File} "..\..\shapes\Cisco\" "class45_switch.shape"
689 ${File} "..\..\shapes\Cisco\" "cloud.png"
690 ${File} "..\..\shapes\Cisco\" "cloud.shape"
691 ${File} "..\..\shapes\Cisco\" "cloud_dark.png"
692 ${File} "..\..\shapes\Cisco\" "cloud_dark.shape"
693 ${File} "..\..\shapes\Cisco\" "cloud_gold.png"
694 ${File} "..\..\shapes\Cisco\" "cloud_gold.shape"
695 ${File} "..\..\shapes\Cisco\" "cloud_white.png"
696 ${File} "..\..\shapes\Cisco\" "cloud_white.shape"
697 ${File} "..\..\shapes\Cisco\" "communications_server.png"
698 ${File} "..\..\shapes\Cisco\" "communications_server.shape"
699 ${File} "..\..\shapes\Cisco\" "concatenated_payload.png"
700 ${File} "..\..\shapes\Cisco\" "concatenated_payload.shape"
701 ${File} "..\..\shapes\Cisco\" "content_engine.png"
702 ${File} "..\..\shapes\Cisco\" "content_engine.shape"
703 ${File} "..\..\shapes\Cisco\" "content_router.png"
704 ${File} "..\..\shapes\Cisco\" "content_router.shape"
705 ${File} "..\..\shapes\Cisco\" "content_service_module.png"
706 ${File} "..\..\shapes\Cisco\" "content_service_module.shape"
707 ${File} "..\..\shapes\Cisco\" "content_service_router.png"
708 ${File} "..\..\shapes\Cisco\" "content_switch.png"
709 ${File} "..\..\shapes\Cisco\" "content_switch.shape"
710 ${File} "..\..\shapes\Cisco\" "content_switch_module.png"
711 ${File} "..\..\shapes\Cisco\" "csm-s.png"
712 ${File} "..\..\shapes\Cisco\" "csm-s.shape"
713 ${File} "..\..\shapes\Cisco\" "css1100.png"
714 ${File} "..\..\shapes\Cisco\" "css1100.shape"
715 ${File} "..\..\shapes\Cisco\" "csu_dsu.png"
716 ${File} "..\..\shapes\Cisco\" "csu_dsu.shape"
717 ${File} "..\..\shapes\Cisco\" "cte.png"
718 ${File} "..\..\shapes\Cisco\" "cte.shape"
719 ${File} "..\..\shapes\Cisco\" "data_center_switch.png"
720 ${File} "..\..\shapes\Cisco\" "data_center_switch.shape"
721 ${File} "..\..\shapes\Cisco\" "data_center_switch_reversed.png"
722 ${File} "..\..\shapes\Cisco\" "data_center_switch_reversed.shape"
723 ${File} "..\..\shapes\Cisco\" "data_switch_processor.png"
724 ${File} "..\..\shapes\Cisco\" "data_switch_processor.shape"
725 ${File} "..\..\shapes\Cisco\" "detector.png"
726 ${File} "..\..\shapes\Cisco\" "detector.shape"
727 ${File} "..\..\shapes\Cisco\" "digital_cross-connect.png"
728 ${File} "..\..\shapes\Cisco\" "digital_cross-connect.shape"
729 ${File} "..\..\shapes\Cisco\" "directory_server.png"
730 ${File} "..\..\shapes\Cisco\" "directory_server.shape"
731 ${File} "..\..\shapes\Cisco\" "director_fcis.png"
732 ${File} "..\..\shapes\Cisco\" "director_fcis.shape"
733 ${File} "..\..\shapes\Cisco\" "diskette.png"
734 ${File} "..\..\shapes\Cisco\" "diskette.shape"
735 ${File} "..\..\shapes\Cisco\" "disk_subsystem.png"
736 ${File} "..\..\shapes\Cisco\" "disk_subsystem.shape"
737 ${File} "..\..\shapes\Cisco\" "distributed_director.png"
738 ${File} "..\..\shapes\Cisco\" "distributed_director.shape"
739 ${File} "..\..\shapes\Cisco\" "dot_dot.png"
740 ${File} "..\..\shapes\Cisco\" "dot_dot.shape"
741 ${File} "..\..\shapes\Cisco\" "dpt.png"
742 ${File} "..\..\shapes\Cisco\" "dpt.shape"
743 ${File} "..\..\shapes\Cisco\" "dslam.png"
744 ${File} "..\..\shapes\Cisco\" "dslam.shape"
745 ${File} "..\..\shapes\Cisco\" "dual_mode_accesspoint.png"
746 ${File} "..\..\shapes\Cisco\" "dual_mode_accesspoint.shape"
747 ${File} "..\..\shapes\Cisco\" "dwdm_filter.png"
748 ${File} "..\..\shapes\Cisco\" "dwdm_filter.shape"
749 ${File} "..\..\shapes\Cisco\" "edge_label_switch_router.png"
750 ${File} "..\..\shapes\Cisco\" "edge_label_switch_router_with_netflow.png"
751 ${File} "..\..\shapes\Cisco\" "edge_label_switch_router_with_netflow.shape"
752 ${File} "..\..\shapes\Cisco\" "end_office.png"
753 ${File} "..\..\shapes\Cisco\" "end_office.shape"
754 ${File} "..\..\shapes\Cisco\" "etherclient.png"
755 ${File} "..\..\shapes\Cisco\" "etherclient.shape"
756 ${File} "..\..\shapes\Cisco\" "fax.png"
757 ${File} "..\..\shapes\Cisco\" "fax.shape"
758 ${File} "..\..\shapes\Cisco\" "fc_storage.png"
759 ${File} "..\..\shapes\Cisco\" "fc_storage.shape"
760 ${File} "..\..\shapes\Cisco\" "fddi_ring.png"
761 ${File} "..\..\shapes\Cisco\" "fddi_ring.shape"
762 ${File} "..\..\shapes\Cisco\" "file_cabinet.png"
763 ${File} "..\..\shapes\Cisco\" "file_cabinet.shape"
764 ${File} "..\..\shapes\Cisco\" "file_engine.png"
765 ${File} "..\..\shapes\Cisco\" "file_engine.shape"
766 ${File} "..\..\shapes\Cisco\" "file_server.png"
767 ${File} "..\..\shapes\Cisco\" "file_server.shape"
768 ${File} "..\..\shapes\Cisco\" "firewall.png"
769 ${File} "..\..\shapes\Cisco\" "firewall.shape"
770 ${File} "..\..\shapes\Cisco\" "firewall_horizontal.png"
771 ${File} "..\..\shapes\Cisco\" "firewall_horizontal.shape"
772 ${File} "..\..\shapes\Cisco\" "firewall_subdued.png"
773 ${File} "..\..\shapes\Cisco\" "firewall_subdued.shape"
774 ${File} "..\..\shapes\Cisco\" "front_end_processor.png"
775 ${File} "..\..\shapes\Cisco\" "front_end_processor.shape"
776 ${File} "..\..\shapes\Cisco\" "fwsm.png"
777 ${File} "..\..\shapes\Cisco\" "fwsm.shape"
778 ${File} "..\..\shapes\Cisco\" "gatekeeper.png"
779 ${File} "..\..\shapes\Cisco\" "gatekeeper.shape"
780 ${File} "..\..\shapes\Cisco\" "general_appliance.png"
781 ${File} "..\..\shapes\Cisco\" "general_appliance.shape"
782 ${File} "..\..\shapes\Cisco\" "generic_building.png"
783 ${File} "..\..\shapes\Cisco\" "generic_building.shape"
784 ${File} "..\..\shapes\Cisco\" "generic_building_blue.png"
785 ${File} "..\..\shapes\Cisco\" "generic_building_blue.shape"
786 ${File} "..\..\shapes\Cisco\" "generic_building_subdued.png"
787 ${File} "..\..\shapes\Cisco\" "generic_building_subdued.shape"
788 ${File} "..\..\shapes\Cisco\" "generic_gateway.png"
789 ${File} "..\..\shapes\Cisco\" "generic_gateway.shape"
790 ${File} "..\..\shapes\Cisco\" "generic_processor.png"
791 ${File} "..\..\shapes\Cisco\" "generic_processor.shape"
792 ${File} "..\..\shapes\Cisco\" "generic_softswitch.png"
793 ${File} "..\..\shapes\Cisco\" "generic_softswitch.shape"
794 ${File} "..\..\shapes\Cisco\" "gigabit_switch_router_atm_tag.png"
795 ${File} "..\..\shapes\Cisco\" "gigabit_switch_router_atm_tag.shape"
796 ${File} "..\..\shapes\Cisco\" "government_building.png"
797 ${File} "..\..\shapes\Cisco\" "government_building.shape"
798 ${File} "..\..\shapes\Cisco\" "guard.png"
799 ${File} "..\..\shapes\Cisco\" "guard.shape"
800 ${File} "..\..\shapes\Cisco\" "h323.png"
801 ${File} "..\..\shapes\Cisco\" "h323.shape"
802 ${File} "..\..\shapes\Cisco\" "handheld.png"
803 ${File} "..\..\shapes\Cisco\" "handheld.shape"
804 ${File} "..\..\shapes\Cisco\" "headphones.png"
805 ${File} "..\..\shapes\Cisco\" "headphones.shape"
806 ${File} "..\..\shapes\Cisco\" "home_office.png"
807 ${File} "..\..\shapes\Cisco\" "home_office.shape"
808 ${File} "..\..\shapes\Cisco\" "hootphone.png"
809 ${File} "..\..\shapes\Cisco\" "hootphone.shape"
810 ${File} "..\..\shapes\Cisco\" "host.png"
811 ${File} "..\..\shapes\Cisco\" "host.shape"
812 ${File} "..\..\shapes\Cisco\" "house.png"
813 ${File} "..\..\shapes\Cisco\" "house.shape"
814 ${File} "..\..\shapes\Cisco\" "house_blue.png"
815 ${File} "..\..\shapes\Cisco\" "house_blue.shape"
816 ${File} "..\..\shapes\Cisco\" "hp_mini.png"
817 ${File} "..\..\shapes\Cisco\" "hp_mini.shape"
818 ${File} "..\..\shapes\Cisco\" "hub.png"
819 ${File} "..\..\shapes\Cisco\" "hub.shape"
820 ${File} "..\..\shapes\Cisco\" "hub_subdued.png"
821 ${File} "..\..\shapes\Cisco\" "hub_subdued.shape"
822 ${File} "..\..\shapes\Cisco\" "iad_router.png"
823 ${File} "..\..\shapes\Cisco\" "iad_router.shape"
824 ${File} "..\..\shapes\Cisco\" "ibm_mainframe.png"
825 ${File} "..\..\shapes\Cisco\" "ibm_mainframe.shape"
826 ${File} "..\..\shapes\Cisco\" "ibm_mainframe_with_fep.png"
827 ${File} "..\..\shapes\Cisco\" "ibm_mainframe_with_fep.shape"
828 ${File} "..\..\shapes\Cisco\" "ibm_mini.png"
829 ${File} "..\..\shapes\Cisco\" "ibm_mini.shape"
830 ${File} "..\..\shapes\Cisco\" "ibm_tower.png"
831 ${File} "..\..\shapes\Cisco\" "ibm_tower.shape"
832 ${File} "..\..\shapes\Cisco\" "icm.png"
833 ${File} "..\..\shapes\Cisco\" "icm.shape"
834 ${File} "..\..\shapes\Cisco\" "ics.png"
835 ${File} "..\..\shapes\Cisco\" "ics.shape"
836 ${File} "..\..\shapes\Cisco\" "intelliswitch_stack.png"
837 ${File} "..\..\shapes\Cisco\" "intelliswitch_stack.shape"
838 ${File} "..\..\shapes\Cisco\" "ios_firewall.png"
839 ${File} "..\..\shapes\Cisco\" "ios_firewall.shape"
840 ${File} "..\..\shapes\Cisco\" "ios_slb.png"
841 ${File} "..\..\shapes\Cisco\" "ios_slb.shape"
842 ${File} "..\..\shapes\Cisco\" "ip.png"
843 ${File} "..\..\shapes\Cisco\" "ip.shape"
844 ${File} "..\..\shapes\Cisco\" "iptc.png"
845 ${File} "..\..\shapes\Cisco\" "iptv_broadcast_server.png"
846 ${File} "..\..\shapes\Cisco\" "iptv_broadcast_server.shape"
847 ${File} "..\..\shapes\Cisco\" "iptv_content_manager.png"
848 ${File} "..\..\shapes\Cisco\" "iptv_content_manager.shape"
849 ${File} "..\..\shapes\Cisco\" "ip_dsl.png"
850 ${File} "..\..\shapes\Cisco\" "ip_dsl.shape"
851 ${File} "..\..\shapes\Cisco\" "ip_dsl_switch.png"
852 ${File} "..\..\shapes\Cisco\" "ip_old-style.png"
853 ${File} "..\..\shapes\Cisco\" "ip_old-style.shape"
854 ${File} "..\..\shapes\Cisco\" "ip_phone.png"
855 ${File} "..\..\shapes\Cisco\" "ip_phone.shape"
856 ${File} "..\..\shapes\Cisco\" "ip_softphone.png"
857 ${File} "..\..\shapes\Cisco\" "ip_softphone.shape"
858 ${File} "..\..\shapes\Cisco\" "ip_telephony_router.png"
859 ${File} "..\..\shapes\Cisco\" "ip_telephony_router.shape"
860 ${File} "..\..\shapes\Cisco\" "ip_transport_concentrator.png"
861 ${File} "..\..\shapes\Cisco\" "ip_transport_concentrator.shape"
862 ${File} "..\..\shapes\Cisco\" "iscsi_switch.png"
863 ${File} "..\..\shapes\Cisco\" "iscsi_switch.shape"
864 ${File} "..\..\shapes\Cisco\" "isdn_switch.png"
865 ${File} "..\..\shapes\Cisco\" "isdn_switch.shape"
866 ${File} "..\..\shapes\Cisco\" "itp.png"
867 ${File} "..\..\shapes\Cisco\" "itp.shape"
868 ${File} "..\..\shapes\Cisco\" "jbod.png"
869 ${File} "..\..\shapes\Cisco\" "jbod.shape"
870 ${File} "..\..\shapes\Cisco\" "key.png"
871 ${File} "..\..\shapes\Cisco\" "key.shape"
872 ${File} "..\..\shapes\Cisco\" "label_switch_router.png"
873 ${File} "..\..\shapes\Cisco\" "label_switch_router.shape"
874 ${File} "..\..\shapes\Cisco\" "lan2lan_switch.png"
875 ${File} "..\..\shapes\Cisco\" "lan2lan_switch.shape"
876 ${File} "..\..\shapes\Cisco\" "lan_to_lan.png"
877 ${File} "..\..\shapes\Cisco\" "lan_to_lan.shape"
878 ${File} "..\..\shapes\Cisco\" "laptop.png"
879 ${File} "..\..\shapes\Cisco\" "laptop.shape"
880 ${File} "..\..\shapes\Cisco\" "layer3_switch.png"
881 ${File} "..\..\shapes\Cisco\" "layer3_switch.shape"
882 ${File} "..\..\shapes\Cisco\" "layer_2_remote_switch.png"
883 ${File} "..\..\shapes\Cisco\" "layer_2_remote_switch.shape"
884 ${File} "..\..\shapes\Cisco\" "lightweight_ap.png"
885 ${File} "..\..\shapes\Cisco\" "lightweight_ap.shape"
886 ${File} "..\..\shapes\Cisco\" "localdirector.png"
887 ${File} "..\..\shapes\Cisco\" "localdirector.shape"
888 ${File} "..\..\shapes\Cisco\" "location_server.png"
889 ${File} "..\..\shapes\Cisco\" "location_server.shape"
890 ${File} "..\..\shapes\Cisco\" "lock.png"
891 ${File} "..\..\shapes\Cisco\" "lock.shape"
892 ${File} "..\..\shapes\Cisco\" "lock_and_key.png"
893 ${File} "..\..\shapes\Cisco\" "lock_and_key.shape"
894 ${File} "..\..\shapes\Cisco\" "longreach_cpe.png"
895 ${File} "..\..\shapes\Cisco\" "longreach_cpe.shape"
896 ${File} "..\..\shapes\Cisco\" "macintosh.png"
897 ${File} "..\..\shapes\Cisco\" "macintosh.shape"
898 ${File} "..\..\shapes\Cisco\" "mac_woman.png"
899 ${File} "..\..\shapes\Cisco\" "mac_woman.shape"
900 ${File} "..\..\shapes\Cisco\" "mac_woman_right.png"
901 ${File} "..\..\shapes\Cisco\" "mac_woman_right.shape"
902 ${File} "..\..\shapes\Cisco\" "man.png"
903 ${File} "..\..\shapes\Cisco\" "man.shape"
904 ${File} "..\..\shapes\Cisco\" "man_blue.png"
905 ${File} "..\..\shapes\Cisco\" "man_blue.shape"
906 ${File} "..\..\shapes\Cisco\" "man_gold.png"
907 ${File} "..\..\shapes\Cisco\" "man_gold.shape"
908 ${File} "..\..\shapes\Cisco\" "man_red.png"
909 ${File} "..\..\shapes\Cisco\" "man_red.shape"
910 ${File} "..\..\shapes\Cisco\" "man_woman.png"
911 ${File} "..\..\shapes\Cisco\" "man_woman.shape"
912 ${File} "..\..\shapes\Cisco\" "mas_gateway.png"
913 ${File} "..\..\shapes\Cisco\" "mas_gateway.shape"
914 ${File} "..\..\shapes\Cisco\" "mau.png"
915 ${File} "..\..\shapes\Cisco\" "mau.shape"
916 ${File} "..\..\shapes\Cisco\" "mcu.png"
917 ${File} "..\..\shapes\Cisco\" "mcu.shape"
918 ${File} "..\..\shapes\Cisco\" "mdu.png"
919 ${File} "..\..\shapes\Cisco\" "mdu.shape"
920 ${File} "..\..\shapes\Cisco\" "me1100.png"
921 ${File} "..\..\shapes\Cisco\" "me1100.shape"
922 ${File} "..\..\shapes\Cisco\" "medium_building.png"
923 ${File} "..\..\shapes\Cisco\" "medium_building.shape"
924 ${File} "..\..\shapes\Cisco\" "medium_building_blue.png"
925 ${File} "..\..\shapes\Cisco\" "medium_building_blue.shape"
926 ${File} "..\..\shapes\Cisco\" "medium_building_subdued.png"
927 ${File} "..\..\shapes\Cisco\" "medium_building_subdued.shape"
928 ${File} "..\..\shapes\Cisco\" "metro1500.png"
929 ${File} "..\..\shapes\Cisco\" "metro1500.shape"
930 ${File} "..\..\shapes\Cisco\" "mgx8220.png"
931 ${File} "..\..\shapes\Cisco\" "mgx8220.shape"
932 ${File} "..\..\shapes\Cisco\" "mgx8240.png"
933 ${File} "..\..\shapes\Cisco\" "mgx8240.shape"
934 ${File} "..\..\shapes\Cisco\" "mgx8260.png"
935 ${File} "..\..\shapes\Cisco\" "mgx8260.shape"
936 ${File} "..\..\shapes\Cisco\" "mgx_8000_series_voice_gateway.png"
937 ${File} "..\..\shapes\Cisco\" "mgx_8000_series_voice_gateway.shape"
938 ${File} "..\..\shapes\Cisco\" "microphone.png"
939 ${File} "..\..\shapes\Cisco\" "microphone.shape"
940 ${File} "..\..\shapes\Cisco\" "microwebserver.png"
941 ${File} "..\..\shapes\Cisco\" "microwebserver.shape"
942 ${File} "..\..\shapes\Cisco\" "mini_vax.png"
943 ${File} "..\..\shapes\Cisco\" "mini_vax.shape"
944 ${File} "..\..\shapes\Cisco\" "mobile_access_ip_phone.png"
945 ${File} "..\..\shapes\Cisco\" "mobile_access_ip_phone.shape"
946 ${File} "..\..\shapes\Cisco\" "mobile_access_router.png"
947 ${File} "..\..\shapes\Cisco\" "mobile_access_router.shape"
948 ${File} "..\..\shapes\Cisco\" "modem.png"
949 ${File} "..\..\shapes\Cisco\" "modem.shape"
950 ${File} "..\..\shapes\Cisco\" "moh_server.png"
951 ${File} "..\..\shapes\Cisco\" "moh_server.shape"
952 ${File} "..\..\shapes\Cisco\" "monitor.png"
953 ${File} "..\..\shapes\Cisco\" "monitor.shape"
954 ${File} "..\..\shapes\Cisco\" "multi-fabric_server_switch.png"
955 ${File} "..\..\shapes\Cisco\" "multi-fabric_server_switch.shape"
956 ${File} "..\..\shapes\Cisco\" "multilayer_remote_switch.png"
957 ${File} "..\..\shapes\Cisco\" "multilayer_remote_switch.shape"
958 ${File} "..\..\shapes\Cisco\" "multilayer_switch.png"
959 ${File} "..\..\shapes\Cisco\" "multilayer_switch.shape"
960 ${File} "..\..\shapes\Cisco\" "multilayer_switch_with_silicon.png"
961 ${File} "..\..\shapes\Cisco\" "multilayer_switch_with_silicon.shape"
962 ${File} "..\..\shapes\Cisco\" "multilayer_switch_with_silicon_subdued.png"
963 ${File} "..\..\shapes\Cisco\" "multilayer_switch_with_silicon_subdued.shape"
964 ${File} "..\..\shapes\Cisco\" "multiswitch_device.png"
965 ${File} "..\..\shapes\Cisco\" "multiswitch_device.shape"
966 ${File} "..\..\shapes\Cisco\" "mux.png"
967 ${File} "..\..\shapes\Cisco\" "mux.shape"
968 ${File} "..\..\shapes\Cisco\" "nat.png"
969 ${File} "..\..\shapes\Cisco\" "nat.shape"
970 ${File} "..\..\shapes\Cisco\" "netflow_router.png"
971 ${File} "..\..\shapes\Cisco\" "netflow_router.shape"
972 ${File} "..\..\shapes\Cisco\" "netranger.png"
973 ${File} "..\..\shapes\Cisco\" "netranger.shape"
974 ${File} "..\..\shapes\Cisco\" "netsonar.png"
975 ${File} "..\..\shapes\Cisco\" "netsonar.shape"
976 ${File} "..\..\shapes\Cisco\" "network_management.png"
977 ${File} "..\..\shapes\Cisco\" "network_management.shape"
978 ${File} "..\..\shapes\Cisco\" "newton.png"
979 ${File} "..\..\shapes\Cisco\" "newton.shape"
980 ${File} "..\..\shapes\Cisco\" "octel.png"
981 ${File} "..\..\shapes\Cisco\" "octel.shape"
982 ${File} "..\..\shapes\Cisco\" "ons15104.png"
983 ${File} "..\..\shapes\Cisco\" "ons15104.shape"
984 ${File} "..\..\shapes\Cisco\" "ons15500.png"
985 ${File} "..\..\shapes\Cisco\" "ons15540.png"
986 ${File} "..\..\shapes\Cisco\" "ons15540.shape"
987 ${File} "..\..\shapes\Cisco\" "optical_amplifier.png"
988 ${File} "..\..\shapes\Cisco\" "optical_amplifier.shape"
989 ${File} "..\..\shapes\Cisco\" "optical_cross-connect.png"
990 ${File} "..\..\shapes\Cisco\" "optical_cross-connect.shape"
991 ${File} "..\..\shapes\Cisco\" "optical_fiber.png"
992 ${File} "..\..\shapes\Cisco\" "optical_fiber.shape"
993 ${File} "..\..\shapes\Cisco\" "optical_services_router.png"
994 ${File} "..\..\shapes\Cisco\" "optical_services_router.shape"
995 ${File} "..\..\shapes\Cisco\" "optical_transport.png"
996 ${File} "..\..\shapes\Cisco\" "optical_transport.shape"
997 ${File} "..\..\shapes\Cisco\" "pad.png"
998 ${File} "..\..\shapes\Cisco\" "pad.shape"
999 ${File} "..\..\shapes\Cisco\" "pad_x28.png"
1000 ${File} "..\..\shapes\Cisco\" "pager.png"
1001 ${File} "..\..\shapes\Cisco\" "pager.shape"
1002 ${File} "..\..\shapes\Cisco\" "pbx.png"
1003 ${File} "..\..\shapes\Cisco\" "pbx.shape"
1004 ${File} "..\..\shapes\Cisco\" "pbx_switch.png"
1005 ${File} "..\..\shapes\Cisco\" "pbx_switch.shape"
1006 ${File} "..\..\shapes\Cisco\" "pc.png"
1007 ${File} "..\..\shapes\Cisco\" "pc.shape"
1008 ${File} "..\..\shapes\Cisco\" "pc_adapter_card.png"
1009 ${File} "..\..\shapes\Cisco\" "pc_adapter_card.shape"
1010 ${File} "..\..\shapes\Cisco\" "pc_card.png"
1011 ${File} "..\..\shapes\Cisco\" "pc_card.shape"
1012 ${File} "..\..\shapes\Cisco\" "pc_man.png"
1013 ${File} "..\..\shapes\Cisco\" "pc_man.shape"
1014 ${File} "..\..\shapes\Cisco\" "pc_man_left.png"
1015 ${File} "..\..\shapes\Cisco\" "pc_man_left.shape"
1016 ${File} "..\..\shapes\Cisco\" "pc_router_card.png"
1017 ${File} "..\..\shapes\Cisco\" "pc_router_card.shape"
1018 ${File} "..\..\shapes\Cisco\" "pc_software.png"
1019 ${File} "..\..\shapes\Cisco\" "pc_software.shape"
1020 ${File} "..\..\shapes\Cisco\" "pc_video.png"
1021 ${File} "..\..\shapes\Cisco\" "pc_video.shape"
1022 ${File} "..\..\shapes\Cisco\" "pc_with_router-based_software.png"
1023 ${File} "..\..\shapes\Cisco\" "pc_with_router-based_software.shape"
1024 ${File} "..\..\shapes\Cisco\" "pda.png"
1025 ${File} "..\..\shapes\Cisco\" "pda.shape"
1026 ${File} "..\..\shapes\Cisco\" "phone.png"
1027 ${File} "..\..\shapes\Cisco\" "phone.shape"
1028 ${File} "..\..\shapes\Cisco\" "phone_2.png"
1029 ${File} "..\..\shapes\Cisco\" "phone_2.shape"
1030 ${File} "..\..\shapes\Cisco\" "phone_appliance.png"
1031 ${File} "..\..\shapes\Cisco\" "phone_appliance.shape"
1032 ${File} "..\..\shapes\Cisco\" "phone_ethernet.png"
1033 ${File} "..\..\shapes\Cisco\" "phone_ethernet.shape"
1034 ${File} "..\..\shapes\Cisco\" "phone_fax.png"
1035 ${File} "..\..\shapes\Cisco\" "phone_fax.shape"
1036 ${File} "..\..\shapes\Cisco\" "phone_feature.png"
1037 ${File} "..\..\shapes\Cisco\" "phone_feature.shape"
1038 ${File} "..\..\shapes\Cisco\" "pix_firewall.png"
1039 ${File} "..\..\shapes\Cisco\" "pix_firewall.shape"
1040 ${File} "..\..\shapes\Cisco\" "pix_firewall_left.png"
1041 ${File} "..\..\shapes\Cisco\" "pix_firewall_left.shape"
1042 ${File} "..\..\shapes\Cisco\" "printer.png"
1043 ${File} "..\..\shapes\Cisco\" "printer.shape"
1044 ${File} "..\..\shapes\Cisco\" "programmable_switch.png"
1045 ${File} "..\..\shapes\Cisco\" "programmable_switch.shape"
1046 ${File} "..\..\shapes\Cisco\" "protocol_translator.png"
1047 ${File} "..\..\shapes\Cisco\" "protocol_translator.shape"
1048 ${File} "..\..\shapes\Cisco\" "pxf.png"
1049 ${File} "..\..\shapes\Cisco\" "pxf.shape"
1050 ${File} "..\..\shapes\Cisco\" "radio_tower.png"
1051 ${File} "..\..\shapes\Cisco\" "radio_tower.shape"
1052 ${File} "..\..\shapes\Cisco\" "ratemux.png"
1053 ${File} "..\..\shapes\Cisco\" "ratemux.shape"
1054 ${File} "..\..\shapes\Cisco\" "relational_database.png"
1055 ${File} "..\..\shapes\Cisco\" "relational_database.shape"
1056 ${File} "..\..\shapes\Cisco\" "repeater.png"
1057 ${File} "..\..\shapes\Cisco\" "repeater.shape"
1058 ${File} "..\..\shapes\Cisco\" "router.png"
1059 ${File} "..\..\shapes\Cisco\" "router.shape"
1060 ${File} "..\..\shapes\Cisco\" "router_in_building.png"
1061 ${File} "..\..\shapes\Cisco\" "router_in_building.shape"
1062 ${File} "..\..\shapes\Cisco\" "router_subdued.png"
1063 ${File} "..\..\shapes\Cisco\" "router_subdued.shape"
1064 ${File} "..\..\shapes\Cisco\" "router_with_firewall.png"
1065 ${File} "..\..\shapes\Cisco\" "router_with_firewall.shape"
1066 ${File} "..\..\shapes\Cisco\" "router_with_silicon_switch.png"
1067 ${File} "..\..\shapes\Cisco\" "router_with_silicon_switch.shape"
1068 ${File} "..\..\shapes\Cisco\" "route_switch_processor.png"
1069 ${File} "..\..\shapes\Cisco\" "route_switch_processor.shape"
1070 ${File} "..\..\shapes\Cisco\" "route_switch_processor_with_si.png"
1071 ${File} "..\..\shapes\Cisco\" "route_switch_processor_with_si.shape"
1072 ${File} "..\..\shapes\Cisco\" "rps.png"
1073 ${File} "..\..\shapes\Cisco\" "rps.shape"
1074 ${File} "..\..\shapes\Cisco\" "running_man.png"
1075 ${File} "..\..\shapes\Cisco\" "running_man.shape"
1076 ${File} "..\..\shapes\Cisco\" "running_man_subdued.png"
1077 ${File} "..\..\shapes\Cisco\" "running_man_subdued.shape"
1078 ${File} "..\..\shapes\Cisco\" "running_woman.png"
1079 ${File} "..\..\shapes\Cisco\" "running_woman.shape"
1080 ${File} "..\..\shapes\Cisco\" "satellite.png"
1081 ${File} "..\..\shapes\Cisco\" "satellite.shape"
1082 ${File} "..\..\shapes\Cisco\" "satellite_dish.png"
1083 ${File} "..\..\shapes\Cisco\" "satellite_dish.shape"
1084 ${File} "..\..\shapes\Cisco\" "sc2200.png"
1085 ${File} "..\..\shapes\Cisco\" "sc2200.shape"
1086 ${File} "..\..\shapes\Cisco\" "sc2200_vsc3000_host.png"
1087 ${File} "..\..\shapes\Cisco\" "sc2200_vsc3000_host.shape"
1088 ${File} "..\..\shapes\Cisco\" "scanner.png"
1089 ${File} "..\..\shapes\Cisco\" "scanner.shape"
1090 ${File} "..\..\shapes\Cisco\" "security_appliance.png"
1091 ${File} "..\..\shapes\Cisco\" "security_appliance.shape"
1092 ${File} "..\..\shapes\Cisco\" "server_switch.png"
1093 ${File} "..\..\shapes\Cisco\" "server_switch.shape"
1094 ${File} "..\..\shapes\Cisco\" "server_with_pc_router.png"
1095 ${File} "..\..\shapes\Cisco\" "server_with_pc_router.shape"
1096 ${File} "..\..\shapes\Cisco\" "service_control.png"
1097 ${File} "..\..\shapes\Cisco\" "service_control.shape"
1098 ${File} "..\..\shapes\Cisco\" "sip_proxy_server.png"
1099 ${File} "..\..\shapes\Cisco\" "sip_proxy_server.shape"
1100 ${File} "..\..\shapes\Cisco\" "sitting_woman.png"
1101 ${File} "..\..\shapes\Cisco\" "sitting_woman.shape"
1102 ${File} "..\..\shapes\Cisco\" "small_business.png"
1103 ${File} "..\..\shapes\Cisco\" "small_business.shape"
1104 ${File} "..\..\shapes\Cisco\" "small_hub.png"
1105 ${File} "..\..\shapes\Cisco\" "small_hub.shape"
1106 ${File} "..\..\shapes\Cisco\" "softphone.png"
1107 ${File} "..\..\shapes\Cisco\" "softphone.shape"
1108 ${File} "..\..\shapes\Cisco\" "software-based_router_on_file_server.png"
1109 ${File} "..\..\shapes\Cisco\" "software-based_router_on_file_server.shape"
1110 ${File} "..\..\shapes\Cisco\" "software_based_server.png"
1111 ${File} "..\..\shapes\Cisco\" "sonet_mux.png"
1112 ${File} "..\..\shapes\Cisco\" "sonet_mux.shape"
1113 ${File} "..\..\shapes\Cisco\" "speaker.png"
1114 ${File} "..\..\shapes\Cisco\" "speaker.shape"
1115 ${File} "..\..\shapes\Cisco\" "ssl_terminator.png"
1116 ${File} "..\..\shapes\Cisco\" "ssl_terminator.shape"
1117 ${File} "..\..\shapes\Cisco\" "standing_man.png"
1118 ${File} "..\..\shapes\Cisco\" "standing_man.shape"
1119 ${File} "..\..\shapes\Cisco\" "standing_woman.png"
1120 ${File} "..\..\shapes\Cisco\" "standing_woman.shape"
1121 ${File} "..\..\shapes\Cisco\" "stb.png"
1122 ${File} "..\..\shapes\Cisco\" "stb.shape"
1123 ${File} "..\..\shapes\Cisco\" "storage_array.png"
1124 ${File} "..\..\shapes\Cisco\" "storage_array.shape"
1125 ${File} "..\..\shapes\Cisco\" "storage_router.png"
1126 ${File} "..\..\shapes\Cisco\" "storage_router.shape"
1127 ${File} "..\..\shapes\Cisco\" "storage_solution_engine.png"
1128 ${File} "..\..\shapes\Cisco\" "storage_solution_engine.shape"
1129 ${File} "..\..\shapes\Cisco\" "stp.png"
1130 ${File} "..\..\shapes\Cisco\" "stp.shape"
1131 ${File} "..\..\shapes\Cisco\" "sun_workstation.png"
1132 ${File} "..\..\shapes\Cisco\" "sun_workstation.shape"
1133 ${File} "..\..\shapes\Cisco\" "supercomputer.png"
1134 ${File} "..\..\shapes\Cisco\" "supercomputer.shape"
1135 ${File} "..\..\shapes\Cisco\" "svx.png"
1136 ${File} "..\..\shapes\Cisco\" "svx.shape"
1137 ${File} "..\..\shapes\Cisco\" "switch_processor.png"
1138 ${File} "..\..\shapes\Cisco\" "switch_processor.shape"
1139 ${File} "..\..\shapes\Cisco\" "system_controller.png"
1140 ${File} "..\..\shapes\Cisco\" "system_controller.shape"
1141 ${File} "..\..\shapes\Cisco\" "tablet.png"
1142 ${File} "..\..\shapes\Cisco\" "tablet.shape"
1143 ${File} "..\..\shapes\Cisco\" "tape_array.png"
1144 ${File} "..\..\shapes\Cisco\" "tape_array.shape"
1145 ${File} "..\..\shapes\Cisco\" "tdm_router.png"
1146 ${File} "..\..\shapes\Cisco\" "tdm_router.shape"
1147 ${File} "..\..\shapes\Cisco\" "telecommuter.png"
1148 ${File} "..\..\shapes\Cisco\" "telecommuter.shape"
1149 ${File} "..\..\shapes\Cisco\" "telecommuter_house.png"
1150 ${File} "..\..\shapes\Cisco\" "telecommuter_house.shape"
1151 ${File} "..\..\shapes\Cisco\" "telecommuter_house_router.png"
1152 ${File} "..\..\shapes\Cisco\" "telecommuter_house_router.shape"
1153 ${File} "..\..\shapes\Cisco\" "telecommuter_house_subdued.png"
1154 ${File} "..\..\shapes\Cisco\" "telecommuter_house_subdued.shape"
1155 ${File} "..\..\shapes\Cisco\" "terminal.png"
1156 ${File} "..\..\shapes\Cisco\" "terminal.shape"
1157 ${File} "..\..\shapes\Cisco\" "terminal_server.png"
1158 ${File} "..\..\shapes\Cisco\" "terminal_server.shape"
1159 ${File} "..\..\shapes\Cisco\" "tokenring.png"
1160 ${File} "..\..\shapes\Cisco\" "tokenring.shape"
1161 ${File} "..\..\shapes\Cisco\" "transpath.png"
1162 ${File} "..\..\shapes\Cisco\" "transpath.shape"
1163 ${File} "..\..\shapes\Cisco\" "truck.png"
1164 ${File} "..\..\shapes\Cisco\" "truck.shape"
1165 ${File} "..\..\shapes\Cisco\" "turret.png"
1166 ${File} "..\..\shapes\Cisco\" "turret.shape"
1167 ${File} "..\..\shapes\Cisco\" "tv.png"
1168 ${File} "..\..\shapes\Cisco\" "tv.shape"
1169 ${File} "..\..\shapes\Cisco\" "ubr910.png"
1170 ${File} "..\..\shapes\Cisco\" "ubr910_cable_dsu.png"
1171 ${File} "..\..\shapes\Cisco\" "ubr910_cable_dsu.shape"
1172 ${File} "..\..\shapes\Cisco\" "umg_series.png"
1173 ${File} "..\..\shapes\Cisco\" "umg_series.shape"
1174 ${File} "..\..\shapes\Cisco\" "unity_express.png"
1175 ${File} "..\..\shapes\Cisco\" "unity_express.shape"
1176 ${File} "..\..\shapes\Cisco\" "unity_server.png"
1177 ${File} "..\..\shapes\Cisco\" "unity_server.shape"
1178 ${File} "..\..\shapes\Cisco\" "universal_gateway.png"
1179 ${File} "..\..\shapes\Cisco\" "universal_gateway.shape"
1180 ${File} "..\..\shapes\Cisco\" "university.png"
1181 ${File} "..\..\shapes\Cisco\" "university.shape"
1182 ${File} "..\..\shapes\Cisco\" "ups.png"
1183 ${File} "..\..\shapes\Cisco\" "ups.shape"
1184 ${File} "..\..\shapes\Cisco\" "video_camera.png"
1185 ${File} "..\..\shapes\Cisco\" "video_camera.shape"
1186 ${File} "..\..\shapes\Cisco\" "video_camera_right.png"
1187 ${File} "..\..\shapes\Cisco\" "video_camera_right.shape"
1188 ${File} "..\..\shapes\Cisco\" "vip.png"
1189 ${File} "..\..\shapes\Cisco\" "vip.shape"
1190 ${File} "..\..\shapes\Cisco\" "virtual_layer_switch.png"
1191 ${File} "..\..\shapes\Cisco\" "virtual_layer_switch.shape"
1192 ${File} "..\..\shapes\Cisco\" "vn2900.png"
1193 ${File} "..\..\shapes\Cisco\" "vn2900.shape"
1194 ${File} "..\..\shapes\Cisco\" "vn5900.png"
1195 ${File} "..\..\shapes\Cisco\" "vn5900.shape"
1196 ${File} "..\..\shapes\Cisco\" "vn5902.png"
1197 ${File} "..\..\shapes\Cisco\" "vn5902.shape"
1198 ${File} "..\..\shapes\Cisco\" "voice-enabled_access_server.png"
1199 ${File} "..\..\shapes\Cisco\" "voice-enabled_access_server.shape"
1200 ${File} "..\..\shapes\Cisco\" "voice-enabled_atm_switch.png"
1201 ${File} "..\..\shapes\Cisco\" "voice-enabled_atm_switch.shape"
1202 ${File} "..\..\shapes\Cisco\" "voice-enabled_router.png"
1203 ${File} "..\..\shapes\Cisco\" "voice-enabled_router.shape"
1204 ${File} "..\..\shapes\Cisco\" "voice_atm_switch.png"
1205 ${File} "..\..\shapes\Cisco\" "voice_commserver.png"
1206 ${File} "..\..\shapes\Cisco\" "voice_router.png"
1207 ${File} "..\..\shapes\Cisco\" "voice_switch.png"
1208 ${File} "..\..\shapes\Cisco\" "voice_switch2.png"
1209 ${File} "..\..\shapes\Cisco\" "voice_switch2.shape"
1210 ${File} "..\..\shapes\Cisco\" "vpn_concentrator.png"
1211 ${File} "..\..\shapes\Cisco\" "vpn_concentrator.shape"
1212 ${File} "..\..\shapes\Cisco\" "vpn_gateway.png"
1213 ${File} "..\..\shapes\Cisco\" "vpn_gateway.shape"
1214 ${File} "..\..\shapes\Cisco\" "vsc3000.png"
1215 ${File} "..\..\shapes\Cisco\" "vsc3000.shape"
1216 ${File} "..\..\shapes\Cisco\" "wan.png"
1217 ${File} "..\..\shapes\Cisco\" "wan.shape"
1218 ${File} "..\..\shapes\Cisco\" "wavelength_router.png"
1219 ${File} "..\..\shapes\Cisco\" "wavelength_router.shape"
1220 ${File} "..\..\shapes\Cisco\" "wdm.png"
1221 ${File} "..\..\shapes\Cisco\" "wdm.shape"
1222 ${File} "..\..\shapes\Cisco\" "web_browser.png"
1223 ${File} "..\..\shapes\Cisco\" "web_browser.shape"
1224 ${File} "..\..\shapes\Cisco\" "web_cluster.png"
1225 ${File} "..\..\shapes\Cisco\" "web_cluster.shape"
1226 ${File} "..\..\shapes\Cisco\" "wi-fi_tag.png"
1227 ${File} "..\..\shapes\Cisco\" "wi-fi_tag.shape"
1228 ${File} "..\..\shapes\Cisco\" "wireless.png"
1229 ${File} "..\..\shapes\Cisco\" "wireless.shape"
1230 ${File} "..\..\shapes\Cisco\" "wireless_bridge.png"
1231 ${File} "..\..\shapes\Cisco\" "wireless_bridge.shape"
1232 ${File} "..\..\shapes\Cisco\" "wireless_connectivity.png"
1233 ${File} "..\..\shapes\Cisco\" "wireless_connectivity.shape"
1234 ${File} "..\..\shapes\Cisco\" "wireless_location_appliance.png"
1235 ${File} "..\..\shapes\Cisco\" "wireless_location_appliance.shape"
1236 ${File} "..\..\shapes\Cisco\" "wireless_router.png"
1237 ${File} "..\..\shapes\Cisco\" "wireless_router.shape"
1238 ${File} "..\..\shapes\Cisco\" "wireless_transport.png"
1239 ${File} "..\..\shapes\Cisco\" "wireless_transport.shape"
1240 ${File} "..\..\shapes\Cisco\" "wlan_controller.png"
1241 ${File} "..\..\shapes\Cisco\" "wlan_controller.shape"
1242 ${File} "..\..\shapes\Cisco\" "woman.png"
1243 ${File} "..\..\shapes\Cisco\" "woman.shape"
1244 ${File} "..\..\shapes\Cisco\" "woman_blue.png"
1245 ${File} "..\..\shapes\Cisco\" "woman_blue.shape"
1246 ${File} "..\..\shapes\Cisco\" "woman_gold.png"
1247 ${File} "..\..\shapes\Cisco\" "woman_gold.shape"
1248 ${File} "..\..\shapes\Cisco\" "woman_red.png"
1249 ${File} "..\..\shapes\Cisco\" "woman_red.shape"
1250 ${File} "..\..\shapes\Cisco\" "workgroup_director.png"
1251 ${File} "..\..\shapes\Cisco\" "workgroup_director.shape"
1252 ${File} "..\..\shapes\Cisco\" "workgroup_fcis.png"
1253 ${File} "..\..\shapes\Cisco\" "workgroup_fcis.shape"
1254 ${File} "..\..\shapes\Cisco\" "workgroup_switch.png"
1255 ${File} "..\..\shapes\Cisco\" "workgroup_switch.shape"
1256 ${File} "..\..\shapes\Cisco\" "workgroup_switch_subdued.png"
1257 ${File} "..\..\shapes\Cisco\" "workgroup_switch_subdued.shape"
1258 ${File} "..\..\shapes\Cisco\" "workgroup_switch_voice-enabled.png"
1259 ${File} "..\..\shapes\Cisco\" "workgroup_switch_voice-enabled.shape"
1260 ${File} "..\..\shapes\Cisco\" "workstation.png"
1261 ${File} "..\..\shapes\Cisco\" "workstation.shape"
1262 ${File} "..\..\shapes\Cisco\" "www_server.png"
1263 ${File} "..\..\shapes\Cisco\" "www_server.shape"
1264 ${SetOutPath} "$INSTDIR\shapes\Civil"
1265 ${File} "..\..\shapes\Civil\" "bvrest.png"
1266 ${File} "..\..\shapes\Civil\" "bvrest.shape"
1267 ${File} "..\..\shapes\Civil\" "bvrest.xpm"
1268 ${File} "..\..\shapes\Civil\" "civil_aerator.png"
1269 ${File} "..\..\shapes\Civil\" "civil_aerator.shape"
1270 ${File} "..\..\shapes\Civil\" "civil_aerator.xpm"
1271 ${File} "..\..\shapes\Civil\" "civil_arrow_right.png"
1272 ${File} "..\..\shapes\Civil\" "civil_arrow_right.shape"
1273 ${File} "..\..\shapes\Civil\" "civil_arrow_right.xpm"
1274 ${File} "..\..\shapes\Civil\" "civil_arrow_up.png"
1275 ${File} "..\..\shapes\Civil\" "civil_arrow_up.shape"
1276 ${File} "..\..\shapes\Civil\" "civil_arrow_up.xpm"
1277 ${File} "..\..\shapes\Civil\" "civil_backflow_preventer.png"
1278 ${File} "..\..\shapes\Civil\" "civil_backflow_preventer.shape"
1279 ${File} "..\..\shapes\Civil\" "civil_backflow_preventer.xpm"
1280 ${File} "..\..\shapes\Civil\" "civil_basin.png"
1281 ${File} "..\..\shapes\Civil\" "civil_basin.shape"
1282 ${File} "..\..\shapes\Civil\" "civil_basin.xpm"
1283 ${File} "..\..\shapes\Civil\" "civil_container.png"
1284 ${File} "..\..\shapes\Civil\" "civil_container.shape"
1285 ${File} "..\..\shapes\Civil\" "civil_container.xpm"
1286 ${File} "..\..\shapes\Civil\" "civil_final-settling_basin.png"
1287 ${File} "..\..\shapes\Civil\" "civil_final-settling_basin.shape"
1288 ${File} "..\..\shapes\Civil\" "civil_final-settling_basin.xpm"
1289 ${File} "..\..\shapes\Civil\" "civil_frequency_converter.png"
1290 ${File} "..\..\shapes\Civil\" "civil_frequency_converter.shape"
1291 ${File} "..\..\shapes\Civil\" "civil_frequency_converter.xpm"
1292 ${File} "..\..\shapes\Civil\" "civil_gas_bottle.png"
1293 ${File} "..\..\shapes\Civil\" "civil_gas_bottle.shape"
1294 ${File} "..\..\shapes\Civil\" "civil_gas_bottle.xpm"
1295 ${File} "..\..\shapes\Civil\" "civil_horizontal_limiting_line.png"
1296 ${File} "..\..\shapes\Civil\" "civil_horizontal_limiting_line.shape"
1297 ${File} "..\..\shapes\Civil\" "civil_horizontal_limiting_line.xpm"
1298 ${File} "..\..\shapes\Civil\" "civil_horizontal_valve.png"
1299 ${File} "..\..\shapes\Civil\" "civil_horizontal_valve.shape"
1300 ${File} "..\..\shapes\Civil\" "civil_horizontal_valve.xpm"
1301 ${File} "..\..\shapes\Civil\" "civil_motor.png"
1302 ${File} "..\..\shapes\Civil\" "civil_motor.shape"
1303 ${File} "..\..\shapes\Civil\" "civil_motor.xpm"
1304 ${File} "..\..\shapes\Civil\" "civil_preliminary_clarification_tank.png"
1305 ${File} "..\..\shapes\Civil\" "civil_preliminary_clarification_tank.shape"
1306 ${File} "..\..\shapes\Civil\" "civil_preliminary_clarification_tank.xpm"
1307 ${File} "..\..\shapes\Civil\" "civil_rotor.png"
1308 ${File} "..\..\shapes\Civil\" "civil_rotor.shape"
1309 ${File} "..\..\shapes\Civil\" "civil_rotor.xpm"
1310 ${File} "..\..\shapes\Civil\" "civil_soil.png"
1311 ${File} "..\..\shapes\Civil\" "civil_soil.shape"
1312 ${File} "..\..\shapes\Civil\" "civil_soil.xpm"
1313 ${File} "..\..\shapes\Civil\" "civil_vertical_limiting_line.png"
1314 ${File} "..\..\shapes\Civil\" "civil_vertical_limiting_line.shape"
1315 ${File} "..\..\shapes\Civil\" "civil_vertical_limiting_line.xpm"
1316 ${File} "..\..\shapes\Civil\" "civil_vertical_propeller.png"
1317 ${File} "..\..\shapes\Civil\" "civil_vertical_propeller.shape"
1318 ${File} "..\..\shapes\Civil\" "civil_vertical_propeller.xpm"
1319 ${File} "..\..\shapes\Civil\" "hcompressor.png"
1320 ${File} "..\..\shapes\Civil\" "hcompressor.shape"
1321 ${File} "..\..\shapes\Civil\" "hcompressor.xpm"
1322 ${File} "..\..\shapes\Civil\" "hpump.png"
1323 ${File} "..\..\shapes\Civil\" "hpump.shape"
1324 ${File} "..\..\shapes\Civil\" "hpump.xpm"
1325 ${File} "..\..\shapes\Civil\" "hrest.png"
1326 ${File} "..\..\shapes\Civil\" "hrest.shape"
1327 ${File} "..\..\shapes\Civil\" "hrest.xpm"
1328 ${File} "..\..\shapes\Civil\" "line.png"
1329 ${File} "..\..\shapes\Civil\" "line.shape"
1330 ${File} "..\..\shapes\Civil\" "line.xpm"
1331 ${File} "..\..\shapes\Civil\" "vcompressor.png"
1332 ${File} "..\..\shapes\Civil\" "vcompressor.shape"
1333 ${File} "..\..\shapes\Civil\" "vcompressor.xpm"
1334 ${File} "..\..\shapes\Civil\" "vpump.png"
1335 ${File} "..\..\shapes\Civil\" "vpump.shape"
1336 ${File} "..\..\shapes\Civil\" "vpump.xpm"
1337 ${File} "..\..\shapes\Civil\" "vrest.png"
1338 ${File} "..\..\shapes\Civil\" "vrest.shape"
1339 ${File} "..\..\shapes\Civil\" "vrest.xpm"
1340 ${File} "..\..\shapes\Civil\" "water_level.png"
1341 ${File} "..\..\shapes\Civil\" "water_level.shape"
1342 ${File} "..\..\shapes\Civil\" "water_level.xpm"
1343 ${SetOutPath} "$INSTDIR\shapes\Contact"
1344 ${File} "..\..\shapes\Contact\" "c_if.png"
1345 ${File} "..\..\shapes\Contact\" "c_if.shape"
1346 ${File} "..\..\shapes\Contact\" "c_if.xpm"
1347 ${File} "..\..\shapes\Contact\" "c_ifnot.png"
1348 ${File} "..\..\shapes\Contact\" "c_ifnot.shape"
1349 ${File} "..\..\shapes\Contact\" "c_ifnot.xpm"
1350 ${File} "..\..\shapes\Contact\" "c_lamp.png"
1351 ${File} "..\..\shapes\Contact\" "c_lamp.shape"
1352 ${File} "..\..\shapes\Contact\" "c_lamp.xpm"
1353 ${File} "..\..\shapes\Contact\" "c_relay.png"
1354 ${File} "..\..\shapes\Contact\" "c_relay.shape"
1355 ${File} "..\..\shapes\Contact\" "c_relay.xpm"
1356 ${File} "..\..\shapes\Contact\" "l_if.png"
1357 ${File} "..\..\shapes\Contact\" "l_if.shape"
1358 ${File} "..\..\shapes\Contact\" "l_if.xpm"
1359 ${File} "..\..\shapes\Contact\" "l_ifnot.png"
1360 ${File} "..\..\shapes\Contact\" "l_ifnot.shape"
1361 ${File} "..\..\shapes\Contact\" "l_ifnot.xpm"
1362 ${File} "..\..\shapes\Contact\" "l_out.png"
1363 ${File} "..\..\shapes\Contact\" "l_out.shape"
1364 ${File} "..\..\shapes\Contact\" "l_out.xpm"
1365 ${File} "..\..\shapes\Contact\" "l_outj.png"
1366 ${File} "..\..\shapes\Contact\" "l_outj.shape"
1367 ${File} "..\..\shapes\Contact\" "l_outj.xpm"
1368 ${File} "..\..\shapes\Contact\" "l_outnot.png"
1369 ${File} "..\..\shapes\Contact\" "l_outnot.shape"
1370 ${File} "..\..\shapes\Contact\" "l_outnot.xpm"
1371 ${File} "..\..\shapes\Contact\" "l_outr.png"
1372 ${File} "..\..\shapes\Contact\" "l_outr.shape"
1373 ${File} "..\..\shapes\Contact\" "l_outr.xpm"
1374 ${File} "..\..\shapes\Contact\" "l_outrcep.png"
1375 ${File} "..\..\shapes\Contact\" "l_outrcep.shape"
1376 ${File} "..\..\shapes\Contact\" "l_outrcep.xpm"
1377 ${File} "..\..\shapes\Contact\" "l_outs.png"
1378 ${File} "..\..\shapes\Contact\" "l_outs.shape"
1379 ${File} "..\..\shapes\Contact\" "l_outs.xpm"
1380 ${File} "..\..\shapes\Contact\" "l_sout.png"
1381 ${File} "..\..\shapes\Contact\" "l_sout.shape"
1382 ${File} "..\..\shapes\Contact\" "l_sout.xpm"
1383 ${File} "..\..\shapes\Contact\" "l_soutnot.png"
1384 ${File} "..\..\shapes\Contact\" "l_soutnot.shape"
1385 ${File} "..\..\shapes\Contact\" "l_soutnot.xpm"
1386 ${File} "..\..\shapes\Contact\" "l_soutr.png"
1387 ${File} "..\..\shapes\Contact\" "l_soutr.shape"
1388 ${File} "..\..\shapes\Contact\" "l_soutr.xpm"
1389 ${File} "..\..\shapes\Contact\" "l_souts.png"
1390 ${File} "..\..\shapes\Contact\" "l_souts.shape"
1391 ${File} "..\..\shapes\Contact\" "l_souts.xpm"
1392 ${SetOutPath} "$INSTDIR\shapes\Cybernetics"
1393 ${File} "..\..\shapes\Cybernetics\" "b-integrator.png"
1394 ${File} "..\..\shapes\Cybernetics\" "b-integrator.shape"
1395 ${File} "..\..\shapes\Cybernetics\" "b-minus.png"
1396 ${File} "..\..\shapes\Cybernetics\" "b-minus.shape"
1397 ${File} "..\..\shapes\Cybernetics\" "b-sens.png"
1398 ${File} "..\..\shapes\Cybernetics\" "b-sens.shape"
1399 ${File} "..\..\shapes\Cybernetics\" "delta-t.png"
1400 ${File} "..\..\shapes\Cybernetics\" "delta-t.shape"
1401 ${File} "..\..\shapes\Cybernetics\" "empty-func.png"
1402 ${File} "..\..\shapes\Cybernetics\" "empty-func.shape"
1403 ${File} "..\..\shapes\Cybernetics\" "factor-0to-1.png"
1404 ${File} "..\..\shapes\Cybernetics\" "factor-0to-1.shape"
1405 ${File} "..\..\shapes\Cybernetics\" "factor-0to1.png"
1406 ${File} "..\..\shapes\Cybernetics\" "factor-0to1.shape"
1407 ${File} "..\..\shapes\Cybernetics\" "factor-greater1.png"
1408 ${File} "..\..\shapes\Cybernetics\" "factor-greater1.shape"
1409 ${File} "..\..\shapes\Cybernetics\" "factor-smaller-1.png"
1410 ${File} "..\..\shapes\Cybernetics\" "factor-smaller-1.shape"
1411 ${File} "..\..\shapes\Cybernetics\" "full-wave-rectifier.png"
1412 ${File} "..\..\shapes\Cybernetics\" "full-wave-rectifier.shape"
1413 ${File} "..\..\shapes\Cybernetics\" "half-wave-rectifier.png"
1414 ${File} "..\..\shapes\Cybernetics\" "half-wave-rectifier.shape"
1415 ${File} "..\..\shapes\Cybernetics\" "hpf.png"
1416 ${File} "..\..\shapes\Cybernetics\" "hpf.shape"
1417 ${File} "..\..\shapes\Cybernetics\" "l-integrator.png"
1418 ${File} "..\..\shapes\Cybernetics\" "l-integrator.shape"
1419 ${File} "..\..\shapes\Cybernetics\" "l-minus.png"
1420 ${File} "..\..\shapes\Cybernetics\" "l-minus.shape"
1421 ${File} "..\..\shapes\Cybernetics\" "l-sens.png"
1422 ${File} "..\..\shapes\Cybernetics\" "l-sens.shape"
1423 ${File} "..\..\shapes\Cybernetics\" "lpf.png"
1424 ${File} "..\..\shapes\Cybernetics\" "lpf.shape"
1425 ${File} "..\..\shapes\Cybernetics\" "negative-shift.png"
1426 ${File} "..\..\shapes\Cybernetics\" "negative-shift.shape"
1427 ${File} "..\..\shapes\Cybernetics\" "positive-shift.png"
1428 ${File} "..\..\shapes\Cybernetics\" "positive-shift.shape"
1429 ${File} "..\..\shapes\Cybernetics\" "product.png"
1430 ${File} "..\..\shapes\Cybernetics\" "product.shape"
1431 ${File} "..\..\shapes\Cybernetics\" "r-integrator.png"
1432 ${File} "..\..\shapes\Cybernetics\" "r-integrator.shape"
1433 ${File} "..\..\shapes\Cybernetics\" "r-minus.png"
1434 ${File} "..\..\shapes\Cybernetics\" "r-minus.shape"
1435 ${File} "..\..\shapes\Cybernetics\" "r-sens.png"
1436 ${File} "..\..\shapes\Cybernetics\" "r-sens.shape"
1437 ${File} "..\..\shapes\Cybernetics\" "relay.png"
1438 ${File} "..\..\shapes\Cybernetics\" "relay.shape"
1439 ${File} "..\..\shapes\Cybernetics\" "saturation.png"
1440 ${File} "..\..\shapes\Cybernetics\" "saturation.shape"
1441 ${File} "..\..\shapes\Cybernetics\" "sigmoid.png"
1442 ${File} "..\..\shapes\Cybernetics\" "sigmoid.shape"
1443 ${File} "..\..\shapes\Cybernetics\" "sine.png"
1444 ${File} "..\..\shapes\Cybernetics\" "sine.shape"
1445 ${File} "..\..\shapes\Cybernetics\" "sum.png"
1446 ${File} "..\..\shapes\Cybernetics\" "sum.shape"
1447 ${File} "..\..\shapes\Cybernetics\" "t-integrator.png"
1448 ${File} "..\..\shapes\Cybernetics\" "t-integrator.shape"
1449 ${File} "..\..\shapes\Cybernetics\" "t-minus.png"
1450 ${File} "..\..\shapes\Cybernetics\" "t-minus.shape"
1451 ${File} "..\..\shapes\Cybernetics\" "t-sens.png"
1452 ${File} "..\..\shapes\Cybernetics\" "t-sens.shape"
1453 ${SetOutPath} "$INSTDIR\shapes\Electric"
1454 ${File} "..\..\shapes\Electric\" "cnx.png"
1455 ${File} "..\..\shapes\Electric\" "cnx.shape"
1456 ${File} "..\..\shapes\Electric\" "cnx.xpm"
1457 ${File} "..\..\shapes\Electric\" "command.png"
1458 ${File} "..\..\shapes\Electric\" "command.shape"
1459 ${File} "..\..\shapes\Electric\" "command.xpm"
1460 ${File} "..\..\shapes\Electric\" "contact_f.png"
1461 ${File} "..\..\shapes\Electric\" "contact_f.shape"
1462 ${File} "..\..\shapes\Electric\" "contact_f.xpm"
1463 ${File} "..\..\shapes\Electric\" "contact_o.png"
1464 ${File} "..\..\shapes\Electric\" "contact_o.shape"
1465 ${File} "..\..\shapes\Electric\" "contact_o.xpm"
1466 ${File} "..\..\shapes\Electric\" "intpos_f.png"
1467 ${File} "..\..\shapes\Electric\" "intpos_f.shape"
1468 ${File} "..\..\shapes\Electric\" "intpos_f.xpm"
1469 ${File} "..\..\shapes\Electric\" "intpos_o.png"
1470 ${File} "..\..\shapes\Electric\" "intpos_o.shape"
1471 ${File} "..\..\shapes\Electric\" "intpos_o.xpm"
1472 ${File} "..\..\shapes\Electric\" "lamp.png"
1473 ${File} "..\..\shapes\Electric\" "lamp.shape"
1474 ${File} "..\..\shapes\Electric\" "lamp.xpm"
1475 ${File} "..\..\shapes\Electric\" "relay.png"
1476 ${File} "..\..\shapes\Electric\" "relay.shape"
1477 ${File} "..\..\shapes\Electric\" "relay.xpm"
1478 ${File} "..\..\shapes\Electric\" "vcommand.png"
1479 ${File} "..\..\shapes\Electric\" "vcommand.shape"
1480 ${File} "..\..\shapes\Electric\" "vcommand.xpm"
1481 ${File} "..\..\shapes\Electric\" "vcontact_f.png"
1482 ${File} "..\..\shapes\Electric\" "vcontact_f.shape"
1483 ${File} "..\..\shapes\Electric\" "vcontact_f.xpm"
1484 ${File} "..\..\shapes\Electric\" "vcontact_o.png"
1485 ${File} "..\..\shapes\Electric\" "vcontact_o.shape"
1486 ${File} "..\..\shapes\Electric\" "vcontact_o.xpm"
1487 ${File} "..\..\shapes\Electric\" "vintpos_f.png"
1488 ${File} "..\..\shapes\Electric\" "vintpos_f.shape"
1489 ${File} "..\..\shapes\Electric\" "vintpos_f.xpm"
1490 ${File} "..\..\shapes\Electric\" "vintpos_o.png"
1491 ${File} "..\..\shapes\Electric\" "vintpos_o.shape"
1492 ${File} "..\..\shapes\Electric\" "vintpos_o.xpm"
1493 ${File} "..\..\shapes\Electric\" "vlamp.png"
1494 ${File} "..\..\shapes\Electric\" "vlamp.shape"
1495 ${File} "..\..\shapes\Electric\" "vlamp.xpm"
1496 ${File} "..\..\shapes\Electric\" "vrelay.png"
1497 ${File} "..\..\shapes\Electric\" "vrelay.shape"
1498 ${File} "..\..\shapes\Electric\" "vrelay.xpm"
1499 ${SetOutPath} "$INSTDIR\shapes\flowchart"
1500 ${File} "..\..\shapes\flowchart\" "collate.png"
1501 ${File} "..\..\shapes\flowchart\" "collate.shape"
1502 ${File} "..\..\shapes\flowchart\" "collate.xpm"
1503 ${File} "..\..\shapes\flowchart\" "delay.png"
1504 ${File} "..\..\shapes\flowchart\" "delay.shape"
1505 ${File} "..\..\shapes\flowchart\" "delay.xpm"
1506 ${File} "..\..\shapes\flowchart\" "display.png"
1507 ${File} "..\..\shapes\flowchart\" "display.shape"
1508 ${File} "..\..\shapes\flowchart\" "display.xpm"
1509 ${File} "..\..\shapes\flowchart\" "document.png"
1510 ${File} "..\..\shapes\flowchart\" "document.shape"
1511 ${File} "..\..\shapes\flowchart\" "document.xpm"
1512 ${File} "..\..\shapes\flowchart\" "extract.png"
1513 ${File} "..\..\shapes\flowchart\" "extract.shape"
1514 ${File} "..\..\shapes\flowchart\" "extract.xpm"
1515 ${File} "..\..\shapes\flowchart\" "intstorage.png"
1516 ${File} "..\..\shapes\flowchart\" "intstorage.shape"
1517 ${File} "..\..\shapes\flowchart\" "intstorage.xpm"
1518 ${File} "..\..\shapes\flowchart\" "magdisk.png"
1519 ${File} "..\..\shapes\flowchart\" "magdisk.shape"
1520 ${File} "..\..\shapes\flowchart\" "magdisk.xpm"
1521 ${File} "..\..\shapes\flowchart\" "magdrum.png"
1522 ${File} "..\..\shapes\flowchart\" "magdrum.shape"
1523 ${File} "..\..\shapes\flowchart\" "magdrum.xpm"
1524 ${File} "..\..\shapes\flowchart\" "magtape.png"
1525 ${File} "..\..\shapes\flowchart\" "magtape.shape"
1526 ${File} "..\..\shapes\flowchart\" "magtape.xpm"
1527 ${File} "..\..\shapes\flowchart\" "manualinput.png"
1528 ${File} "..\..\shapes\flowchart\" "manualinput.shape"
1529 ${File} "..\..\shapes\flowchart\" "manualinput.xpm"
1530 ${File} "..\..\shapes\flowchart\" "manualop.png"
1531 ${File} "..\..\shapes\flowchart\" "manualop.shape"
1532 ${File} "..\..\shapes\flowchart\" "manualop.xpm"
1533 ${File} "..\..\shapes\flowchart\" "merge.png"
1534 ${File} "..\..\shapes\flowchart\" "merge.shape"
1535 ${File} "..\..\shapes\flowchart\" "merge.xpm"
1536 ${File} "..\..\shapes\flowchart\" "offlinestore.png"
1537 ${File} "..\..\shapes\flowchart\" "offlinestore.shape"
1538 ${File} "..\..\shapes\flowchart\" "offlinestore.xpm"
1539 ${File} "..\..\shapes\flowchart\" "offpageconn.png"
1540 ${File} "..\..\shapes\flowchart\" "offpageconn.shape"
1541 ${File} "..\..\shapes\flowchart\" "offpageconn.xpm"
1542 ${File} "..\..\shapes\flowchart\" "or.png"
1543 ${File} "..\..\shapes\flowchart\" "or.shape"
1544 ${File} "..\..\shapes\flowchart\" "or.xpm"
1545 ${File} "..\..\shapes\flowchart\" "predefdproc.png"
1546 ${File} "..\..\shapes\flowchart\" "predefdproc.shape"
1547 ${File} "..\..\shapes\flowchart\" "predefdproc.xpm"
1548 ${File} "..\..\shapes\flowchart\" "preparation.png"
1549 ${File} "..\..\shapes\flowchart\" "preparation.shape"
1550 ${File} "..\..\shapes\flowchart\" "preparation.xpm"
1551 ${File} "..\..\shapes\flowchart\" "punchedcard.png"
1552 ${File} "..\..\shapes\flowchart\" "punchedcard.shape"
1553 ${File} "..\..\shapes\flowchart\" "punchedcard.xpm"
1554 ${File} "..\..\shapes\flowchart\" "punchedtape.png"
1555 ${File} "..\..\shapes\flowchart\" "punchedtape.shape"
1556 ${File} "..\..\shapes\flowchart\" "punchedtape.xpm"
1557 ${File} "..\..\shapes\flowchart\" "sort.png"
1558 ${File} "..\..\shapes\flowchart\" "sort.shape"
1559 ${File} "..\..\shapes\flowchart\" "sort.xpm"
1560 ${File} "..\..\shapes\flowchart\" "sumjunction.png"
1561 ${File} "..\..\shapes\flowchart\" "sumjunction.shape"
1562 ${File} "..\..\shapes\flowchart\" "sumjunction.xpm"
1563 ${File} "..\..\shapes\flowchart\" "terminal.png"
1564 ${File} "..\..\shapes\flowchart\" "terminal.shape"
1565 ${File} "..\..\shapes\flowchart\" "terminal.xpm"
1566 ${File} "..\..\shapes\flowchart\" "transaction.png"
1567 ${File} "..\..\shapes\flowchart\" "transaction.shape"
1568 ${File} "..\..\shapes\flowchart\" "transaction.xpm"
1569 ${File} "..\..\shapes\flowchart\" "transmittape.png"
1570 ${File} "..\..\shapes\flowchart\" "transmittape.shape"
1571 ${File} "..\..\shapes\flowchart\" "transmittape.xpm"
1572 ${SetOutPath} "$INSTDIR\shapes\Gane_and_Sarson"
1573 ${File} "..\..\shapes\Gane_and_Sarson\" "alt-entity.png"
1574 ${File} "..\..\shapes\Gane_and_Sarson\" "alt-entity.shape"
1575 ${File} "..\..\shapes\Gane_and_Sarson\" "data_store.png"
1576 ${File} "..\..\shapes\Gane_and_Sarson\" "data_store.shape"
1577 ${File} "..\..\shapes\Gane_and_Sarson\" "entity.png"
1578 ${File} "..\..\shapes\Gane_and_Sarson\" "entity.shape"
1579 ${File} "..\..\shapes\Gane_and_Sarson\" "process.png"
1580 ${File} "..\..\shapes\Gane_and_Sarson\" "process.shape"
1581 ${SetOutPath} "$INSTDIR\shapes\jigsaw"
1582 ${File} "..\..\shapes\jigsaw\" "part_iiii.png"
1583 ${File} "..\..\shapes\jigsaw\" "part_iiii.shape"
1584 ${File} "..\..\shapes\jigsaw\" "part_iiii.xpm"
1585 ${File} "..\..\shapes\jigsaw\" "part_iiio.png"
1586 ${File} "..\..\shapes\jigsaw\" "part_iiio.shape"
1587 ${File} "..\..\shapes\jigsaw\" "part_iiio.xpm"
1588 ${File} "..\..\shapes\jigsaw\" "part_iioi.png"
1589 ${File} "..\..\shapes\jigsaw\" "part_iioi.shape"
1590 ${File} "..\..\shapes\jigsaw\" "part_iioi.xpm"
1591 ${File} "..\..\shapes\jigsaw\" "part_iioo.png"
1592 ${File} "..\..\shapes\jigsaw\" "part_iioo.shape"
1593 ${File} "..\..\shapes\jigsaw\" "part_iioo.xpm"
1594 ${File} "..\..\shapes\jigsaw\" "part_ioii.png"
1595 ${File} "..\..\shapes\jigsaw\" "part_ioii.shape"
1596 ${File} "..\..\shapes\jigsaw\" "part_ioii.xpm"
1597 ${File} "..\..\shapes\jigsaw\" "part_ioio.png"
1598 ${File} "..\..\shapes\jigsaw\" "part_ioio.shape"
1599 ${File} "..\..\shapes\jigsaw\" "part_ioio.xpm"
1600 ${File} "..\..\shapes\jigsaw\" "part_iooi.png"
1601 ${File} "..\..\shapes\jigsaw\" "part_iooi.shape"
1602 ${File} "..\..\shapes\jigsaw\" "part_iooi.xpm"
1603 ${File} "..\..\shapes\jigsaw\" "part_iooo.png"
1604 ${File} "..\..\shapes\jigsaw\" "part_iooo.shape"
1605 ${File} "..\..\shapes\jigsaw\" "part_iooo.xpm"
1606 ${File} "..\..\shapes\jigsaw\" "part_oiii.png"
1607 ${File} "..\..\shapes\jigsaw\" "part_oiii.shape"
1608 ${File} "..\..\shapes\jigsaw\" "part_oiii.xpm"
1609 ${File} "..\..\shapes\jigsaw\" "part_oiio.png"
1610 ${File} "..\..\shapes\jigsaw\" "part_oiio.shape"
1611 ${File} "..\..\shapes\jigsaw\" "part_oiio.xpm"
1612 ${File} "..\..\shapes\jigsaw\" "part_oioi.png"
1613 ${File} "..\..\shapes\jigsaw\" "part_oioi.shape"
1614 ${File} "..\..\shapes\jigsaw\" "part_oioi.xpm"
1615 ${File} "..\..\shapes\jigsaw\" "part_oioo.png"
1616 ${File} "..\..\shapes\jigsaw\" "part_oioo.shape"
1617 ${File} "..\..\shapes\jigsaw\" "part_oioo.xpm"
1618 ${File} "..\..\shapes\jigsaw\" "part_ooii.png"
1619 ${File} "..\..\shapes\jigsaw\" "part_ooii.shape"
1620 ${File} "..\..\shapes\jigsaw\" "part_ooii.xpm"
1621 ${File} "..\..\shapes\jigsaw\" "part_ooio.png"
1622 ${File} "..\..\shapes\jigsaw\" "part_ooio.shape"
1623 ${File} "..\..\shapes\jigsaw\" "part_ooio.xpm"
1624 ${File} "..\..\shapes\jigsaw\" "part_oooi.png"
1625 ${File} "..\..\shapes\jigsaw\" "part_oooi.shape"
1626 ${File} "..\..\shapes\jigsaw\" "part_oooi.xpm"
1627 ${File} "..\..\shapes\jigsaw\" "part_oooo.png"
1628 ${File} "..\..\shapes\jigsaw\" "part_oooo.shape"
1629 ${File} "..\..\shapes\jigsaw\" "part_oooo.xpm"
1630 ${SetOutPath} "$INSTDIR\shapes\Logic"
1631 ${File} "..\..\shapes\Logic\" "and.png"
1632 ${File} "..\..\shapes\Logic\" "and.shape"
1633 ${File} "..\..\shapes\Logic\" "buffer.png"
1634 ${File} "..\..\shapes\Logic\" "buffer.shape"
1635 ${File} "..\..\shapes\Logic\" "connector.png"
1636 ${File} "..\..\shapes\Logic\" "connector.shape"
1637 ${File} "..\..\shapes\Logic\" "inverter.png"
1638 ${File} "..\..\shapes\Logic\" "inverter.shape"
1639 ${File} "..\..\shapes\Logic\" "nand.png"
1640 ${File} "..\..\shapes\Logic\" "nand.shape"
1641 ${File} "..\..\shapes\Logic\" "nor.png"
1642 ${File} "..\..\shapes\Logic\" "nor.shape"
1643 ${File} "..\..\shapes\Logic\" "not.png"
1644 ${File} "..\..\shapes\Logic\" "not.shape"
1645 ${File} "..\..\shapes\Logic\" "or.png"
1646 ${File} "..\..\shapes\Logic\" "or.shape"
1647 ${File} "..\..\shapes\Logic\" "xor.png"
1648 ${File} "..\..\shapes\Logic\" "xor.shape"
1649 ${SetOutPath} "$INSTDIR\shapes\Map\Isometric"
1650 ${File} "..\..\shapes\Map\Isometric\" "Block1.png"
1651 ${File} "..\..\shapes\Map\Isometric\" "Block1.shape"
1652 ${File} "..\..\shapes\Map\Isometric\" "Block2.png"
1653 ${File} "..\..\shapes\Map\Isometric\" "Block2.shape"
1654 ${File} "..\..\shapes\Map\Isometric\" "Block3.png"
1655 ${File} "..\..\shapes\Map\Isometric\" "Block3.shape"
1656 ${File} "..\..\shapes\Map\Isometric\" "Block4.png"
1657 ${File} "..\..\shapes\Map\Isometric\" "Block4.shape"
1658 ${File} "..\..\shapes\Map\Isometric\" "Block5.png"
1659 ${File} "..\..\shapes\Map\Isometric\" "Block5.shape"
1660 ${File} "..\..\shapes\Map\Isometric\" "Block6.png"
1661 ${File} "..\..\shapes\Map\Isometric\" "Block6.shape"
1662 ${File} "..\..\shapes\Map\Isometric\" "Block7.png"
1663 ${File} "..\..\shapes\Map\Isometric\" "Block7.shape"
1664 ${File} "..\..\shapes\Map\Isometric\" "Car1.png"
1665 ${File} "..\..\shapes\Map\Isometric\" "Car1.shape"
1666 ${File} "..\..\shapes\Map\Isometric\" "Car2.png"
1667 ${File} "..\..\shapes\Map\Isometric\" "Car2.shape"
1668 ${File} "..\..\shapes\Map\Isometric\" "Corner1.png"
1669 ${File} "..\..\shapes\Map\Isometric\" "Corner1.shape"
1670 ${File} "..\..\shapes\Map\Isometric\" "Corner2.png"
1671 ${File} "..\..\shapes\Map\Isometric\" "Corner2.shape"
1672 ${File} "..\..\shapes\Map\Isometric\" "Crossroads.png"
1673 ${File} "..\..\shapes\Map\Isometric\" "Crossroads.shape"
1674 ${File} "..\..\shapes\Map\Isometric\" "Elevated.png"
1675 ${File} "..\..\shapes\Map\Isometric\" "Elevated.shape"
1676 ${File} "..\..\shapes\Map\Isometric\" "Factory.png"
1677 ${File} "..\..\shapes\Map\Isometric\" "Factory.shape"
1678 ${File} "..\..\shapes\Map\Isometric\" "FootBridge.png"
1679 ${File} "..\..\shapes\Map\Isometric\" "FootBridge.shape"
1680 ${File} "..\..\shapes\Map\Isometric\" "OneWay.png"
1681 ${File} "..\..\shapes\Map\Isometric\" "OneWay.shape"
1682 ${File} "..\..\shapes\Map\Isometric\" "RedCar.png"
1683 ${File} "..\..\shapes\Map\Isometric\" "RedCar.shape"
1684 ${File} "..\..\shapes\Map\Isometric\" "River.png"
1685 ${File} "..\..\shapes\Map\Isometric\" "River.shape"
1686 ${File} "..\..\shapes\Map\Isometric\" "Road1.png"
1687 ${File} "..\..\shapes\Map\Isometric\" "Road1.shape"
1688 ${File} "..\..\shapes\Map\Isometric\" "Roof1.png"
1689 ${File} "..\..\shapes\Map\Isometric\" "Roof1.shape"
1690 ${File} "..\..\shapes\Map\Isometric\" "StraightRoad1.png"
1691 ${File} "..\..\shapes\Map\Isometric\" "StraightRoad1.shape"
1692 ${File} "..\..\shapes\Map\Isometric\" "T-Junction.png"
1693 ${File} "..\..\shapes\Map\Isometric\" "T-Junction.shape"
1694 ${File} "..\..\shapes\Map\Isometric\" "Train1.png"
1695 ${File} "..\..\shapes\Map\Isometric\" "Train1.shape"
1696 ${File} "..\..\shapes\Map\Isometric\" "Train2.png"
1697 ${File} "..\..\shapes\Map\Isometric\" "Train2.shape"
1698 ${File} "..\..\shapes\Map\Isometric\" "Tree1.png"
1699 ${File} "..\..\shapes\Map\Isometric\" "Tree1.shape"
1700 ${SetOutPath} "$INSTDIR\shapes\Misc"
1701 ${File} "..\..\shapes\Misc\" "file.png"
1702 ${File} "..\..\shapes\Misc\" "file.shape"
1703 ${File} "..\..\shapes\Misc\" "folder.png"
1704 ${File} "..\..\shapes\Misc\" "folder.shape"
1705 ${File} "..\..\objects\Misc\pixmaps\" "analog_clock.xpm"
1706 ${File} "..\..\objects\Misc\pixmaps\" "newgroup.xpm"
1707 ${SetOutPath} "$INSTDIR\shapes\MSE"
1708 ${File} "..\..\shapes\MSE\" "demultiplexer.png"
1709 ${File} "..\..\shapes\MSE\" "demultiplexer.shape"
1710 ${File} "..\..\shapes\MSE\" "demultiplexer.xpm"
1711 ${File} "..\..\shapes\MSE\" "large_extension_node.png"
1712 ${File} "..\..\shapes\MSE\" "large_extension_node.shape"
1713 ${File} "..\..\shapes\MSE\" "large_extension_node.xpm"
1714 ${File} "..\..\shapes\MSE\" "multiplexer.png"
1715 ${File} "..\..\shapes\MSE\" "multiplexer.shape"
1716 ${File} "..\..\shapes\MSE\" "multiplexer.xpm"
1717 ${File} "..\..\shapes\MSE\" "node_center.png"
1718 ${File} "..\..\shapes\MSE\" "node_center.shape"
1719 ${File} "..\..\shapes\MSE\" "node_center.xpm"
1720 ${File} "..\..\shapes\MSE\" "small_extension_node.png"
1721 ${File} "..\..\shapes\MSE\" "small_extension_node.shape"
1722 ${File} "..\..\shapes\MSE\" "small_extension_node.xpm"
1723 ${File} "..\..\shapes\MSE\" "tacsat.png"
1724 ${File} "..\..\shapes\MSE\" "tacsat.shape"
1725 ${File} "..\..\shapes\MSE\" "tacsat.xpm"
1726 ${SetOutPath} "$INSTDIR\shapes\network"
1727 ${File} "..\..\shapes\network\" "antenna.png"
1728 ${File} "..\..\shapes\network\" "antenna.shape"
1729 ${File} "..\..\shapes\network\" "antenna.xpm"
1730 ${File} "..\..\shapes\network\" "computer.png"
1731 ${File} "..\..\shapes\network\" "computer.shape"
1732 ${File} "..\..\shapes\network\" "computer.xpm"
1733 ${File} "..\..\shapes\network\" "dat_external.png"
1734 ${File} "..\..\shapes\network\" "dat_external.shape"
1735 ${File} "..\..\shapes\network\" "dat_external.xpm"
1736 ${File} "..\..\shapes\network\" "digitizing_board.png"
1737 ${File} "..\..\shapes\network\" "digitizing_board.shape"
1738 ${File} "..\..\shapes\network\" "disc.png"
1739 ${File} "..\..\shapes\network\" "disc.shape"
1740 ${File} "..\..\shapes\network\" "disc.xpm"
1741 ${File} "..\..\shapes\network\" "diskette.png"
1742 ${File} "..\..\shapes\network\" "diskette.shape"
1743 ${File} "..\..\shapes\network\" "diskette.xpm"
1744 ${File} "..\..\shapes\network\" "firewall.png"
1745 ${File} "..\..\shapes\network\" "firewall.shape"
1746 ${File} "..\..\shapes\network\" "firewall.xpm"
1747 ${File} "..\..\shapes\network\" "flash.png"
1748 ${File} "..\..\shapes\network\" "flash.shape"
1749 ${File} "..\..\shapes\network\" "flash.xpm"
1750 ${File} "..\..\shapes\network\" "genmonitor.png"
1751 ${File} "..\..\shapes\network\" "genmonitor.shape"
1752 ${File} "..\..\shapes\network\" "genmonitor.xpm"
1753 ${File} "..\..\shapes\network\" "hub.png"
1754 ${File} "..\..\shapes\network\" "hub.shape"
1755 ${File} "..\..\shapes\network\" "hub.xpm"
1756 ${File} "..\..\shapes\network\" "laptop.png"
1757 ${File} "..\..\shapes\network\" "laptop.shape"
1758 ${File} "..\..\shapes\network\" "mobile_phone.png"
1759 ${File} "..\..\shapes\network\" "mobile_phone.shape"
1760 ${File} "..\..\shapes\network\" "mobile_phone.xpm"
1761 ${File} "..\..\shapes\network\" "modem.png"
1762 ${File} "..\..\shapes\network\" "modem.shape"
1763 ${File} "..\..\shapes\network\" "modem.xpm"
1764 ${File} "..\..\shapes\network\" "modularswitch.png"
1765 ${File} "..\..\shapes\network\" "modularswitch.shape"
1766 ${File} "..\..\shapes\network\" "modularswitch.xpm"
1767 ${File} "..\..\shapes\network\" "monitor.png"
1768 ${File} "..\..\shapes\network\" "monitor.shape"
1769 ${File} "..\..\shapes\network\" "monitor.xpm"
1770 ${File} "..\..\shapes\network\" "nwcloud.png"
1771 ${File} "..\..\shapes\network\" "nwcloud.shape"
1772 ${File} "..\..\shapes\network\" "nwcloud.xpm"
1773 ${File} "..\..\shapes\network\" "patch-panel.png"
1774 ${File} "..\..\shapes\network\" "patch-panel.shape"
1775 ${File} "..\..\shapes\network\" "patch-panel.xpm"
1776 ${File} "..\..\shapes\network\" "pc_bigtower.png"
1777 ${File} "..\..\shapes\network\" "pc_bigtower.shape"
1778 ${File} "..\..\shapes\network\" "pc_bigtower.xpm"
1779 ${File} "..\..\shapes\network\" "pc_desktop.png"
1780 ${File} "..\..\shapes\network\" "pc_desktop.shape"
1781 ${File} "..\..\shapes\network\" "pc_desktop.xpm"
1782 ${File} "..\..\shapes\network\" "pc_miditower.png"
1783 ${File} "..\..\shapes\network\" "pc_miditower.shape"
1784 ${File} "..\..\shapes\network\" "pc_miditower.xpm"
1785 ${File} "..\..\shapes\network\" "pc_minitower.png"
1786 ${File} "..\..\shapes\network\" "pc_minitower.shape"
1787 ${File} "..\..\shapes\network\" "pc_minitower.xpm"
1788 ${File} "..\..\shapes\network\" "plotter.png"
1789 ${File} "..\..\shapes\network\" "plotter.shape"
1790 ${File} "..\..\shapes\network\" "printer.png"
1791 ${File} "..\..\shapes\network\" "printer.shape"
1792 ${File} "..\..\shapes\network\" "printer.xpm"
1793 ${File} "..\..\shapes\network\" "rj45plug.png"
1794 ${File} "..\..\shapes\network\" "rj45plug.shape"
1795 ${File} "..\..\shapes\network\" "rj45plug.xpm"
1796 ${File} "..\..\shapes\network\" "router-symbol.png"
1797 ${File} "..\..\shapes\network\" "router-symbol.shape"
1798 ${File} "..\..\shapes\network\" "router-symbol.xpm"
1799 ${File} "..\..\shapes\network\" "sceadplug.png"
1800 ${File} "..\..\shapes\network\" "sceadplug.shape"
1801 ${File} "..\..\shapes\network\" "sceadplug.xpm"
1802 ${File} "..\..\shapes\network\" "speaker.png"
1803 ${File} "..\..\shapes\network\" "speaker.shape"
1804 ${File} "..\..\shapes\network\" "speaker.xpm"
1805 ${File} "..\..\shapes\network\" "speaker_amp.png"
1806 ${File} "..\..\shapes\network\" "speaker_amp.shape"
1807 ${File} "..\..\shapes\network\" "speaker_amp.xpm"
1808 ${File} "..\..\shapes\network\" "switch-atm-symbol.png"
1809 ${File} "..\..\shapes\network\" "switch-atm-symbol.shape"
1810 ${File} "..\..\shapes\network\" "switch-atm-symbol.xpm"
1811 ${File} "..\..\shapes\network\" "switch-symbol.png"
1812 ${File} "..\..\shapes\network\" "switch-symbol.shape"
1813 ${File} "..\..\shapes\network\" "switch-symbol.xpm"
1814 ${File} "..\..\shapes\network\" "telephone.png"
1815 ${File} "..\..\shapes\network\" "telephone.shape"
1816 ${File} "..\..\shapes\network\" "workstation.png"
1817 ${File} "..\..\shapes\network\" "workstation.shape"
1818 ${File} "..\..\shapes\network\" "workstation.xpm"
1819 ${File} "..\..\shapes\network\" "zip-disk.png"
1820 ${File} "..\..\shapes\network\" "zip-disk.shape"
1821 ${File} "..\..\shapes\network\" "zip-disk.xpm"
1822 ${SetOutPath} "$INSTDIR\shapes\Pneumatic"
1823 ${File} "..\..\shapes\Pneumatic\" "cnx.png"
1824 ${File} "..\..\shapes\Pneumatic\" "cnx.shape"
1825 ${File} "..\..\shapes\Pneumatic\" "cnx.xpm"
1826 ${File} "..\..\shapes\Pneumatic\" "comelec1.png"
1827 ${File} "..\..\shapes\Pneumatic\" "comelec1.shape"
1828 ${File} "..\..\shapes\Pneumatic\" "comelec1.xpm"
1829 ${File} "..\..\shapes\Pneumatic\" "comelec2.png"
1830 ${File} "..\..\shapes\Pneumatic\" "comelec2.shape"
1831 ${File} "..\..\shapes\Pneumatic\" "comelec2.xpm"
1832 ${File} "..\..\shapes\Pneumatic\" "commusc.png"
1833 ${File} "..\..\shapes\Pneumatic\" "commusc.shape"
1834 ${File} "..\..\shapes\Pneumatic\" "commusc.xpm"
1835 ${File} "..\..\shapes\Pneumatic\" "compb.png"
1836 ${File} "..\..\shapes\Pneumatic\" "compb.shape"
1837 ${File} "..\..\shapes\Pneumatic\" "compb.xpm"
1838 ${File} "..\..\shapes\Pneumatic\" "compilh.png"
1839 ${File} "..\..\shapes\Pneumatic\" "compilh.shape"
1840 ${File} "..\..\shapes\Pneumatic\" "compilh.xpm"
1841 ${File} "..\..\shapes\Pneumatic\" "compilp.png"
1842 ${File} "..\..\shapes\Pneumatic\" "compilp.shape"
1843 ${File} "..\..\shapes\Pneumatic\" "compilp.xpm"
1844 ${File} "..\..\shapes\Pneumatic\" "compush.png"
1845 ${File} "..\..\shapes\Pneumatic\" "compush.shape"
1846 ${File} "..\..\shapes\Pneumatic\" "compush.xpm"
1847 ${File} "..\..\shapes\Pneumatic\" "comspr.png"
1848 ${File} "..\..\shapes\Pneumatic\" "comspr.shape"
1849 ${File} "..\..\shapes\Pneumatic\" "comspr.xpm"
1850 ${File} "..\..\shapes\Pneumatic\" "dejack.png"
1851 ${File} "..\..\shapes\Pneumatic\" "dejack.shape"
1852 ${File} "..\..\shapes\Pneumatic\" "dejack.xpm"
1853 ${File} "..\..\shapes\Pneumatic\" "dist22.png"
1854 ${File} "..\..\shapes\Pneumatic\" "dist22.shape"
1855 ${File} "..\..\shapes\Pneumatic\" "dist22.xpm"
1856 ${File} "..\..\shapes\Pneumatic\" "dist32.png"
1857 ${File} "..\..\shapes\Pneumatic\" "dist32.shape"
1858 ${File} "..\..\shapes\Pneumatic\" "dist32.xpm"
1859 ${File} "..\..\shapes\Pneumatic\" "dist42.png"
1860 ${File} "..\..\shapes\Pneumatic\" "dist42.shape"
1861 ${File} "..\..\shapes\Pneumatic\" "dist42.xpm"
1862 ${File} "..\..\shapes\Pneumatic\" "dist52.png"
1863 ${File} "..\..\shapes\Pneumatic\" "dist52.shape"
1864 ${File} "..\..\shapes\Pneumatic\" "dist52.xpm"
1865 ${File} "..\..\shapes\Pneumatic\" "drain.png"
1866 ${File} "..\..\shapes\Pneumatic\" "drain.shape"
1867 ${File} "..\..\shapes\Pneumatic\" "drain.xpm"
1868 ${File} "..\..\shapes\Pneumatic\" "press.png"
1869 ${File} "..\..\shapes\Pneumatic\" "press.shape"
1870 ${File} "..\..\shapes\Pneumatic\" "press.xpm"
1871 ${File} "..\..\shapes\Pneumatic\" "presshy.png"
1872 ${File} "..\..\shapes\Pneumatic\" "presshy.shape"
1873 ${File} "..\..\shapes\Pneumatic\" "presshy.xpm"
1874 ${File} "..\..\shapes\Pneumatic\" "presspn.png"
1875 ${File} "..\..\shapes\Pneumatic\" "presspn.shape"
1876 ${File} "..\..\shapes\Pneumatic\" "presspn.xpm"
1877 ${File} "..\..\shapes\Pneumatic\" "seijack.png"
1878 ${File} "..\..\shapes\Pneumatic\" "seijack.shape"
1879 ${File} "..\..\shapes\Pneumatic\" "seijack.xpm"
1880 ${File} "..\..\shapes\Pneumatic\" "seojack.png"
1881 ${File} "..\..\shapes\Pneumatic\" "seojack.shape"
1882 ${File} "..\..\shapes\Pneumatic\" "seojack.xpm"
1883 ${SetOutPath} "$INSTDIR\shapes\RDP"
1884 ${File} "..\..\shapes\RDP\" "arc.png"
1885 ${File} "..\..\shapes\RDP\" "arc_inhibiteur.png"
1886 ${File} "..\..\shapes\RDP\" "place.png"
1887 ${File} "..\..\shapes\RDP\" "place.shape"
1888 ${File} "..\..\shapes\RDP\" "place_marquee.png"
1889 ${File} "..\..\shapes\RDP\" "place_marquee.shape"
1890 ${File} "..\..\shapes\RDP\" "transition.png"
1891 ${File} "..\..\shapes\RDP\" "transition.shape"
1892 ${File} "..\..\shapes\RDP\" "t_transition.png"
1893 ${File} "..\..\shapes\RDP\" "t_transition.shape"
1894 ${SetOutPath} "$INSTDIR\shapes\SDL"
1895 ${File} "..\..\shapes\SDL\" "block.png"
1896 ${File} "..\..\shapes\SDL\" "block.shape"
1897 ${File} "..\..\shapes\SDL\" "block.xpm"
1898 ${File} "..\..\shapes\SDL\" "comment.png"
1899 ${File} "..\..\shapes\SDL\" "comment.shape"
1900 ${File} "..\..\shapes\SDL\" "comment.xpm"
1901 ${File} "..\..\shapes\SDL\" "decision.png"
1902 ${File} "..\..\shapes\SDL\" "decision.shape"
1903 ${File} "..\..\shapes\SDL\" "decision.xpm"
1904 ${File} "..\..\shapes\SDL\" "function.png"
1905 ${File} "..\..\shapes\SDL\" "function.shape"
1906 ${File} "..\..\shapes\SDL\" "function.xpm"
1907 ${File} "..\..\shapes\SDL\" "header.png"
1908 ${File} "..\..\shapes\SDL\" "header.shape"
1909 ${File} "..\..\shapes\SDL\" "header.xpm"
1910 ${File} "..\..\shapes\SDL\" "inout.png"
1911 ${File} "..\..\shapes\SDL\" "inout.shape"
1912 ${File} "..\..\shapes\SDL\" "inout.xpm"
1913 ${File} "..\..\shapes\SDL\" "macro.png"
1914 ${File} "..\..\shapes\SDL\" "macro.shape"
1915 ${File} "..\..\shapes\SDL\" "macro.xpm"
1916 ${File} "..\..\shapes\SDL\" "note.png"
1917 ${File} "..\..\shapes\SDL\" "note.shape"
1918 ${File} "..\..\shapes\SDL\" "note.xpm"
1919 ${File} "..\..\shapes\SDL\" "process.png"
1920 ${File} "..\..\shapes\SDL\" "process.shape"
1921 ${File} "..\..\shapes\SDL\" "process.xpm"
1922 ${File} "..\..\shapes\SDL\" "receive.png"
1923 ${File} "..\..\shapes\SDL\" "receive.shape"
1924 ${File} "..\..\shapes\SDL\" "receive.xpm"
1925 ${File} "..\..\shapes\SDL\" "return.png"
1926 ${File} "..\..\shapes\SDL\" "return.shape"
1927 ${File} "..\..\shapes\SDL\" "return.xpm"
1928 ${File} "..\..\shapes\SDL\" "save.png"
1929 ${File} "..\..\shapes\SDL\" "save.shape"
1930 ${File} "..\..\shapes\SDL\" "save.xpm"
1931 ${File} "..\..\shapes\SDL\" "send.png"
1932 ${File} "..\..\shapes\SDL\" "send.shape"
1933 ${File} "..\..\shapes\SDL\" "send.xpm"
1934 ${File} "..\..\shapes\SDL\" "service.png"
1935 ${File} "..\..\shapes\SDL\" "service.shape"
1936 ${File} "..\..\shapes\SDL\" "service.xpm"
1937 ${File} "..\..\shapes\SDL\" "state.png"
1938 ${File} "..\..\shapes\SDL\" "state.shape"
1939 ${File} "..\..\shapes\SDL\" "state.xpm"
1940 ${File} "..\..\shapes\SDL\" "stop.png"
1941 ${File} "..\..\shapes\SDL\" "stop.shape"
1942 ${File} "..\..\shapes\SDL\" "stop.xpm"
1943 ${File} "..\..\shapes\SDL\" "task.png"
1944 ${File} "..\..\shapes\SDL\" "task.shape"
1945 ${File} "..\..\shapes\SDL\" "task.xpm"
1946 ${SetOutPath} "$INSTDIR\shapes\sybase"
1947 ${File} "..\..\shapes\sybase\" "client.png"
1948 ${File} "..\..\shapes\sybase\" "client.shape"
1949 ${File} "..\..\shapes\sybase\" "client.xpm"
1950 ${File} "..\..\shapes\sybase\" "dataserver.png"
1951 ${File} "..\..\shapes\sybase\" "dataserver.shape"
1952 ${File} "..\..\shapes\sybase\" "dataserver.xpm"
1953 ${File} "..\..\shapes\sybase\" "ltm.png"
1954 ${File} "..\..\shapes\sybase\" "ltm.shape"
1955 ${File} "..\..\shapes\sybase\" "ltm.xpm"
1956 ${File} "..\..\shapes\sybase\" "repserver.png"
1957 ${File} "..\..\shapes\sybase\" "repserver.shape"
1958 ${File} "..\..\shapes\sybase\" "repserver.xpm"
1959 ${File} "..\..\shapes\sybase\" "rsm.png"
1960 ${File} "..\..\shapes\sybase\" "rsm.shape"
1961 ${File} "..\..\shapes\sybase\" "rsm.xpm"
1962 ${File} "..\..\shapes\sybase\" "stableq.png"
1963 ${File} "..\..\shapes\sybase\" "stableq.shape"
1964 ${File} "..\..\shapes\sybase\" "stableq.xpm"
1965 ${SetOutPath} "$INSTDIR\sheets"
1966 ${File} "..\..\sheets\" "AADL.sheet"
1967 ${File} "..\..\sheets\" "Assorted.sheet"
1968 ${File} "..\..\sheets\" "ChemEng.sheet"
1969 ${File} "..\..\sheets\" "chronogram.sheet"
1970 ${File} "..\..\sheets\" "Circuit.sheet"
1971 ${File} "..\..\sheets\" "ciscocomputer.sheet"
1972 ${File} "..\..\sheets\" "ciscohub.sheet"
1973 ${File} "..\..\sheets\" "ciscomisc.sheet"
1974 ${File} "..\..\sheets\" "cisconetwork.sheet"
1975 ${File} "..\..\sheets\" "ciscotelephony.sheet"
1976 ${File} "..\..\sheets\" "civil.sheet"
1977 ${File} "..\..\sheets\" "Contact.sheet"
1978 ${File} "..\..\sheets\" "Cybernetics.sheet"
1979 ${File} "..\..\sheets\" "Electric.sheet"
1980 ${File} "..\..\sheets\" "EML.sheet"
1981 ${File} "..\..\sheets\" "ER.sheet"
1982 ${File} "..\..\sheets\" "Flowchart.sheet"
1983 ${File} "..\..\sheets\" "FS.sheet"
1984 ${File} "..\..\sheets\" "Gane_and_Sarson.sheet"
1985 ${File} "..\..\sheets\" "GRAFCET.sheet"
1986 ${File} "..\..\sheets\" "IsometricMap.sheet"
1987 ${File} "..\..\sheets\" "Istar.sheet"
1988 ${File} "..\..\sheets\" "Jackson.sheet"
1989 ${File} "..\..\sheets\" "jigsaw.sheet"
1990 ${File} "..\..\sheets\" "KAOS.sheet"
1991 ${File} "..\..\sheets\" "Logic.sheet"
1992 ${File} "..\..\sheets\" "Misc.sheet"
1993 ${File} "..\..\sheets\" "MSE.sheet"
1994 ${File} "..\..\sheets\" "network.sheet"
1995 ${File} "..\..\sheets\" "Pneumatic.sheet"
1996 ${File} "..\..\sheets\" "SADT.sheet"
1997 ${File} "..\..\sheets\" "SDL.sheet"
1998 ${File} "..\..\sheets\" "sybase.sheet"
1999 ${File} "..\..\sheets\" "UML.sheet"
2000 ${SetOutPath} "$INSTDIR\sheets\ER"
2001 ${File} "..\..\sheets\ER\" "weakentity.png"
2002 ${File} "..\..\sheets\ER\" "weakentity.xpm"
2003 ${SetOutPath} "$INSTDIR\sheets\GRAFCET"
2004 ${File} "..\..\sheets\GRAFCET\" "etapei.png"
2005 ${File} "..\..\sheets\GRAFCET\" "etapei.xpm"
2006 ${File} "..\..\sheets\GRAFCET\" "etapemc.png"
2007 ${File} "..\..\sheets\GRAFCET\" "etapemc.xpm"
2008 ${File} "..\..\sheets\GRAFCET\" "etapeme.png"
2009 ${File} "..\..\sheets\GRAFCET\" "etapeme.xpm"
2010 ${File} "..\..\sheets\GRAFCET\" "etapems.png"
2011 ${File} "..\..\sheets\GRAFCET\" "etapems.xpm"
2012 ${File} "..\..\sheets\GRAFCET\" "etapesp.png"
2013 ${File} "..\..\sheets\GRAFCET\" "etapesp.xpm"
2014 ${File} "..\..\sheets\GRAFCET\" "vergent_and.png"
2015 ${File} "..\..\sheets\GRAFCET\" "vergent_and.xpm"
2016 ${SetOutPath} "$INSTDIR\sheets\Istar"
2017 ${File} "..\..\sheets\Istar\" "agent.png"
2018 ${File} "..\..\sheets\Istar\" "agent.xpm"
2019 ${File} "..\..\sheets\Istar\" "decomposition.png"
2020 ${File} "..\..\sheets\Istar\" "decomposition.xpm"
2021 ${File} "..\..\sheets\Istar\" "dependency.png"
2022 ${File} "..\..\sheets\Istar\" "dependency.xpm"
2023 ${File} "..\..\sheets\Istar\" "goal.png"
2024 ${File} "..\..\sheets\Istar\" "goal.xpm"
2025 ${File} "..\..\sheets\Istar\" "means_ends.png"
2026 ${File} "..\..\sheets\Istar\" "means_ends.xpm"
2027 ${File} "..\..\sheets\Istar\" "neg_contrib.png"
2028 ${File} "..\..\sheets\Istar\" "neg_contrib.xpm"
2029 ${File} "..\..\sheets\Istar\" "position.png"
2030 ${File} "..\..\sheets\Istar\" "position.xpm"
2031 ${File} "..\..\sheets\Istar\" "pos_contrib.png"
2032 ${File} "..\..\sheets\Istar\" "pos_contrib.xpm"
2033 ${File} "..\..\sheets\Istar\" "role.png"
2034 ${File} "..\..\sheets\Istar\" "role.xpm"
2035 ${File} "..\..\sheets\Istar\" "task.png"
2036 ${File} "..\..\sheets\Istar\" "task.xpm"
2037 ${SetOutPath} "$INSTDIR\sheets\Jackson"
2038 ${File} "..\..\sheets\Jackson\" "designed_domain.png"
2039 ${File} "..\..\sheets\Jackson\" "designed_domain.xpm"
2040 ${File} "..\..\sheets\Jackson\" "machine_domain.png"
2041 ${File} "..\..\sheets\Jackson\" "machine_domain.xpm"
2042 ${File} "..\..\sheets\Jackson\" "req_phen.png"
2043 ${File} "..\..\sheets\Jackson\" "req_phen.xpm"
2044 ${SetOutPath} "$INSTDIR\sheets\KAOS"
2045 ${File} "..\..\sheets\KAOS\" "and-complete-ref.png"
2046 ${File} "..\..\sheets\KAOS\" "and-complete-ref.xpm"
2047 ${File} "..\..\sheets\KAOS\" "and-ref.png"
2048 ${File} "..\..\sheets\KAOS\" "and-ref.xpm"
2049 ${File} "..\..\sheets\KAOS\" "assumption.png"
2050 ${File} "..\..\sheets\KAOS\" "assumption.xpm"
2051 ${File} "..\..\sheets\KAOS\" "capable-of.png"
2052 ${File} "..\..\sheets\KAOS\" "capable-of.xpm"
2053 ${File} "..\..\sheets\KAOS\" "conflicts.png"
2054 ${File} "..\..\sheets\KAOS\" "conflicts.xpm"
2055 ${File} "..\..\sheets\KAOS\" "controls.png"
2056 ${File} "..\..\sheets\KAOS\" "controls.xpm"
2057 ${File} "..\..\sheets\KAOS\" "input.png"
2058 ${File} "..\..\sheets\KAOS\" "input.xpm"
2059 ${File} "..\..\sheets\KAOS\" "monitors.png"
2060 ${File} "..\..\sheets\KAOS\" "monitors.xpm"
2061 ${File} "..\..\sheets\KAOS\" "obstacle.png"
2062 ${File} "..\..\sheets\KAOS\" "obstacle.xpm"
2063 ${File} "..\..\sheets\KAOS\" "obstructs.png"
2064 ${File} "..\..\sheets\KAOS\" "obstructs.xpm"
2065 ${File} "..\..\sheets\KAOS\" "op-ref.png"
2066 ${File} "..\..\sheets\KAOS\" "op-ref.xpm"
2067 ${File} "..\..\sheets\KAOS\" "or-complete-ref.png"
2068 ${File} "..\..\sheets\KAOS\" "or-complete-ref.xpm"
2069 ${File} "..\..\sheets\KAOS\" "or-ref.png"
2070 ${File} "..\..\sheets\KAOS\" "or-ref.xpm"
2071 ${File} "..\..\sheets\KAOS\" "output.png"
2072 ${File} "..\..\sheets\KAOS\" "output.xpm"
2073 ${File} "..\..\sheets\KAOS\" "performs.png"
2074 ${File} "..\..\sheets\KAOS\" "performs.xpm"
2075 ${File} "..\..\sheets\KAOS\" "requirement.png"
2076 ${File} "..\..\sheets\KAOS\" "requirement.xpm"
2077 ${File} "..\..\sheets\KAOS\" "responsibility.png"
2078 ${File} "..\..\sheets\KAOS\" "responsibility.xpm"
2079 ${File} "..\..\sheets\KAOS\" "softgoal.png"
2080 ${File} "..\..\sheets\KAOS\" "softgoal.xpm"
2081 ${SetOutPath} "$INSTDIR\sheets\UML"
2082 ${File} "..\..\sheets\UML\" "aggregation.png"
2083 ${File} "..\..\sheets\UML\" "aggregation.xpm"
2084 ${File} "..\..\sheets\UML\" "eventsink.png"
2085 ${File} "..\..\sheets\UML\" "eventsink.xpm"
2086 ${File} "..\..\sheets\UML\" "eventsource.png"
2087 ${File} "..\..\sheets\UML\" "eventsource.xpm"
2088 ${File} "..\..\sheets\UML\" "receptacle.png"
2089 ${File} "..\..\sheets\UML\" "receptacle.xpm"
2090 ${File} "..\..\sheets\UML\" "umlclass_template.png"
2091 ${File} "..\..\sheets\UML\" "umlclass_template.xpm"
2092 ${SetOutPath} "$INSTDIR\help\C"
2093 ${File} "..\..\..\help\C\" "dia-manual.chm"
2094 ${File} "..\..\..\help\C\" "dia-manual.pdf"
2095 ${File} "..\..\..\dia-web\" "faq.html"
2096 ${File} "..\..\..\dia-web\" "dia.css"
2097 ${SetOutPath} "$INSTDIR\help\C\images"
2098 ${File} "..\..\..\dia-web\images\" "faq2.jpg"
2099 ${File} "..\..\..\dia-web\images\" "addbend1.png"
2100 ${File} "..\..\..\dia-web\images\" "addbend2.png"
2101 ${File} "..\..\..\dia-web\images\" "addbend3.png"
2102 ${File} "..\..\..\dia-web\images\" "zig1.png"
2103 ${File} "..\..\..\dia-web\images\" "zig2.png"
2104 ${File} "..\..\..\dia-web\images\" "zig3.png"
2105 ${File} "..\..\..\dia-web\images\" "zig4.png"
2106 ${File} "..\..\..\dia-web\images\" "zig5.png"
2108 ${SetOutPath} "$INSTDIR"
2109 ${File} "..\..\" "dia_logo.png"
2111 ${SetOutPath} "$INSTDIR\xslt"
2112 ${File} "..\..\plug-ins\xslt\" "dia-uml.xsl"
2113 ${File} "..\..\plug-ins\xslt\" "dia-uml2c++.xsl"
2114 ${File} "..\..\plug-ins\xslt\" "dia-uml2componentlist.xsl"
2115 ${File} "..\..\plug-ins\xslt\" "dia-uml2cpp.xsl"
2116 ${File} "..\..\plug-ins\xslt\" "dia-uml2idl.xsl"
2117 ${File} "..\..\plug-ins\xslt\" "dia-uml2java.xsl"
2118 ${File} "..\..\plug-ins\xslt\" "dia-uml2owl.xsl"
2119 ${File} "..\..\plug-ins\xslt\" "dia-uml2python.xsl"
2120 ${File} "..\..\plug-ins\xslt\" "stylesheets.xml"
2122 ${SetOutPath} "$INSTDIR\ui"
2123 ${File} "..\..\data\" "toolbox-ui.xml"
2124 ${File} "..\..\data\" "display-ui.xml"
2125 ${File} "..\..\data\" "popup-ui.xml"
2127 SetShellVarContext all
2129 CreateDirectory "$SMPROGRAMS\Dia"
2130 ReadRegStr $0 HKU ".DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" "My Pictures"
2131 SetOutPath "$0"
2132 CreateShortCut "$SMPROGRAMS\Dia\Dia.lnk" "$INSTDIR\bin\diaw.exe"
2133 CreateShortCut "$SMPROGRAMS\Dia\Dia Manual (CHM).lnk" "$INSTDIR\help\C\dia-manual.chm"
2134 CreateShortCut "$SMPROGRAMS\Dia\Dia Manual (PDF).lnk" "$INSTDIR\help\C\dia-manual.pdf"
2135 CreateShortCut "$SMPROGRAMS\Dia\FAQ.lnk" "$INSTDIR\help\C\faq.html"
2136 CreateShortCut "$DESKTOP\Dia.lnk" "$INSTDIR\bin\diaw.exe"
2137 SetOutPath "$INSTDIR"
2139 ; write out uninstaller
2140 SetOverwrite on
2141 WriteUninstaller "$INSTDIR\${DIA_UNINST_EXE}"
2142 SetOverwrite off
2143 CreateShortCut "$SMPROGRAMS\Dia\Uninstall.lnk" "$INSTDIR\${DIA_UNINST_EXE}"
2145 done:
2146 SectionEnd ; end of default Dia section
2148 Section $(TRANSLATIONS_SECTION_TITLE) SecTranslations
2149 SetOverwrite On
2150 ${SetOutPath} "$INSTDIR\locale\am\LC_MESSAGES"
2151 ${File} "..\..\..\locale\am\LC_MESSAGES\" "dia.mo"
2152 ${SetOutPath} "$INSTDIR\locale\az\LC_MESSAGES"
2153 ${File} "..\..\..\locale\az\LC_MESSAGES\" "dia.mo"
2154 ${SetOutPath} "$INSTDIR\locale\be\LC_MESSAGES"
2155 ${File} "..\..\..\locale\be\LC_MESSAGES\" "dia.mo"
2156 ${SetOutPath} "$INSTDIR\locale\bg\LC_MESSAGES"
2157 ${File} "..\..\..\locale\bg\LC_MESSAGES\" "dia.mo"
2158 ${SetOutPath} "$INSTDIR\locale\bs\LC_MESSAGES"
2159 ${File} "..\..\..\locale\bs\LC_MESSAGES\" "dia.mo"
2160 ${SetOutPath} "$INSTDIR\locale\ca\LC_MESSAGES"
2161 ${File} "..\..\..\locale\ca\LC_MESSAGES\" "dia.mo"
2162 ${SetOutPath} "$INSTDIR\locale\cs\LC_MESSAGES"
2163 ${File} "..\..\..\locale\cs\LC_MESSAGES\" "dia.mo"
2164 ${SetOutPath} "$INSTDIR\locale\da\LC_MESSAGES"
2165 ${File} "..\..\..\locale\da\LC_MESSAGES\" "dia.mo"
2166 ${SetOutPath} "$INSTDIR\locale\de\LC_MESSAGES"
2167 ${File} "..\..\..\locale\de\LC_MESSAGES\" "dia.mo"
2168 ${SetOutPath} "$INSTDIR\locale\el\LC_MESSAGES"
2169 ${File} "..\..\..\locale\el\LC_MESSAGES\" "dia.mo"
2170 ${SetOutPath} "$INSTDIR\locale\en_CA\LC_MESSAGES"
2171 ${File} "..\..\..\locale\en_CA\LC_MESSAGES\" "dia.mo"
2172 ${SetOutPath} "$INSTDIR\locale\en_GB\LC_MESSAGES"
2173 ${File} "..\..\..\locale\en_GB\LC_MESSAGES\" "dia.mo"
2174 ${SetOutPath} "$INSTDIR\locale\es\LC_MESSAGES"
2175 ${File} "..\..\..\locale\es\LC_MESSAGES\" "dia.mo"
2176 ${SetOutPath} "$INSTDIR\locale\eu\LC_MESSAGES"
2177 ${File} "..\..\..\locale\eu\LC_MESSAGES\" "dia.mo"
2178 ${SetOutPath} "$INSTDIR\locale\fi\LC_MESSAGES"
2179 ${File} "..\..\..\locale\fi\LC_MESSAGES\" "dia.mo"
2180 ${SetOutPath} "$INSTDIR\locale\fr\LC_MESSAGES"
2181 ${File} "..\..\..\locale\fr\LC_MESSAGES\" "dia.mo"
2182 ${SetOutPath} "$INSTDIR\locale\ga\LC_MESSAGES"
2183 ${File} "..\..\..\locale\ga\LC_MESSAGES\" "dia.mo"
2184 ${SetOutPath} "$INSTDIR\locale\gu\LC_MESSAGES"
2185 ${File} "..\..\..\locale\gu\LC_MESSAGES\" "dia.mo"
2186 ${SetOutPath} "$INSTDIR\locale\hr\LC_MESSAGES"
2187 ${File} "..\..\..\locale\hr\LC_MESSAGES\" "dia.mo"
2188 ${SetOutPath} "$INSTDIR\locale\hu\LC_MESSAGES"
2189 ${File} "..\..\..\locale\hu\LC_MESSAGES\" "dia.mo"
2190 ${SetOutPath} "$INSTDIR\locale\id\LC_MESSAGES"
2191 ${File} "..\..\..\locale\id\LC_MESSAGES\" "dia.mo"
2192 ${SetOutPath} "$INSTDIR\locale\is\LC_MESSAGES"
2193 ${File} "..\..\..\locale\is\LC_MESSAGES\" "dia.mo"
2194 ${SetOutPath} "$INSTDIR\locale\it\LC_MESSAGES"
2195 ${File} "..\..\..\locale\it\LC_MESSAGES\" "dia.mo"
2196 ${SetOutPath} "$INSTDIR\locale\ja\LC_MESSAGES"
2197 ${File} "..\..\..\locale\ja\LC_MESSAGES\" "dia.mo"
2198 ${SetOutPath} "$INSTDIR\locale\ko\LC_MESSAGES"
2199 ${File} "..\..\..\locale\ko\LC_MESSAGES\" "dia.mo"
2200 ${SetOutPath} "$INSTDIR\locale\mk\LC_MESSAGES"
2201 ${File} "..\..\..\locale\mk\LC_MESSAGES\" "dia.mo"
2202 ${SetOutPath} "$INSTDIR\locale\ml\LC_MESSAGES"
2203 ${File} "..\..\..\locale\ml\LC_MESSAGES\" "dia.mo"
2204 ${SetOutPath} "$INSTDIR\locale\mn\LC_MESSAGES"
2205 ${File} "..\..\..\locale\mn\LC_MESSAGES\" "dia.mo"
2206 ${SetOutPath} "$INSTDIR\locale\ms\LC_MESSAGES"
2207 ${File} "..\..\..\locale\ms\LC_MESSAGES\" "dia.mo"
2208 ${SetOutPath} "$INSTDIR\locale\nb\LC_MESSAGES"
2209 ${File} "..\..\..\locale\nb\LC_MESSAGES\" "dia.mo"
2210 ${SetOutPath} "$INSTDIR\locale\ne\LC_MESSAGES"
2211 ${File} "..\..\..\locale\ne\LC_MESSAGES\" "dia.mo"
2212 ${SetOutPath} "$INSTDIR\locale\nl\LC_MESSAGES"
2213 ${File} "..\..\..\locale\nl\LC_MESSAGES\" "dia.mo"
2214 ${SetOutPath} "$INSTDIR\locale\nn\LC_MESSAGES"
2215 ${File} "..\..\..\locale\nn\LC_MESSAGES\" "dia.mo"
2216 ${SetOutPath} "$INSTDIR\locale\no\LC_MESSAGES"
2217 ${File} "..\..\..\locale\no\LC_MESSAGES\" "dia.mo"
2218 ${SetOutPath} "$INSTDIR\locale\pa\LC_MESSAGES"
2219 ${File} "..\..\..\locale\pa\LC_MESSAGES\" "dia.mo"
2220 ${SetOutPath} "$INSTDIR\locale\pl\LC_MESSAGES"
2221 ${File} "..\..\..\locale\pl\LC_MESSAGES\" "dia.mo"
2222 ${SetOutPath} "$INSTDIR\locale\pt\LC_MESSAGES"
2223 ${File} "..\..\..\locale\pt\LC_MESSAGES\" "dia.mo"
2224 ${SetOutPath} "$INSTDIR\locale\pt_BR\LC_MESSAGES"
2225 ${File} "..\..\..\locale\pt_BR\LC_MESSAGES\" "dia.mo"
2226 ${SetOutPath} "$INSTDIR\locale\ro\LC_MESSAGES"
2227 ${File} "..\..\..\locale\ro\LC_MESSAGES\" "dia.mo"
2228 ${SetOutPath} "$INSTDIR\locale\ru\LC_MESSAGES"
2229 ${File} "..\..\..\locale\ru\LC_MESSAGES\" "dia.mo"
2230 ${SetOutPath} "$INSTDIR\locale\rw\LC_MESSAGES"
2231 ${File} "..\..\..\locale\rw\LC_MESSAGES\" "dia.mo"
2232 ${SetOutPath} "$INSTDIR\locale\sk\LC_MESSAGES"
2233 ${File} "..\..\..\locale\sk\LC_MESSAGES\" "dia.mo"
2234 ${SetOutPath} "$INSTDIR\locale\sl\LC_MESSAGES"
2235 ${File} "..\..\..\locale\sl\LC_MESSAGES\" "dia.mo"
2236 ${SetOutPath} "$INSTDIR\locale\sq\LC_MESSAGES"
2237 ${File} "..\..\..\locale\sq\LC_MESSAGES\" "dia.mo"
2238 ${SetOutPath} "$INSTDIR\locale\sr\LC_MESSAGES"
2239 ${File} "..\..\..\locale\sr\LC_MESSAGES\" "dia.mo"
2240 ${SetOutPath} "$INSTDIR\locale\sr@Latn\LC_MESSAGES"
2241 ${File} "..\..\..\locale\sr@Latn\LC_MESSAGES\" "dia.mo"
2242 ${SetOutPath} "$INSTDIR\locale\sv\LC_MESSAGES"
2243 ${File} "..\..\..\locale\sv\LC_MESSAGES\" "dia.mo"
2244 ${SetOutPath} "$INSTDIR\locale\tr\LC_MESSAGES"
2245 ${File} "..\..\..\locale\tr\LC_MESSAGES\" "dia.mo"
2246 ${SetOutPath} "$INSTDIR\locale\uk\LC_MESSAGES"
2247 ${File} "..\..\..\locale\uk\LC_MESSAGES\" "dia.mo"
2248 ${SetOutPath} "$INSTDIR\locale\vi\LC_MESSAGES"
2249 ${File} "..\..\..\locale\vi\LC_MESSAGES\" "dia.mo"
2250 ${SetOutPath} "$INSTDIR\locale\zh_CN\LC_MESSAGES"
2251 ${File} "..\..\..\locale\zh_CN\LC_MESSAGES\" "dia.mo"
2252 ${SetOutPath} "$INSTDIR\locale\zh_TW\LC_MESSAGES"
2253 ${File} "..\..\..\locale\zh_TW\LC_MESSAGES\" "dia.mo"
2255 ${SetOutPath} "$INSTDIR\help\pl"
2256 ${File} "..\..\..\help\pl\" "dia-manual.chm"
2257 ${File} "..\..\..\help\pl\" "dia-manual.pdf"
2258 CreateDirectory "$SMPROGRAMS\Dia\Polish"
2259 CreateShortCut "$SMPROGRAMS\Dia\Polish\Dia Manual (CHM).lnk" "$INSTDIR\help\pl\dia-manual.chm"
2260 CreateShortCut "$SMPROGRAMS\Dia\Polish\Dia Manual (PDF).lnk" "$INSTDIR\help\pl\dia-manual.pdf"
2261 ${SetOutPath} "$INSTDIR\help\eu"
2262 ${File} "..\..\..\help\eu\" "dia-manual.chm"
2263 ${File} "..\..\..\help\eu\" "dia-manual.pdf"
2264 CreateDirectory "$SMPROGRAMS\Dia\Basque"
2265 CreateShortCut "$SMPROGRAMS\Dia\Basque\Dia Manual (CHM).lnk" "$INSTDIR\help\eu\dia-manual.chm"
2266 CreateShortCut "$SMPROGRAMS\Dia\Basque\Dia Manual (PDF).lnk" "$INSTDIR\help\eu\dia-manual.pdf"
2268 SectionEnd
2270 Section -closelogfile
2271 FileClose $UninstLog
2272 SetFileAttributes "$INSTDIR\${UninstLog}" READONLY|SYSTEM|HIDDEN
2273 SectionEnd
2275 ;--------------------------------
2276 ;Uninstaller Section
2278 Section Uninstall
2280 Call un.CheckUserInstallRights
2281 Pop $R0
2282 StrCmp $R0 "NONE" no_rights
2283 StrCmp $R0 "HKCU" try_hkcu try_hklm
2285 try_hkcu:
2286 ReadRegStr $R0 HKCU ${DIA_REG_KEY} ""
2287 StrCmp $R0 $INSTDIR 0 cant_uninstall
2288 ; HKCU install path matches our INSTDIR.. so uninstall
2289 DeleteRegKey HKCU ${DIA_REG_KEY}
2290 DeleteRegKey HKCU "${DIA_UNINSTALL_KEY}"
2291 Goto cont_uninstall
2293 try_hklm:
2294 ReadRegStr $R0 HKLM ${DIA_REG_KEY} ""
2295 StrCmp $R0 $INSTDIR 0 try_hkcu
2296 ; HKLM install path matches our INSTDIR.. so uninstall
2297 DeleteRegKey HKLM ${DIA_REG_KEY}
2298 DeleteRegKey HKLM "${DIA_UNINSTALL_KEY}"
2299 DeleteRegKey HKLM "${HKLM_APP_PATHS_KEY}"
2300 DeleteRegKey HKLM "${HKLM_CMD_PATHS_KEY}"
2301 ; Sets start menu and desktop scope to all users..
2302 SetShellVarContext "all"
2304 cont_uninstall:
2305 DeleteRegKey HKEY_CLASSES_ROOT "diaFile"
2306 DeleteRegKey HKEY_CLASSES_ROOT ".dia"
2308 ; The WinPrefs plugin may have left this behind..
2309 DeleteRegValue HKCU "${DIA_STARTUP_RUN_KEY}" "Dia"
2310 DeleteRegValue HKLM "${DIA_STARTUP_RUN_KEY}" "Dia"
2311 ; Remove Language preference info
2312 DeleteRegKey HKCU ${DIA_REG_KEY} ;${MUI_LANGDLL_REGISTRY_ROOT} ${MUI_LANGDLL_REGISTRY_KEY}
2314 ; Can't uninstall if uninstall.log is missing!
2315 IfFileExists "$INSTDIR\${UninstLog}" +3
2316 MessageBox MB_OK|MB_ICONSTOP "${UninstLog} not found!"
2317 Goto no_uninstlog
2319 Push $R0
2320 SetFileAttributes "$INSTDIR\${UninstLog}" NORMAL
2321 FileOpen $UninstLog "$INSTDIR\${UninstLog}" r
2323 LoopRead:
2324 ClearErrors
2325 FileRead $UninstLog $R0
2326 IfErrors LoopDone
2328 Push $R0
2329 Call un.TrimNewLines
2330 Pop $R0
2331 IfFileExists "$R0\*.*" 0 +3
2332 RMDir $R0 #is dir
2333 Goto LoopRead
2334 Delete $R0 #is file
2336 Goto LoopRead
2337 LoopDone:
2338 FileClose $UninstLog
2339 Delete "$INSTDIR\${UninstLog}"
2340 Pop $R0
2341 Delete "$INSTDIR\${DIA_UNINST_EXE}"
2343 no_uninstlog:
2344 ; Shortcuts..
2345 Delete "$SMPROGRAMS\Dia\Dia.lnk"
2346 Delete "$SMPROGRAMS\Dia\Uninstall.lnk"
2347 Delete "$SMPROGRAMS\Dia\Dia Manual (CHM).lnk"
2348 Delete "$SMPROGRAMS\Dia\Dia Manual (PDF).lnk"
2349 Delete "$SMPROGRAMS\Dia\FAQ.lnk"
2350 Delete "$SMPROGRAMS\Dia\Basque\Dia Manual (CHM).lnk"
2351 Delete "$SMPROGRAMS\Dia\Basque\Dia Manual (PDF).lnk"
2352 RMDir "$SMPROGRAMS\Dia\Basque"
2353 Delete "$SMPROGRAMS\Dia\Polish\Dia Manual (CHM).lnk"
2354 Delete "$SMPROGRAMS\Dia\Polish\Dia Manual (PDF).lnk"
2355 RMDir "$SMPROGRAMS\Dia\Polish"
2356 RMDir "$SMPROGRAMS\Dia"
2357 Delete "$DESKTOP\Dia.lnk"
2359 IfSilent done
2360 MessageBox MB_YESNO|MB_ICONEXCLAMATION $(un.DIA_UNINSTALLATION_WARNING) IDNO done
2361 skip_warning:
2362 RMDir /r "$INSTDIR"
2364 MessageBox MB_YESNO|MB_ICONEXCLAMATION $(un.DIA_DOTDIA_WARNING) IDNO done
2365 SetShellVarContext current
2366 RMDir /r "$PROFILE\.dia"
2368 Goto done
2370 cant_uninstall:
2371 IfSilent skip_mb
2372 MessageBox MB_OK $(un.DIA_UNINSTALL_ERROR_1) IDOK
2373 skip_mb:
2374 Quit
2376 no_rights:
2377 IfSilent skip_mb1
2378 MessageBox MB_OK $(un.DIA_UNINSTALL_ERROR_2) IDOK
2379 skip_mb1:
2380 Quit
2382 done:
2383 SectionEnd ; end of uninstall section
2385 ;--------------------------------
2386 ;Descriptions
2387 !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
2388 !insertmacro MUI_DESCRIPTION_TEXT ${SecDia} \
2389 $(DIA_SECTION_DESCRIPTION)
2390 !insertmacro MUI_DESCRIPTION_TEXT ${SecTranslations} \
2391 $(TRANSLATIONS_SECTION_DESCRIPTION)
2392 !insertmacro MUI_FUNCTION_DESCRIPTION_END
2394 ;--------------------------------
2395 ;Functions
2397 Function CheckUserInstallRights
2398 ClearErrors
2399 UserInfo::GetName
2400 IfErrors Win9x
2401 Pop $0
2402 UserInfo::GetAccountType
2403 Pop $1
2405 StrCmp $1 "Admin" 0 +3
2406 StrCpy $1 "HKLM"
2407 Goto done
2408 StrCmp $1 "Power" 0 +3
2409 StrCpy $1 "HKLM"
2410 Goto done
2411 StrCmp $1 "User" 0 +3
2412 StrCpy $1 "HKCU"
2413 Goto done
2414 StrCmp $1 "Guest" 0 +3
2415 StrCpy $1 "NONE"
2416 Goto done
2417 ; Unknown error
2418 StrCpy $1 "NONE"
2419 Goto done
2421 Win9x:
2422 StrCpy $1 "HKLM"
2424 done:
2425 Push $1
2426 FunctionEnd
2428 Function un.CheckUserInstallRights
2429 ClearErrors
2430 UserInfo::GetName
2431 IfErrors Win9x
2432 Pop $0
2433 UserInfo::GetAccountType
2434 Pop $1
2436 StrCmp $1 "Admin" 0 +3
2437 StrCpy $1 "HKLM"
2438 Goto done
2439 StrCmp $1 "Power" 0 +3
2440 StrCpy $1 "HKLM"
2441 Goto done
2442 StrCmp $1 "User" 0 +3
2443 StrCpy $1 "HKCU"
2444 Goto done
2445 StrCmp $1 "Guest" 0 +3
2446 StrCpy $1 "NONE"
2447 Goto done
2448 ; Unknown error
2449 StrCpy $1 "NONE"
2450 Goto done
2452 Win9x:
2453 StrCpy $1 "HKLM"
2455 done:
2456 Push $1
2457 FunctionEnd
2460 ; Usage:
2461 ; Push $0 ; Path string
2462 ; Call VerifyDir
2463 ; Pop $0 ; 0 - Bad path 1 - Good path
2465 Function VerifyDir
2466 Pop $0
2467 Loop:
2468 IfFileExists $0 dir_exists
2469 StrCpy $1 $0 ; save last
2470 Push $0
2471 Call GetParent
2472 Pop $0
2473 StrLen $2 $0
2474 ; IfFileExists "C:" on xp returns true and on win2k returns false
2475 ; So we're done in such a case..
2476 StrCmp $2 "2" loop_done
2477 Goto Loop
2479 loop_done:
2480 StrCpy $1 "$0\diaFooB"
2481 ; Check if we can create dir on this drive..
2482 ClearErrors
2483 CreateDirectory $1
2484 IfErrors DirBad DirGood
2486 dir_exists:
2487 ClearErrors
2488 FileOpen $1 "$0\diafoo.bar" w
2489 IfErrors PathBad PathGood
2491 DirGood:
2492 RMDir $1
2493 Goto PathGood1
2495 DirBad:
2496 RMDir $1
2497 Goto PathBad1
2499 PathBad:
2500 FileClose $1
2501 Delete "$0\diafoo.bar"
2502 PathBad1:
2503 StrCpy $0 "0"
2504 Push $0
2505 Return
2507 PathGood:
2508 FileClose $1
2509 Delete "$0\diafoo.bar"
2510 PathGood1:
2511 StrCpy $0 "1"
2512 Push $0
2513 FunctionEnd
2515 Function .onVerifyInstDir
2516 Push $INSTDIR
2517 Call VerifyDir
2518 Pop $0
2519 StrCmp $0 "0" 0 dir_good
2520 Abort
2521 dir_good:
2522 FunctionEnd
2524 ; GetParent
2525 ; input, top of stack (e.g. C:\Program Files\Poop)
2526 ; output, top of stack (replaces, with e.g. C:\Program Files)
2527 ; modifies no other variables.
2529 ; Usage:
2530 ; Push "C:\Program Files\Directory\Whatever"
2531 ; Call GetParent
2532 ; Pop $R0
2533 ; ; at this point $R0 will equal "C:\Program Files\Directory"
2534 Function GetParent
2535 Exch $0 ; old $0 is on top of stack
2536 Push $1
2537 Push $2
2538 StrCpy $1 -1
2539 loop:
2540 StrCpy $2 $0 1 $1
2541 StrCmp $2 "" exit
2542 StrCmp $2 "\" exit
2543 IntOp $1 $1 - 1
2544 Goto loop
2545 exit:
2546 StrCpy $0 $0 $1
2547 Pop $2
2548 Pop $1
2549 Exch $0 ; put $0 on top of stack, restore $0 to original value
2550 FunctionEnd
2552 Function .onInit
2553 StrCpy $name "Dia ${DIA_VERSION}"
2554 !insertmacro MUI_LANGDLL_DISPLAY
2555 ClearErrors
2556 ReadRegStr $GTKBIN HKLM "Software\GTK\2.0" "DllPath"
2557 ReadRegStr $0 HKLM "Software\GTK\2.0" "Version"
2558 StrCpy $1 $0 4
2559 StrCmp $1 "2.0." outdated_gtk
2560 StrCmp $1 "2.1." outdated_gtk
2561 StrCmp $1 "2.2." outdated_gtk
2562 StrCmp $1 "2.3." outdated_gtk
2563 StrCmp $1 "2.4." outdated_gtk
2564 StrCmp $1 "2.5." outdated_gtk
2565 Goto has_gtk
2566 no_gtk:
2567 Push "GTKBIN" ; push the search string onto the stack
2568 Push "C:\Program Files\Common Files\GTK\2.0\bin" ; push a default value onto the stack
2569 Call GetParameterValue
2570 Pop $GTKBIN
2571 IfFileExists "$GTKBIN\libgtk-win32-2.0-0.dll" has_gtk
2572 outdated_gtk:
2573 MessageBox MB_OK|MB_ICONEXCLAMATION $(DIA_NO_GTK)
2574 Abort $(DIA_NO_GTK)
2576 has_gtk:
2578 ; If install path was set on the command, use it.
2579 StrCmp $INSTDIR "" 0 instdir_done
2581 Call CheckUserInstallRights
2582 Pop $0
2584 StrCmp $0 "HKLM" 0 user_dir
2585 StrCpy $INSTDIR "$PROGRAMFILES\Dia"
2586 Goto instdir_done
2587 user_dir:
2588 StrCpy $2 "$SMPROGRAMS"
2589 Push $2
2590 Call GetParent
2591 Call GetParent
2592 Pop $2
2593 StrCpy $INSTDIR "$2\Dia"
2595 instdir_done:
2597 FunctionEnd
2599 Function un.TrimNewlines
2600 Exch $R0
2601 Push $R1
2602 Push $R2
2603 StrCpy $R1 0
2605 loop:
2606 IntOp $R1 $R1 - 1
2607 StrCpy $R2 $R0 1 $R1
2608 StrCmp $R2 "$\r" loop
2609 StrCmp $R2 "$\n" loop
2610 IntOp $R1 $R1 + 1
2611 IntCmp $R1 0 no_trim_needed
2612 StrCpy $R0 $R0 $R1
2614 no_trim_needed:
2615 Pop $R2
2616 Pop $R1
2617 Exch $R0
2618 FunctionEnd
2620 ; GetParameterValue
2621 ; Chris Morgan<cmorgan@alum.wpi.edu> 5/10/2004
2622 ; -Updated 4/7/2005 to add support for retrieving a command line switch
2623 ; and additional documentation
2625 ; Searches the command line input, retrieved using GetParameters, for the
2626 ; value of an option given the option name. If no option is found the
2627 ; default value is placed on the top of the stack upon function return.
2629 ; This function can also be used to detect the existence of just a
2630 ; command line switch like /OUTPUT Pass the default and "OUTPUT"
2631 ; on the stack like normal. An empty return string "" will indicate
2632 ; that the switch was found, the default value indicates that
2633 ; neither a parameter or switch was found.
2635 ; Inputs - Top of stack is default if parameter isn't found,
2636 ; second in stack is parameter to search for, ex. "OUTPUT"
2637 ; Outputs - Top of the stack contains the value of this parameter
2638 ; So if the command line contained /OUTPUT=somedirectory, "somedirectory"
2639 ; will be on the top of the stack when this function returns
2641 ; Register usage
2642 ;$R0 - default return value if the parameter isn't found
2643 ;$R1 - input parameter, for example OUTPUT from the above example
2644 ;$R2 - the length of the search, this is the search parameter+2
2645 ; as we have '/OUTPUT='
2646 ;$R3 - the command line string
2647 ;$R4 - result from StrStr calls
2648 ;$R5 - search for ' ' or '"'
2650 Function GetParameterValue
2651 Exch $R0 ; get the top of the stack(default parameter) into R0
2652 Exch ; exchange the top of the stack(default) with
2653 ; the second in the stack(parameter to search for)
2654 Exch $R1 ; get the top of the stack(search parameter) into $R1
2656 ;Preserve on the stack the registers used in this function
2657 Push $R2
2658 Push $R3
2659 Push $R4
2660 Push $R5
2662 Strlen $R2 $R1+2 ; store the length of the search string into R2
2664 Call GetParameters ; get the command line parameters
2665 Pop $R3 ; store the command line string in R3
2667 # search for quoted search string
2668 StrCpy $R5 '"' ; later on we want to search for a open quote
2669 Push $R3 ; push the 'search in' string onto the stack
2670 Push '"/$R1=' ; push the 'search for'
2671 Call StrStr ; search for the quoted parameter value
2672 Pop $R4
2673 StrCpy $R4 $R4 "" 1 ; skip over open quote character, "" means no maxlen
2674 StrCmp $R4 "" "" next ; if we didn't find an empty string go to next
2676 # search for non-quoted search string
2677 StrCpy $R5 ' ' ; later on we want to search for a space since we
2678 ; didn't start with an open quote '"' we shouldn't
2679 ; look for a close quote '"'
2680 Push $R3 ; push the command line back on the stack for searching
2681 Push '/$R1=' ; search for the non-quoted search string
2682 Call StrStr
2683 Pop $R4
2685 ; $R4 now contains the parameter string starting at the search string,
2686 ; if it was found
2687 next:
2688 StrCmp $R4 "" check_for_switch ; if we didn't find anything then look for
2689 ; usage as a command line switch
2690 # copy the value after /$R1= by using StrCpy with an offset of $R2,
2691 # the length of '/OUTPUT='
2692 StrCpy $R0 $R4 "" $R2 ; copy commandline text beyond parameter into $R0
2693 # search for the next parameter so we can trim this extra text off
2694 Push $R0
2695 Push $R5 ; search for either the first space ' ', or the first
2696 ; quote '"'
2697 ; if we found '"/output' then we want to find the
2698 ; ending ", as in '"/output=somevalue"'
2699 ; if we found '/output' then we want to find the first
2700 ; space after '/output=somevalue'
2701 Call StrStr ; search for the next parameter
2702 Pop $R4
2703 StrCmp $R4 "" done ; if 'somevalue' is missing, we are done
2704 StrLen $R4 $R4 ; get the length of 'somevalue' so we can copy this
2705 ; text into our output buffer
2706 StrCpy $R0 $R0 -$R4 ; using the length of the string beyond the value,
2707 ; copy only the value into $R0
2708 goto done ; if we are in the parameter retrieval path skip over
2709 ; the check for a command line switch
2711 ; See if the parameter was specified as a command line switch, like '/output'
2712 check_for_switch:
2713 Push $R3 ; push the command line back on the stack for searching
2714 Push '/$R1' ; search for the non-quoted search string
2715 Call StrStr
2716 Pop $R4
2717 StrCmp $R4 "" done ; if we didn't find anything then use the default
2718 StrCpy $R0 "" ; otherwise copy in an empty string since we found the
2719 ; parameter, just didn't find a value
2721 done:
2722 Pop $R5
2723 Pop $R4
2724 Pop $R3
2725 Pop $R2
2726 Pop $R1
2727 Exch $R0 ; put the value in $R0 at the top of the stack
2728 FunctionEnd
2730 ; GetParameters
2731 ; input, none
2732 ; output, top of stack (replaces, with e.g. whatever)
2733 ; modifies no other variables.
2735 Function GetParameters
2737 Push $R0
2738 Push $R1
2739 Push $R2
2740 Push $R3
2742 StrCpy $R2 1
2743 StrLen $R3 $CMDLINE
2745 ;Check for quote or space
2746 StrCpy $R0 $CMDLINE $R2
2747 StrCmp $R0 '"' 0 +3
2748 StrCpy $R1 '"'
2749 Goto loop
2750 StrCpy $R1 " "
2752 loop:
2753 IntOp $R2 $R2 + 1
2754 StrCpy $R0 $CMDLINE 1 $R2
2755 StrCmp $R0 $R1 get
2756 StrCmp $R2 $R3 get
2757 Goto loop
2759 get:
2760 IntOp $R2 $R2 + 1
2761 StrCpy $R0 $CMDLINE 1 $R2
2762 StrCmp $R0 " " get
2763 StrCpy $R0 $CMDLINE "" $R2
2765 Pop $R3
2766 Pop $R2
2767 Pop $R1
2768 Exch $R0
2770 FunctionEnd
2772 !define StrStr "!insertmacro StrStr"
2774 !macro StrStr ResultVar String SubString
2775 Push `${String}`
2776 Push `${SubString}`
2777 Call StrStr
2778 Pop `${ResultVar}`
2779 !macroend
2781 Function StrStr
2782 /*After this point:
2783 ------------------------------------------
2784 $R0 = SubString (input)
2785 $R1 = String (input)
2786 $R2 = SubStringLen (temp)
2787 $R3 = StrLen (temp)
2788 $R4 = StartCharPos (temp)
2789 $R5 = TempStr (temp)*/
2791 ;Get input from user
2792 Exch $R0
2793 Exch
2794 Exch $R1
2795 Push $R2
2796 Push $R3
2797 Push $R4
2798 Push $R5
2800 ;Get "String" and "SubString" length
2801 StrLen $R2 $R0
2802 StrLen $R3 $R1
2803 ;Start "StartCharPos" counter
2804 StrCpy $R4 0
2806 ;Loop until "SubString" is found or "String" reaches its end
2807 loop:
2808 ;Remove everything before and after the searched part ("TempStr")
2809 StrCpy $R5 $R1 $R2 $R4
2811 ;Compare "TempStr" with "SubString"
2812 StrCmp $R5 $R0 done
2813 ;If not "SubString", this could be "String"'s end
2814 IntCmp $R4 $R3 done 0 done
2815 ;If not, continue the loop
2816 IntOp $R4 $R4 + 1
2817 Goto loop
2818 done:
2820 /*After this point:
2821 ------------------------------------------
2822 $R0 = ResultVar (output)*/
2824 ;Remove part before "SubString" on "String" (if there has one)
2825 StrCpy $R0 $R1 `` $R4
2827 ;Return output to user
2828 Pop $R5
2829 Pop $R4
2830 Pop $R3
2831 Pop $R2
2832 Pop $R1
2833 Exch $R0
2834 FunctionEnd