home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 18 / 18.iso / w / w372 / 1.ddi / QUARK.INF < prev    next >
Encoding:
INI File  |  1992-12-15  |  26.1 KB  |  783 lines

  1. ;
  2. ; quark.inf - Installer customizing file.
  3. ;
  4. ; Copyright (c) 1992, Quark, Inc.
  5. ; All Rights Reserved
  6. ;
  7.  
  8.  
  9. ; About This File
  10. ; ===============
  11. ;
  12. ; The information in this file determines
  13. ;
  14. ;   * All dialog strings.
  15. ;   * The names of the disks and directories from which, and to which, Install
  16. ;     copies files
  17. ;
  18. ;   * The name of the group that Install creates in Program Manager's window, and the
  19. ;     names of program items that Install adds to that group
  20. ;
  21. ; You can create your own Install program by changing some of the information
  22. ; in this file.
  23. ;
  24. ; The Parts of INSTALL.INF
  25. ; -------------------------
  26. ;
  27. ; INSTALL.INF is similar in format to a Windows initialization (.INI) file.
  28. ;
  29. ; Sections: INSTALL.INF is divided into sections. Each section is identified
  30. ;        by an alphanumeric name enclosed in square brackets.
  31. ;
  32. ;           Most section names are "hard-coded": Install is written to search for
  33. ;           in INSTALL.INF for that specific section name. However, some section
  34. ;           names are defined within other sections, and are therefore easily 
  35. ;           customizable.
  36. ;
  37. ; Comments: A comment begins with a semicolon. You can include a comment 
  38. ;           on the same line as syntax, as long as it comes after the syntax.
  39. ; Spaces:   Spaces are ignored, except when between double quotes.
  40. ;           Blank lines are also ignored.
  41. ;
  42. ; Special
  43. ;  Chars:   The ampersand (&) is a special character to Windows. In
  44. ;        those strings that appear in dialog boxes, the ampersand
  45. ;        transformed into an accelerator (an underscore below the
  46. ;        following character).
  47. ;
  48. ;        Special non-"non printable" characters (e.g.: return, formfeed, (r),
  49. ;        etc.) can be obtained by using C-style escapes (i.e.:
  50. ;        \n, \f, \256 (octal) [or \xAE (hex)] for the previous examples).
  51. ;
  52. ;        NOTE: All text *must* be entered on a single line. You can
  53. ;        format the text into multiple lines by inserting '\n' wherever
  54. ;        you want a line to break, but text strings in this file must typed
  55. ;        as one entire line.
  56. ;
  57. ;** Please do NOT localize any strings that are not inside double quotes (") **
  58. ;        
  59. ;
  60. ; Sections in This File
  61. ; ---------------------
  62. ; The rest of this file contains the actual sections and statements
  63. ; that make up the working file. It also includes comments that 
  64. ; explain each section and statement.
  65. ;
  66. [version]
  67.   instver = 0x01010133
  68.   regver = "3.11.1"
  69.   prodver = 0x03010100
  70.   prodid = 3
  71.  
  72.  
  73. [data]
  74. ; The [data] section includes misc. information about the
  75. ; location application.
  76.   name        = "QuarkXPress for Windows"
  77. ;do not localize
  78.   regfile    = xpress.reg
  79.  
  80.   Black        = 0x00000000
  81.   Red        = 0x000000FF
  82.   Green        = 0x0000FF00
  83.   Blue        = 0x00FF0000
  84.   Cyan        = 0x00FFFF00
  85.   Magenta    = 0x00FF00FF
  86.   Yellow    = 0x0000FFFF
  87.   White        = 0x00FFFFFF
  88.  
  89.  
  90. [message]
  91.   changed = "Changing this path will require you to reimport all associated pictures for the affected QuarkXPress documents.  Do you want to do this?"
  92.   complete = "Install complete."
  93.  
  94. [message.update]
  95.   badserialnum = "This update disk does not go with the specified copy of QuarkXPress."
  96.   fail = "Program not updated."
  97.   succ = "Program succesfully updated."
  98.  
  99. [dialog]
  100. ; The [dialog] section contains information pertaining to Install's dialog box. 
  101. ;
  102. ; The Caption statement determines the text that appears in the title bar 
  103. ; of Install's dialog box. 
  104. ;
  105. ; The following Caption statement specifies the caption "Demo App Installation".
  106. ; To specify your own caption, replace the text "Demo App Installation" with the 
  107. ; title you want (enclosed in double quotes).
  108.  
  109.   caption = "QuarkXPress for Windows Installer"
  110.   continue = "&Continue"
  111.   next = "&Next"
  112.   abortinstall = "&Abort Install"
  113.   ok = "OK"
  114.   cancel = "Cancel"
  115.   install = "&Install"
  116.   abortreg = "&Abort Installation"
  117.   quit = "&Quit"
  118.  
  119. [dialog.update]
  120.   caption = "QuarkXPress for Windows Updater"
  121.  
  122. [demo.dialog]
  123.   caption = "Demo QuarkXPress for Windows Installer"
  124.   abortinstall = "&Abort Install"
  125.   ok = "OK"
  126.   cancel = "Cancel"
  127.   install = "&Install"
  128.  
  129. [dialog.splash]
  130.   color = "Favorite &Color Scheme:"
  131.   para1 = "Welcome to the QuarkXPress\256 for Windows Installation and Registration program. This program will install QuarkXPress and create your User Registration File."
  132.   para2 = "By completing the Installation/Registration procedure, you agree to the terms of the QuarkXPress Software License and Limited Warranty Agreement located on the disk packet."
  133.   para3 = "The Registration program makes use of fields that have associated drop-down lists. Clicking on the arrow button displays a list with possible entries for the field, as shown in the example below."
  134.   copyright = "\251 1989-1992 Quark, Inc.\nAll Rights Reserved\nU.S. Patent Pending, Quark, Inc."
  135.  
  136.  
  137. ;For list comboboxes (those beginning with [combo*]):  If no number is given,
  138. ;the first entry becomes the default (selected). The combo box is not sorted,
  139. ;so the entries will appear as you list them.
  140. [combo.dialog.splash.color]
  141. "Current"
  142. "Black"
  143. "Red"
  144. "Green"
  145. "Blue"
  146. "Cyan"
  147. "Magenta"
  148. "Yellow"
  149. "White"
  150.  
  151.  
  152. [dialog.reg]
  153.   caption = "Product Registration"
  154.   title = "Please enter your registration information."
  155.   serialnum = "Serial &Number:"
  156.   phone = "Area Code/&Phone:"
  157.   contact = "&Contact:"
  158.   lname = "&Last Name"
  159.   fname = "&First Name"
  160.   mi = "M.I."
  161.   companyname = "Co&mpany Name:"
  162.   companyaddr = "Street &Address:"
  163.   city = "C&ity:"
  164.   state = "&State/Province:"
  165.   zip = "&ZIP/Postal Code:"
  166.   country = "C&ountry:"
  167.   purdate = "QuarkXPress Purchase &Date :"
  168.   dealername = "QuarkXPress &Dealer Name:"
  169.   dealercity = "&Dealer\x92s City and State/Province:"
  170.  
  171. [dialog.reg.intl]
  172.   country = "C&ountry:"
  173.   lname = "&Last Name:"
  174.   fname = "&First Name:"
  175.   addr = "Postal &Address:"
  176.   phone = "&Phone:"
  177.   fax = "&FAX:"
  178.   alloneline = "(Please do not put all details on one line)"
  179.   dealercity = "&Dealer\x92s Address:"
  180.  
  181. [combo.dialog.reg.contact]
  182. "Dr."
  183. "Miss"
  184. "Mr."
  185. "Mrs."
  186. "Ms."
  187.  
  188. [combo.dialog.reg.country]
  189. "U.S.A."
  190. "Canada"
  191.  
  192. [combo.dialog.reg.intl.country]
  193. "Canada"
  194. "Denmark"
  195. "Finland"
  196. "Germany"
  197. "India"
  198. "Malaysia"
  199. "Norway"
  200. "Singapore"
  201. "Sweden"
  202. "Switzerland"
  203. "Turkey"
  204. "U.K."
  205.  
  206. [dialog.sysinfo]
  207.   caption = "System Information"
  208.   title = "This information will help Quark\x92s Technical Support staff assist you."
  209.   numpcs = "Approximate number of PCs at your &location:"
  210.   printers = "PostScript &Printers: (please select all that apply)"
  211.   scanner = "&Scanner:"
  212.   otherprinters = "Other &Printers:"
  213.   nettype = "&Network Type:"
  214.   netsoftware = "&Network Software:"
  215.   otherapps = "What other PC &applications do you use?"
  216.  
  217. [combo.dialog.sysinfo.numpcs]
  218. "1"
  219. "2"
  220. "3-5"
  221. "6-10"
  222. "11-20"
  223. "21-100"
  224. "101-500"
  225. "501+"
  226.  
  227. [listbox.dialog.sysinfo.printers]
  228. "Apple Computer"
  229. "Hewlett-Packard"
  230. "I.B.M."
  231. "Texas Instruments"
  232. "Okidata"
  233. "Canon"
  234. "Brother"
  235. "NEC"
  236. "Oc\xE9"
  237. "QMS"
  238. "Linotronic"
  239. "AGFA"
  240.  
  241. [combo.dialog.sysinfo.scanner]
  242. "None"
  243. "Abaton"
  244. "Apple"
  245. "Barneyscan"
  246. "Crosfield"
  247. "Datacopy"
  248. "Dest"
  249. "Hewlett-Packard"
  250. "Howtek"
  251. "Microtek"
  252. "New Image Tech"
  253. "Scitex"
  254. "Sharp"
  255. "Thunderware"
  256. "Truevel"
  257.  
  258. [combo.dialog.sysinfo.nettype]
  259. "None"
  260. "LocalTalk"
  261. "Arcnet"
  262. "PhoneNet"
  263. "Ethernet"
  264. "Token Ring"
  265. "Other"
  266.  
  267. [combo.dialog.sysinfo.netsoftware]
  268. "None"
  269. "AppleShare"
  270. "LANtastic"
  271. "Novell NetWare"
  272. "Banyan Vines"
  273. "LAN Manager"
  274. "Other"
  275.  
  276.  
  277. [dialog.userinfo]
  278.   caption = "User Information Survey"
  279.   title = "This information will help us serve you more efficiently."
  280.   learn = "How did you &learn about QuarkXPress?"
  281.   business = "What is your primary type of &business?"
  282.   create = "What do you &create with QuarkXPress? (please select all that apply)"
  283.   othercreate = "&Other:"
  284.   publications = "What professional &publications do you read? (please select all that apply)"
  285.   otherpublications = "&Other:"
  286.   comments = "Co&mments:"
  287.  
  288. [combo.dialog.userinfo.learn]
  289. "Dealer"
  290. "Another user"
  291. "Trade show"
  292. "Service bureau"
  293. "MacWEEK"
  294. "MacUser"
  295. "MacWorld"
  296. "Macintosh News"
  297. "InfoWorld"
  298. "Byte"
  299. "PC Week"
  300. "PC World"
  301. "PC Magazine"
  302. "PC Computing"
  303. "PC Publishing"
  304. "Publish!"
  305.  
  306. [combo.dialog.userinfo.business]
  307. "Newspaper publisher"
  308. "Book publisher"
  309. "Catalog publisher"
  310. "Magazine publisher"
  311. "Advertising agency"
  312. "Graphic design"
  313. "Service bureau"
  314. "Computer-related"
  315.  
  316. [listbox.dialog.userinfo.create]
  317. "Advertisements"
  318. "Annual reports"
  319. "Books"
  320. "Brochures"
  321. "Magazines"
  322. "Newspapers"
  323. "Newsletters"
  324. "Catalogs"
  325.  
  326. [listbox.dialog.userinfo.publications]
  327. "MacWEEK"
  328. "MacUser"
  329. "MacWorld"
  330. "Macintosh News"
  331. "InfoWorld"
  332. "Byte"
  333. "PC Week"
  334. "PC World"
  335. "PC Magazine"
  336. "PC Computing"
  337. "PC Publishing"
  338. "Publish"
  339.  
  340.  
  341. [dialog.choice]
  342.   caption = "QuarkXPress for Windows Registration"
  343.   para1 = "Click OK to install QuarkXPress and create your User Registration File. Click the appropriate button if you want to review or change previously entered information."
  344.   prodreg = "Product Registration"
  345.   sysinfo = "System Information"
  346.   userinfo = "User Info. Survey"
  347.  
  348.  
  349. [dialog.thanks]
  350.   para1 = "Thank you for using Quark\x92s electronic registration! Please use the enclosed postage-paid mailer to send us your User Registration Disk as soon as possible. Be sure to include your name and telephone number on the disk."
  351.   para2 = "You must return your User Registration Disk to receive the benefits of the 90-Day Limited Warranty and the 90-Day Service Plan, as well as to qualify for future upgrade offers."
  352.  
  353. ; *** Start of actual installation ***
  354.  
  355. [dialog.startinst]
  356.   para = "To begin installation of QuarkXPress and to copy auxiliary files, click OK. You will be asked to specify a drive and directory for the QuarkXPress application and auxiliary files."
  357. [demo.dialog.startinst]
  358.   para = "To begin installation of Demo QuarkXPress and to copy auxiliary files, click OK. You will be asked to specify a drive and directory for the QuarkXPress application and auxiliary files."
  359.  
  360. [dialog.installdir]
  361.   para = "Please enter the directory in which you would like to install QuarkXPress."
  362.   customize = "&Customize..."
  363. [demo.dialog.installdir]
  364.   para = "Please enter the directory in which you would like to install Demo QuarkXPress."
  365.  
  366. [dialog.updatedir]
  367.   updatebut = "&Update"
  368.   para = "Please enter the directory in which QuarkXPress exists."
  369.  
  370. [demo.dialog.updatedir]
  371.   para = "Please enter the directory in which QuarkXPress exists."
  372.  
  373. [dialog.customize]
  374.   caption = "Select Items to Install"
  375.   section = "&Items:"
  376.   path = "&Path:"
  377.   install = "&Install Highlighted Item"
  378.   update = "&Update Highlighted Item"
  379.   delete = "D&elete Highlighted Item (!)"
  380.   reinstall = "&Reinstall Highlighted Item"
  381.   disabled_subsection = "No Details"
  382.   view_subsection = "View &Details"
  383.   hide_subsection = "Hide &Details"
  384.   browse = "&Browse..."
  385.   totals = "Totals:"
  386.  
  387. [dialog.browse]
  388.   caption = "Select Directory"
  389.   directories = "&Directories:"
  390.   drives = "Dri&ves:"
  391.  
  392. [dialog.fileerror]
  393.   caption = "File Error"
  394.   exit = "Exit"
  395. [demo.dialog.fileerror]
  396.   caption = "File Error"
  397.   exit = "Exit"
  398.  
  399. [dialog.insertdisk]
  400.   para = "Please insert the following disk:"
  401. [demo.dialog.insertdisk]
  402.   para = "Please insert the following disk:"
  403.  
  404. [dialog.progress]
  405.   text = "Press F3 to abort."
  406. [demo.dialog.progress]
  407.   text = "Press F3 to abort."
  408.  
  409.  
  410. [disks]
  411. ; The [disks] section defines the distribution disks that contain the application 
  412. ; files. Install uses this information to tell the user to insert the correct disk.
  413. ; Elsewhere within this .INF file, the distribution disks are normally referred to
  414. ; by a single-character disk ID. This section defines those disk IDs, and includes 
  415. ; information about the disk to which each disk ID refers.
  416. ;
  417. ; The disk ID '0' is reserved; it represents the system directory.
  418. ;
  419. ; The format of each disk definition is:
  420. ;     n = path, title
  421. ;
  422. ;  where
  423. ;     n       is the disk ID (a single character from 1-9 or A-Z).
  424. ;
  425. ;     path    the path of the source directory from which Install should copy 
  426. ;             the files to the disk. The path can be relative to the
  427. ;             source directory (see examples below).
  428. ;
  429. ;     title   is a descriptive name for the disk. The title should match 
  430. ;             the disk's printed or written label exactly.
  431. ; The following disk-definition statements define two distribution disks.
  432.  
  433.   1 =.,            "QuarkXPress for Windows  Disk 1"
  434.   2 =.,            "QuarkXPress for Windows  Disk 2"
  435.   3 =.,            "QuarkXPress for Windows  Disk 3"
  436.   4 =.\tutorial,    "QuarkXPress for Windows  Disk 4"
  437.   5 =.\samples,        "QuarkXPress for Windows  Disk 5"
  438.   6 =.,            "QuarkXPress User Registration Disk"
  439.   0 =.,            "Windows Directory"
  440.   x =c:\,        "Root directory"
  441.   y =.,            "Temporary Directory"
  442.   z =.,            "Install Directory"
  443.  
  444.  
  445. ; The first statement tells Install to refer to Disk 1.
  446. ; Because the period (.) denotes the current directory, the files 
  447. ; on that disk will be copied from the root directory of the
  448. ; distribution disk.
  449. ;
  450. ; You can include as many disk-definition statements as necessary. Every 
  451. ; distribution disk should have a corresponding disk-definition statement;
  452. ; otherwise, Install cannot tell the user to insert the appropriate disk.
  453.  
  454. ; The following [app.copy.appstuff] section contains section-definition
  455. ; statements. Each statement defines a section that lists application files
  456. ; to be copied as part of installation. The sections are organized by file 
  457. ; destination; you should define a separate section for each destination 
  458. ; directory.
  459. ;
  460. ; Each section definition has the following form:
  461. ;
  462. ;     [x:]dest_pathname#section_name, section_label, buffer_size, [,flags]
  463. ;    [,bitmap]
  464. ;        -or-
  465. ;     [x:]full_filename, file_title, file_size, [,flags] [,bitmap]
  466. ;
  467. ; where
  468. ;
  469. ;     #section_name    defines the name of the .INF section that lists the
  470. ;                      files to be copied (must start with IDS_GRPPREFIX).
  471. ;
  472. ;     dest_pathname    is the path name of the destination directory, relative
  473. ;                      to the installation directory for file entries and
  474. ;               explicit target directories if a group is specified.
  475. ;            (Note: "0:" is a special disk ID that represents the
  476. ;            WINDOWS system directory (the directory usually labeled
  477. ;            "\WINDOWS\system"), , and "z:" represents the install
  478. ;            destination path (eg: "c:\xpress")).
  479. ;
  480. ;     label/title    title displayed in the setup dialog for user's benefit
  481. ;
  482. ;     file_size           file size
  483. ;
  484. ;     buffer_size    additional buffering size (for newly created files and
  485. ;            such)
  486. ;
  487. ;     flags           S=selected; V=version checking (swaps childrens' state
  488. ;            if present in a group declaration), D=display children;
  489. ;            B=broken file (to be assembled into one larger file);
  490. ;            I=The file is shared (like many DLLs);C=compressed
  491. ;            file; G=not seperately selected;N=install only if
  492. ;            international;M=give special message if trying to
  493. ;            change file path (message.changed);R=install only if
  494. ;            registration;x=dummy flag (must have at least one flag
  495. ;            per section).
  496. ;
  497. ;            NOTE: The action of the switches are inherited from
  498. ;            a file's parents; any switches set on children will
  499. ;            invert (XOR) the switch setting inherited from the
  500. ;            item's parents.
  501. ;
  502. ;     bitmap        This optional item is the resource number of a bitmap
  503. ;            included in the .rc file. This bitmap is displayed
  504. ;            beside the item when examined by the customize dialog.
  505. [app.copy.appstuff]
  506.   c:\xpress#app.xpress,        "QuarkXPress for Windows",    0,    SD
  507. [demo.app.copy.appstuff]
  508.   c:\xprsdemo#app.demo.xpress,    "Demo QuarkXPress for Windows",    0,    SD
  509.  
  510. [app.xpress]
  511.   .#app.appl,            "Application Files",    0,    D
  512.   .#app.xtensions,        "XTensions",        0,    D
  513.   .\tutorial#app.tutorial,    "Tutorial Files",    0,    D
  514.   .\samples#app.samples,    "Sample Files",        0,    D
  515.  
  516. [app.demo.xpress]
  517.   .\samples#app.demo.samples,    "Sample Files",        0,    D
  518.   .#app.demo.appl,        "Application Files",    0,    D
  519.   .#app.xtensions,        "XTensions",        0,    D
  520.  
  521. [app.appl]
  522.   1:reginfo.dat,    "Quark User Registration",    30000,    GR
  523.   1:xpress.dct,        "Dictionary",            270000,    C,    dct_ico
  524.  
  525.   .\xpress.exe#app.application,    "Application",        0,    BDG
  526.  
  527.   3:olelib.dll,        "Quark OLE DLL",        60000,    CG,    packager.exe
  528.   3:xpr.dll,        "Quark Support DLL",        65000,    CNG
  529.   3:xpress.hlp,        "Help File",            160000,    C,    winhelp.exe
  530.   .#app.readmes,    "Release Notes",        0,    D
  531.   .#app.filters,    "Import Filters",        0,    D
  532.  
  533. [app.demo.appl]
  534.   1:reginfo.dat,    "Quark User Registration",    30000,    GR
  535.   1:xpress.dct,        "Dictionary",            270000,    C,    dct_ico
  536.  
  537.   .\xpress.exe#app.application,    "Application",        0,    BDG
  538.  
  539.   3:olelib.dll,        "Quark OLE DLL",        60000,    CG,    packager.exe
  540.   3:xpr.dll,        "Quark Support DLL",        65000,    CNG
  541.   3:xpress.hlp,        "Help File",            160000,    C,    winhelp.exe
  542.  
  543.   .#app.filters,    "Import Filters",        0,    D
  544.  
  545.  
  546. [app.application]
  547.   2:xpress.0xe,        "part 1",            512000,    C
  548.   2:xpress.1xe,        "part 2",            512000,    C
  549.   2:xpress.2xe,        "part 3",            512000,    C
  550.   2:xpress.3xe,        "part 4",            512000,    C
  551.   3:xpress.4xe,        "part 5",            512000,    C
  552.   3:xpress.5xe,        "part 6",            512000,    C
  553.   3:xpress.6xe,        "part 7",            20000,    CN
  554.  
  555. [app.filters]
  556.   3:drwfiltr.flt,    "Micrografx Designer 1.0",    60000,    C,    drwflt_ico
  557.   3:hpgl.flt,        "HPGL Graphics",        50000,    C,    hpglflt_ico
  558.   3:cgmfiltr.flt,    "Computer Graphics Metafile",    50000,    C,    cgmflt_ico
  559.  
  560. [app.xtensions]
  561.   3:xtags.xxt,        "XPress Tags",            60000,    C,    xxt_ico
  562.   3:writext.xxt,    "Write for Windows",        15000,    C,    xxt_ico
  563.   3:word1.xxt,        "Word for Windows 1.x",        42000,    C,    xxt_ico
  564.   3:word2.xxt,        "Word for Windows 2.0",        67000,    C,    xxt_ico
  565.   3:ktedit.xxt,        "Kern/Track Editor",         40000,    C,    xxt_ico
  566.   3:amiread.dll,    "Ami Pro 2.0",            105000,    C,    xxt_ico
  567.   3:wpread.dll,        "Word Perfect 5.1",        68000,    C,    xxt_ico
  568.   3:xyfilter.xxt,    "XyWrite III Plus",        100000,    C,    xxt_ico
  569.   3:readreg.xxt,    "Registration",            60000,    CR,    xxt_ico
  570.   3:dashfram.xxt,    "Dashed Frames",        12000,    C,    xxt_ico
  571.   3:ole.xxt,        "OLE",                1000,    C,    xxt_ico
  572.   3:coolblnd.xxt,    "Cool Blends",            35000,    C,    xxt_ico
  573.  
  574. [app.readmes]
  575.   3:readme.wri,        "Release Notes",        15000,    C,    write.exe
  576.   3:printing.wri,    "Printing Notes",        60000,    C,    write.exe
  577.   3:OLE.wri,        "OLE Notes",            25000,    C,    write.exe
  578.  
  579. [app.samples]
  580.   .\document#app.samdocs,    "Documents",        0,    G
  581.   .\library#app.samlibs,    "Libraries",        0,    G
  582.   .\pictures#app.sampics,    "Pictures",        0,    G
  583.   .\text#app.samtxts,        "Text Files",        0,    G
  584.  
  585. [app.demo.samples]
  586.   .#app.demo.samdocs,    "Documents",        0,    G
  587.  
  588. [app.demo.samdocs]
  589.   5:beachcrz.qxd,    "Sample Document",        60000,    x,    doc_ico
  590.   5:cruiser.eps,    "Sample EPS File",        30000,    x,    eps_ico
  591.   5:oldbike.eps,    "Sample EPS File",           260000,    x,    doc_ico
  592.   5:wavepict.pcx,    "Sample PCX File",         3000,    x,    pcx_ico
  593.   5:worldcup.qxd,    "Sample Document",           290000,    x,    doc_ico
  594.  
  595. [app.samdocs]
  596.   5:beachcrz.qxd,    "Sample Document",        60000,    x,    doc_ico
  597.   5:cruiser.eps,    "Sample EPS File",        30000,    x,    eps_ico
  598.   5:oldbike.eps,    "Sample EPS File",           260000,    x,    doc_ico
  599.   5:wavepict.pcx,    "Sample PCX File",         3000,    x,    pcx_ico
  600.   5:worldcup.qxd,    "Sample Document",           290000,    x,    doc_ico
  601.  
  602. [app.samlibs]
  603.   5:biking.eps,        "Sample EPS File",        20000,    x,    eps_ico
  604.   5:bicycle.wmf,    "Sample Windows Metafile",    20000,    x,    eps_ico
  605.   5:qdropcap.eps,    "Sample EPS File",        45000,    x,    eps_ico
  606.   5:sample.qxl,        "Sample Library",        75000,    x,    qxl_ico
  607.   5:xdropcap.eps,    "Sample EPS File",        35000,    x,    eps_ico
  608.  
  609. [app.sampics]
  610.   5:biker.tif,        "Sample TIFF File",        70000,    x,    tiff_ico
  611.   5:bikers.pcx,        "Sample PCX File",        15000,    x,    pcx_ico
  612.   5:cyclist.eps,    "Sample EPS File",        25000,    x,    eps_ico
  613.   5:wheelart.eps,    "Sample EPS File",        25000,    x,    eps_ico
  614.  
  615. [app.samtxts]
  616.   5:xprstags.xtg,    "Sample QuarkXPress Tags File",     5000,    x,    xtag_ico
  617.   5:richtext.rtf,    "Sample RTF File",         5000,    x,    rtf_ico
  618.   5:ascii.txt,        "Sample Text File",         5000,    x,    notepad.exe
  619.   5:word40.doc,        "Sample MS-Word 4.0 File",     5000,    x,    winword.exe
  620.   5:mswrite.wri,    "Sample MS-Write File",         5000,    x,    write.exe
  621.  
  622. [app.tutorial]
  623.   .\color#app.tutclr,        "Documents",        0,    G
  624.   .\finished#app.tutfin,    "Libraries",        0,    G
  625.   .\layout#app.tutlay,        "Layout Files",        0,    G
  626.   .\pictures#app.tutpics,    "Pictures",        0,    G
  627.   .\type#app.tuttype,        "Type Files",        0,    G
  628.   .\wordproc#app.tutwp,        "Word Processing Files",    0,    G
  629.  
  630. [app.tutclr]
  631.   4:bikers.pcx,        "Tutorial PCX File",         15000,    x,    pcx_ico
  632.   4:biketour.qxt,    "Tutorial QuarkXPress Template",     65000,    x,    doc_ico
  633.  
  634. [app.tutfin]
  635.   4:fintype.qxd,        "Tutorial Document",      15000,    x,    doc_ico
  636.   4:finpicts.qxd,        "Tutorial Document",     25000,    x,    doc_ico
  637.   4:finword.qxd,        "Tutorial Document",      20000,    x,    doc_ico
  638.   4:fincolor.qxd,        "Tutorial Document",      65000,    x,    doc_ico
  639.   4:finlayou.qxd,        "Tutorial Document",    105000,    x,    doc_ico
  640.  
  641. [app.tutlay]
  642.   4:newstemp.qxt,        "Tutorial Document",      90000,    x,    doc_ico
  643.   4:gears.eps,            "Tutorial EPS File",     95000,    x,    eps_ico
  644.   4:handle.eps,            "Tutorial EPS File",      30000,    x,    eps_ico
  645.   4:pedal.eps,            "Tutorial EPS File",      25000,    x,    eps_ico
  646.   4:text1.txt,            "Tutorial Text File",      1000,    x,    notepad.exe
  647.   4:text2.txt,            "Tutorial Text File",      1000,    x,    notepad.exe
  648.   4:text3.txt,            "Tutorial Text File",      1000,    x,    notepad.exe
  649.  
  650. [app.tutpics]
  651.   4:wheeltem.qxt,        "Tutorial QuarkXPress Template",      10000,    x,    doc_ico
  652.   4:picstory.txt,        "Tutorial Text File",      5000,    x,    notepad.exe
  653.   4:wheelart.eps,        "Tutorial EPS File",      25000,    x,    eps_ico
  654.  
  655. [app.tuttype]
  656.   4:sprocket.qxt,        "Tutorial QuarkXPress Template",      15000,    x,    doc_ico
  657.  
  658. [app.tutwp]
  659.   4:lettext.txt,        "Tutorial Text File",      1000,    x,    notepad.exe
  660.   4:spokeart.eps,        "Tutorial EPS File",      50000,    x,    eps_ico
  661.   4:samplett.qxt,        "Tutorial QuarkXPress Template",      15000,    x,    doc_ico
  662.  
  663. [progman.groups]
  664. ; The [progman.groups] section (optional) tells Install to create Program 
  665. ; Manager groups for your application. (Install then uses DDE to communicate 
  666. ; with Program Manager.)
  667. ;
  668. ; The section lists the names of the groups you want to create. You then 
  669. ; define additional sections in this file; those sections list the program 
  670. ; items you want in each group.
  671. ;
  672. ; The syntax for each group name is:
  673. ;
  674. ;     groupname, [groupfile.grp]
  675. ;
  676. ; where
  677. ;
  678. ;     groupname      is the title you want Program Manager to display
  679. ;                    under the icon that represents the group. (The 
  680. ;                    groupname will also be the name of the section
  681. ;                    that defines the contents of the group.)
  682. ;
  683. ;     groupfile.grp  is the filename of the file in which Program Manager
  684. ;                    will save information about the group. (You must include
  685. ;                    the .GRP filename extension.) This parameter is optional;
  686. ;                    if you omit it, Install uses a default name for the 
  687. ;                    group file.
  688. ;
  689. ; The following group-definition statement tells Install to create a group named
  690. ; Demo, and store its information in a file named DEMO_APP.GRP. The [demo] section
  691. ; will contain information about the group's contents.
  692.  
  693.   QuarkXPress, XPress.grp
  694. [demo.progman.groups]
  695.   "Demo QuarkXPress", XPrsdemo.grp
  696.  
  697.  
  698. ; This section is a user-defined section that define the contents of a
  699. ; Program Manager group file. The [progman.groups] section defines
  700. ; the name of this section and the group, and the name of the file in which
  701. ; to store information about the group.
  702. ;
  703. ; In each section like this one, you should list all items that you want Install
  704. ; to add to the group.
  705. ;
  706. ; The syntax for item-definition statements is: 
  707. ;
  708. ;     "Description",    APPFILE.EXE, [ICONFILE.EXE[, N]]
  709. ;
  710. ;where
  711. ;
  712. ;     Description   is the text that will appear below the program icon 
  713. ;                   when displayed in the Program Manager group.
  714. ;
  715. ;     ICONFILE.EXE  is the application file that contains the icon you
  716. ;                   want to represent the application. Typically, this is 
  717. ;                   the executable application file, but it could be a 
  718. ;                   different file. (You can also specify a _ico file,
  719. ;            created using the SDKPaint tool.) This parameter is
  720. ;            optional; if you omit it, Install will use the first
  721. ;            icon it finds in APPFILE.EXE.
  722. ;
  723. ;     N             is the offset of the icon you want to use within the file
  724. ;                   ICONFILE.EXE. This parameter is optional; if you omit it, 
  725. ;                   Install uses the first icon it finds in ICONFILE.EXE.
  726. ;                   You must include this parameter if the file you specify
  727. ;                   contains more than one icon, and you want to use an icon
  728. ;                   other than the first icon. 
  729. ;
  730. ;                   To use the Nth icon, specify the number N-1. For example,
  731. ;                   to use the third icon, specify 2.
  732. ;
  733. ; For example, the following item-definition statement tells Install to add an item
  734. ; titled "Demo Application" to Program Manager. The application command line
  735. ; is FILE1.FOO; the file that contains the application icon is DEMO.ICO
  736. [QuarkXPress]
  737.   "QuarkXPress for Windows", XPress.exe,
  738.   "Printing Notes", printing.wri,
  739.   "OLE Notes", OLE.wri,
  740.   "Release Notes", readme.wri,
  741. ["Demo QuarkXPress"]
  742.   "Demo QuarkXPress for Windows", XPress.exe
  743.  
  744. ; This section defines any number of application-specific preferences files
  745. ; to be built or added to, if preexisting. The function and form of the
  746. ; arguments parallel the WritePrivateProfileString(...) call. If the
  747. ; lpFileName is NULL, WIN.INI (using WriteProfileString(...)) is used as the
  748. ; filename. WIN.INI should not explicitly be used since the file is opened
  749. ; while Windows in running and must be accessed by WriteProfileString(...).
  750. ; The arguments can use logical file names (like "0:" for the install
  751. ; directory, or "z:" the destination directory).
  752. [setup.prefsfiles]
  753.   "Extensions", "qxd", "XPress.exe ^.qxd"
  754.   "Extensions", "qxt", "XPress.exe ^.qxt"
  755.  
  756. ; This section defines any number of application-specific readme files
  757. ;
  758. ; executable,readme file,description,[icon_name]
  759. ;
  760. ; show state (flag value for SW_ flags)
  761. ;
  762. [setup.execfiles]
  763.   "regedit.exe /s","z:xpress.reg","Registering XPRESS.EXE with Windows",5
  764.   "write.exe","z:readme.wri","MS-Write Release Notes",5
  765.  
  766. [setup.buildfiles]
  767.   z:xpress.reg
  768.  
  769. [xpress.reg]
  770.   "REGEDIT"
  771.   "ENTRIES FOR QuarkXPress"
  772.   "HKEY_CLASSES_ROOT\.qxd = xprsfile"
  773.   "HKEY_CLASSES_ROOT\.qxt = xprsfile"
  774.   "HKEY_CLASSES_ROOT\xprsfile = QuarkXPress"
  775.   "HKEY_CLASSES_ROOT\\xprsfile\\shell\\open\\command = ","z:xpress.exe"," %1"
  776.   "HKEY_CLASSES_ROOT\\xprsfile\\shell\\print\\command = ","z:xpress.exe"," /p %1"
  777.