home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////////////////////////
- // FileType.txt (VDL 2090)
- // AUTHOR: Anthony C. Ard <anthony_ard@claris.com>, 27-Mar-97.
- // Copyright 1997 Claris
-
- #include "StdVPref.txt"
-
- ///////////////////////////////////////////////////////////////////////////
- // LOCALIZED STRING CONSTANTS BEGIN
- /* This section contains all localizable string constants for this VDL
- program. Be sure to include the backslash character at the end of each
- line of a multi-line string, except for the last line. You may also
- flatten multiline constants into a single line, if you prefer. */
-
- #define kLit1 "Claris Home Page 3.0 cannot determine the type of this file. The file type is:"
- #define kLit2 "Text File"
- #define kLit3 "HTML File"
- #define kLit4 "FileMaker Pro HTML Include File"
-
- ///////////////////////////////////////////////////////////////////////////
- // LOCALIZED STRING CONSTANTS END
-
- ///////////////////////////////////////////////////////////////////////////
- // LOCALIZED NUMERICAL CONSTANTS BEGIN
-
- #define DisplayFont Font = SystemFont
-
- ///////////////////////////////////////////////////////////////////////////
- // LOCALIZED NUMERICAL CONSTANTS END
- // No further localizable data past this point.
- // END LOCALIZABLE DATA
- ///////////////////////////////////////////////////////////////////////////
-
- // Eight-pixel margin for entire dialog.
- Margin( 8, 8, 8, 8, BackColor = Dialog )
- VList() {
-
- HList() {
- #if Platform_Mac
- cicn (2);
- #endif
-
- Spacer (Width = 10);
- VList() {
- StaticText (kLit1, Width = 350);
- Spacer (Height = 10);
- WidowRadioButton (kLit2, filetypebutton, 0, Height = 20, DisplayFont );
- WidowRadioButton (kLit3, filetypebutton, 1, Height = 20, DisplayFont );
- WidowRadioButton (kLit4, filetypebutton, 2, Height = 20, DisplayFont );
- }
- }
-
- Spacer (Height = 10);
-
- // Bottom buttons.
- HList( Width = UseParent ) {
- // Cancel button.
- // OK button.
- StandardDialogButtonsH;
- }
- }
-