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

  1. // -----
  2. // VDL158.txt
  3. // Copyright 1996 Claris
  4. // -----
  5.  
  6. #include "StdVPref.txt"
  7.  
  8. //Tool Palette
  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 kLit1 "Insert CheckBox"
  19. #define kLit2 "Insert Radio Button"
  20. #define kLit3 "Insert Submit Button"
  21. #define kLit4 "Insert Reset Button"
  22. #define kLit5 "Insert Text Area"
  23. #define kLit6 "Insert Entry Field"
  24. #define kLit7 "Insert Password Field"
  25. #define kLit8 "Insert Pop-up"
  26.  
  27. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  28. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  29. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  30.  
  31.  
  32.  
  33. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  34. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  35. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  36.  
  37. //This section contains integer constants that are used to format this VDL program.
  38. //These are localizable - they only need to be changed if the localized strings 
  39. //are sufficiently longer than the US strings. Localize the strings first, then the constants.
  40.  
  41. //No constants
  42.  
  43. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  44. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  45. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  46.  
  47. //No further localizable data past this point
  48.  
  49. /************************** END LOCALIZABLE DATA ***************************************************/
  50. /************************** END LOCALIZABLE DATA ***************************************************/
  51. /************************** END LOCALIZABLE DATA ***************************************************/
  52.  
  53.  
  54. #if Platform_Mac
  55. #define ToolSep Spacer(Height = UseParent, Width = 1, BackColor = {0,0,0});
  56. #else
  57. #define ToolSep 
  58. #endif
  59.  
  60. #define ToolBack stdBackColor
  61.  
  62.  
  63. Define(FirstRow)
  64.     HList(ToolBack)
  65.         {
  66.         ToolSep
  67.         PictPushButton(3082, "None",Draggable,
  68.                                 EH kLit1)
  69.                 {
  70.                 Enabled(Draw, 'cicn',13001 );
  71.                 Disabled(Draw, 'cicn',13041 ); 
  72.                 Tracking(Draw, 'cicn',13021 );
  73.                 };
  74.         ToolSep
  75.         
  76.         PictPushButton(3083, "None",Draggable,
  77.                             EH kLit2)
  78.             {
  79.             Enabled(Draw, 'cicn',13002 );
  80.             Disabled(Draw, 'cicn',13042 ); 
  81.             Tracking(Draw, 'cicn',13022 );
  82.             };
  83.         ToolSep
  84.         
  85.         PictPushButton(3088, "None", Draggable,
  86.                             EH kLit3)
  87.             {
  88.             Enabled(Draw, 'cicn',13006 );
  89.             Disabled(Draw, 'cicn',13046 ); 
  90.             Tracking(Draw, 'cicn',13026 );
  91.             };
  92.         ToolSep
  93.             
  94.         PictPushButton(3089, "None",Draggable,
  95.                             EH kLit4)
  96.             {
  97.             Enabled(Draw, 'cicn',13007 );
  98.             Disabled(Draw, 'cicn',13047 ); 
  99.             Tracking(Draw, 'cicn',13027 );
  100.             };
  101.         ToolSep
  102.         
  103.         } //Button Commands
  104.         
  105.         
  106.         
  107. Define(SecondRow)
  108.     HList(ToolBack)
  109.         {
  110.         ToolSep
  111.         PictPushButton(3084, "None",Draggable,
  112.                             EH kLit5)
  113.             {
  114.             Enabled(Draw, 'cicn',13000 );
  115.             Disabled(Draw, 'cicn',13040 ); 
  116.             Tracking(Draw, 'cicn',13020 );
  117.             };
  118.         ToolSep
  119.  
  120.         PictPushButton(3085, "None",Draggable,
  121.                             EH kLit6)
  122.             {
  123.             Enabled(Draw, 'cicn',13004 );
  124.             Disabled(Draw, 'cicn',13044 ); 
  125.             Tracking(Draw, 'cicn',13024 );
  126.             };
  127.         ToolSep
  128.  
  129.         PictPushButton(3086, "None",Draggable,
  130.                             EH kLit7)
  131.             {
  132.             Enabled(Draw, 'cicn',13009 );
  133.             Disabled(Draw, 'cicn',13049 ); 
  134.             Tracking(Draw, 'cicn',13029 );
  135.             };
  136.         ToolSep
  137.             
  138.         PictPushButton(3087, "None",Draggable,
  139.                             EH kLit8)
  140.             {
  141.             Enabled(Draw, 'cicn',13008 );
  142.             Disabled(Draw, 'cicn',13048 ); 
  143.             Tracking(Draw, 'cicn',13028 );
  144.             };
  145.         ToolSep
  146.         
  147.         } //SecondRow
  148.  
  149. #if Platform_Win
  150.  
  151.     Margin(5,5,5,5,ToolBack)
  152.         VList() //Base V Array
  153.             {
  154.             Call(FirstRow);
  155.             Call(SecondRow);
  156.             } //Base V Array
  157.             
  158.  
  159. #else
  160.  
  161. Margin(5,5,5,5,ToolBack)
  162.     Layout(AllowOverlap)
  163.         {
  164.         Margin(0,0,0,0, Left=0, Top=0)
  165.             Call(FirstRow);
  166.         Margin(0,0,0,0, Left=0, Top=22)
  167.             Call(SecondRow);
  168.         } //Base V Array
  169.  
  170. #endif
  171.  
  172.