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

  1. // -----
  2. // VDL502.txt = StdAsst.txt
  3. // Copyright 1997 Claris
  4. // -----
  5. /* Standard prefix file for all CHP VDL assistants --
  6.  * contains common constants and definitions.
  7.  */
  8. //Platform-specific fonts and colors
  9. #if Platform_Mac
  10. //    DO NOT TOUCH
  11. //    WORK IN PROGRESS
  12. //    - Russ [08.17.97]
  13.     #define dlogBack        BackColor = Dialog
  14.     //#define dlogBack        BackColor = {56576, 56576, 56576}
  15.     #define kTitleFont         Font = {Times, 18, {Plain}}
  16.     #define kBasicFont         Font = {Geneva, 9, {Plain}}
  17.     #define kBasicBoldFont         Font = {Geneva, 9, {Bold}}
  18.     #define kHelpFont         Font = {Geneva, 9, {Plain}}
  19. #else
  20.     #define dlogBack        BackColor = Dialog
  21.     #define kTitleFont         Font = {Times Roman, 18, {Plain}}
  22.     #if Dialog_Pixels == 100
  23.         #define kBasicFont        Font = {"MS Sans Serif", 8, {Plain}}
  24.         #define kBasicBoldFont        Font = {"MS Sans Serif", 8, {Bold}}
  25.         #define kHelpFont        Font = {"MS Sans Serif", 8, {Plain}}
  26.     #else
  27.         #define kBasicFont        Font = {"MS Sans Serif", 6, {Plain}}
  28.         #define kBasicBoldFont        Font = {"MS Sans Serif", 6, {Bold}}
  29.         #define kHelpFont        Font = {"MS Sans Serif", 6, {Plain}}
  30.     #endif
  31. #endif
  32. //Shortcuts for blank space
  33. #define HSpace(x)            Spacer(Width = x, Height = 0)
  34. #define VSpace(x)            Spacer(Width = 0, Height = x)
  35. //Mouseover help
  36. #define EH                EnabledHelpString =
  37. #define kHelpViewWidth            300
  38. #define kHelpViewHeight            28
  39. //Colors
  40. #define BackWhite            BackColor = {65535, 65535, 65535}
  41. Define(CenterLine)
  42.     VList(dlogBack) {
  43.         VSpace(5);
  44.         HList(dlogBack) {
  45.             Spacer(Height = 190, Width = 1, BackColor = Gray);
  46.             Spacer(Height = 190, Width = 1, BackColor = White);
  47.         }
  48.     }
  49.