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

  1. // -----
  2. // VDL2000.txt
  3. // Copyright 1996 Claris
  4. // -----
  5.  
  6. #include "StdVPref.txt"
  7.  
  8. /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
  9.  
  10. #define kOKButtonText         "Continue"
  11. #define kCancelButtonText     "Cancel"
  12.  
  13. /************************** LOCALIZED STRING CONSTANTS END **************************************/
  14.  
  15.  
  16.  
  17. /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
  18.  
  19. #if Platform_Mac
  20. #define kOKButtonWidth         70
  21. #define kCancelButtonWidth 70
  22.  
  23. #else
  24. #define kOKButtonWidth         100
  25. #define kCancelButtonWidth 100
  26. #define kSkipButtonWidth     140
  27. #endif
  28.  
  29.  
  30. /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
  31.  
  32.  
  33. //No further localizable data past this point
  34.  
  35. /************************** END LOCALIZABLE DATA ***************************************************/
  36.  
  37.  
  38.  
  39. Margin(10, 10, 10, 10, BackColor = Dialog)
  40.     VList()
  41.         {
  42.         HList()
  43.             {
  44.             #if Platform_Mac
  45.             cicn(2);
  46.             #endif
  47.             
  48.             Spacer(Width = 10);
  49.             StaticText(errorMessage, Width = 350);
  50.             }
  51.             
  52.         Spacer(Height = 10);
  53.         HList()
  54.             {
  55. //            CancelButton(kSkipButtonText, 1072, "None", Width = kSkipButtonWidth);
  56. //            Spacer(Width = UseParent, Height = 0);
  57.             #if Platform_Mac
  58.             Spacer(Width = 210, Height = 0);
  59.             CancelButton(kCancelButtonText, 1070, "None", Width = kCancelButtonWidth);
  60.             Spacer(Width = 10, Height = 0);
  61.  
  62.             DefaultButton(kOKButtonText, 1071, "None", Width = kOKButtonWidth);
  63.             #else
  64.             Spacer(Width = 210, Height = 0);
  65.             DefaultButton(kOKButtonText, 1071, "None", Width = kOKButtonWidth);
  66.             Spacer(Width = 10, Height = 0);
  67.                 
  68.             CancelButton(kCancelButtonText, 1070, "None", Width = kCancelButtonWidth);
  69.             #endif
  70.             }
  71.         }
  72.  
  73.