home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 4.10 / 1999-04_Disc_4.10.bin / ELINK / CLARISHP / _SETUP.1 / HOMEPAGE.exe / 1009 / 166 < prev    next >
Text File  |  1997-02-20  |  4KB  |  99 lines

  1. // -----
  2. // VDL166.txt
  3. // Copyright 1996 Claris
  4. // -----
  5.  
  6.  
  7. // Nonmodal Help window toolbar
  8. /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
  9. /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
  10. /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
  11.  
  12. //This section contains all localizable string constants for this VDL program. Be sure to 
  13. //include the backslash character at the end of each line of a multi-line string, except for the last line.
  14. //You may also flatten multiline constants into a single line, if you prefer
  15.  
  16.  
  17. //WINDOWS LOCALIZER: Note that there are no '&' chars in these strings - hotkeys 
  18. //are not functional in HomePage document windows, so the hotkey char 
  19. //is left out here.
  20.  
  21. #define kLit1 "Contents"
  22. #define kLit2 "Display help topics"
  23. #define kLit3 "Using Help"
  24. #define kLit4 "Display instructions for using this Help window"
  25. #define kLit5 "Back"
  26. #define kLit6 "Back up to the previous help topic"
  27. #define kLit7 "Index"
  28. #define kLit8 "Display help index"
  29.  
  30.  
  31. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  32. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  33. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  34.  
  35.  
  36.  
  37. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  38. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  39. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  40.  
  41. //This section contains integer constants that are used to format this VDL program.
  42. //These are localizable - they only need to be changed if the localized strings 
  43. //are sufficiently longer than the US strings. Localize the strings first, then the constants.
  44.  
  45.  
  46.  
  47. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  48. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  49. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  50.  
  51. //No further localizable data past this point
  52.  
  53. /************************** END LOCALIZABLE DATA ***************************************************/
  54. /************************** END LOCALIZABLE DATA ***************************************************/
  55. /************************** END LOCALIZABLE DATA ***************************************************/
  56.  
  57.  
  58. #define EH EnabledHelpString =
  59.  
  60. #define Gap Spacer(Width=10, Height=UseParent)
  61.  
  62. #define ccHelpTopics                    3450
  63. #define ccHelpUsing                    3451
  64. #define ccHelpIndex                    3452
  65. #define ccNonModalHelpBack            3459
  66.  
  67. Define(MainToolbarList)
  68.     HList(BackColor = {57015, 57015, 57015}, Width = UseParent)
  69.         {
  70.         PushButton( kLit1, ccHelpTopics, "None",
  71.                         EH kLit2 );
  72.         Gap;
  73.         PushButton( kLit7, ccHelpIndex, "None",
  74.                         EH kLit8 );
  75.         Gap;
  76.         PushButton( kLit3, ccHelpUsing, "None",
  77.                         EH kLit4 );
  78.         Spacer(Width=UseParent, Height=UseParent);
  79.         PushButton( kLit5, ccNonModalHelpBack, "None",
  80.                         EH kLit6 );
  81.         } // HList
  82.  
  83.  
  84. #if Platform_Mac
  85.     Margin(2,2,2,3, Custom = "HeaderBarMarginProc", Width = UseParent)
  86.         Margin(4,3,3,4, BackColor = {57015, 57015, 57015})
  87.             Call(MainToolbarList);
  88. #else
  89. VList(Width = UseParent, BackColor = Dialog)
  90.     {
  91.     Margin(4,4,4,4, Width = UseParent)
  92.         Call(MainToolbarList);
  93.         
  94.     Spacer(Height = 1, Width = UseParent, BackColor = DkGray);
  95.     Spacer(Height = 1, Width = UseParent, BackColor = Black);
  96.     }
  97. #endif
  98.  
  99.