home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1999 March / CDW0399.iso / Demos / HomePage / data1.cab / Program_Executable_Files / Homepage.exe / 1009 / 2031 < prev    next >
Encoding:
Text File  |  1997-12-10  |  3.6 KB  |  93 lines

  1. // -----
  2. // 2031.txt = VerifyWhat.txt
  3. // Copyright 1997 Claris
  4. // -----
  5.  
  6. //Choose to verify selected files or entire site
  7.  
  8. #include "StdVPref.txt"
  9.  
  10. /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
  11. /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
  12. /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
  13.  
  14. //This section contains all localizable string constants for this VDL program. Be sure to 
  15. //include the backslash character at the end of each line of a multi-line string, except for the last line.
  16. //You may also flatten multiline constants into a single line, if you prefer
  17.  
  18. #define kTitle "Verify Links and References"
  19. #define kVerifyText "Verify:"
  20. #define kSelectedFilesRadio "&Selected Files/Folders"
  21. #define kEntireSiteRadio "&Entire Site"
  22.  
  23. //Localized Fonts
  24. #if Platform_Mac
  25. #define Level1Font Font = {Chicago, 12, {Plain}}
  26. #define Level2Font Font = {Geneva, 10, {Bold}}
  27. #else
  28. #define Level1Font Font = SystemFont
  29. #define Level2Font Font = {Arial, 10, {Bold}}
  30. #endif
  31.  
  32. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  33. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  34. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  35.  
  36.  
  37.  
  38. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  39. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  40. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  41.  
  42. //This section contains integer constants that are used to format this VDL program.
  43. //These are localizable - they only need to be changed if the localized strings 
  44. //are sufficiently longer than the US strings. Localize the strings first, then the constants.
  45.  
  46. #define kDialogMinWidth 180
  47. #define kButtonWidth 60
  48.  
  49. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  50. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  51. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  52.  
  53. //No further localizable data past this point
  54.  
  55. /************************** END LOCALIZABLE DATA ***************************************************/
  56. /************************** END LOCALIZABLE DATA ***************************************************/
  57. /************************** END LOCALIZABLE DATA ***************************************************/
  58.  
  59.  
  60. Define(Divider)
  61.     Margin(6,0,3,0,Width = UseParent, stdBackColor)
  62.         VList(Width = UseParent)
  63.             {
  64.             Spacer(Width = 0, Height = 4, ScaleV);
  65.             Spacer(Height = 1, Width = UseParent, BackColor = {20000,20000,20000});
  66.             Spacer(Height = 1, Width = UseParent, BackColor = {62000, 62000, 62000});
  67.             Spacer(Width = 0, Height = 10, ScaleV);
  68.             }
  69.  
  70. Margin(30, 20, 30, 20, stdBackColor)
  71.     VList()
  72.         {
  73.         Spacer(Height = 0, Width = kDialogMinWidth);
  74.         
  75.         /***
  76.         StaticText(kTitle, Level1Font);
  77.         Call(Divider);
  78.         ***/
  79.         
  80.         //Margin(10, 10, 10, 10)
  81.             VList()
  82.                 {
  83.                 StaticText(commandName, Level2Font);
  84.                 Spacer(Height = 12);
  85.                 WidowRadioButton(kSelectedFilesRadio, onlySelected, 1, Height = 16, Level2Font);
  86.                 Spacer(Height = 3);
  87.                 WidowRadioButton(kEntireSiteRadio, onlySelected, 0, Height = 16, Level2Font);
  88.                 }
  89.         Spacer(Height = 20);
  90.         StandardDialogButtonsH;
  91.         } //VList
  92.  
  93.