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

  1. ///////////////////////////////////////////////////////////////////////////
  2. // FileType.txt (VDL 2090)
  3. // AUTHOR: Anthony C. Ard <anthony_ard@claris.com>, 27-Mar-97.
  4. // Copyright 1997 Claris 
  5.  
  6. #include "StdVPref.txt"
  7.  
  8. ///////////////////////////////////////////////////////////////////////////
  9. // LOCALIZED STRING CONSTANTS BEGIN
  10. /* This section contains all localizable string constants for this VDL
  11.    program. Be sure to include the backslash character at the end of each
  12.    line of a multi-line string, except for the last line.  You may also
  13.    flatten multiline constants into a single line, if you prefer. */
  14.  
  15. #define kLit1 "Claris Home Page 3.0 cannot determine the type of this file.  The file type is:"
  16. #define kLit2 "Text File"
  17. #define kLit3 "HTML File"
  18. #define kLit4 "FileMaker Pro HTML Include File"
  19.  
  20. ///////////////////////////////////////////////////////////////////////////
  21. // LOCALIZED STRING CONSTANTS END
  22.  
  23. ///////////////////////////////////////////////////////////////////////////
  24. // LOCALIZED NUMERICAL CONSTANTS BEGIN
  25.  
  26. #define DisplayFont Font = SystemFont    
  27.  
  28. ///////////////////////////////////////////////////////////////////////////
  29. // LOCALIZED NUMERICAL CONSTANTS END
  30. // No further localizable data past this point.
  31. // END LOCALIZABLE DATA
  32. ///////////////////////////////////////////////////////////////////////////
  33.  
  34. // Eight-pixel margin for entire dialog.
  35. Margin( 8, 8, 8, 8, BackColor = Dialog )
  36. VList() {
  37.  
  38.     HList() {
  39. #if Platform_Mac
  40.         cicn (2);
  41. #endif
  42.             
  43.         Spacer (Width = 10);
  44.         VList() {
  45.             StaticText (kLit1, Width = 350);
  46.             Spacer (Height = 10);
  47.             WidowRadioButton (kLit2, filetypebutton, 0, Height = 20, DisplayFont );
  48.             WidowRadioButton (kLit3, filetypebutton, 1, Height = 20, DisplayFont );
  49.             WidowRadioButton (kLit4, filetypebutton, 2, Height = 20, DisplayFont );
  50.         }
  51.     }
  52.  
  53.     Spacer (Height = 10);
  54.  
  55.     // Bottom buttons.
  56.     HList( Width = UseParent ) {
  57.         // Cancel button.
  58.         // OK button.
  59.         StandardDialogButtonsH;
  60.     }
  61. }
  62.