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

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