home *** CD-ROM | disk | FTP | other *** search
- // -----
- // 2031.txt = VerifyWhat.txt
- // Copyright 1997 Claris
- // -----
-
- //Choose to verify selected files or entire site
-
- #include "StdVPref.txt"
-
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
- /************************** 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 kTitle "Verify Links and References"
- #define kVerifyText "Verify:"
- #define kSelectedFilesRadio "&Selected Files/Folders"
- #define kEntireSiteRadio "&Entire Site"
-
- //Localized Fonts
- #if Platform_Mac
- #define Level1Font Font = {Chicago, 12, {Plain}}
- #define Level2Font Font = {Geneva, 10, {Bold}}
- #else
- #define Level1Font Font = SystemFont
- #define Level2Font Font = {Arial, 10, {Bold}}
- #endif
-
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
-
-
-
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
-
- //This section contains integer constants that are used to format this VDL program.
- //These are localizable - they only need to be changed if the localized strings
- //are sufficiently longer than the US strings. Localize the strings first, then the constants.
-
- #define kDialogMinWidth 180
- #define kButtonWidth 60
-
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
-
- //No further localizable data past this point
-
- /************************** END LOCALIZABLE DATA ***************************************************/
- /************************** END LOCALIZABLE DATA ***************************************************/
- /************************** END LOCALIZABLE DATA ***************************************************/
-
-
- Define(Divider)
- Margin(6,0,3,0,Width = UseParent, stdBackColor)
- VList(Width = UseParent)
- {
- Spacer(Width = 0, Height = 4, ScaleV);
- Spacer(Height = 1, Width = UseParent, BackColor = {20000,20000,20000});
- Spacer(Height = 1, Width = UseParent, BackColor = {62000, 62000, 62000});
- Spacer(Width = 0, Height = 10, ScaleV);
- }
-
- Margin(30, 20, 30, 20, stdBackColor)
- VList()
- {
- Spacer(Height = 0, Width = kDialogMinWidth);
-
- /***
- StaticText(kTitle, Level1Font);
- Call(Divider);
- ***/
-
- //Margin(10, 10, 10, 10)
- VList()
- {
- StaticText(commandName, Level2Font);
- Spacer(Height = 12);
- WidowRadioButton(kSelectedFilesRadio, onlySelected, 1, Height = 16, Level2Font);
- Spacer(Height = 3);
- WidowRadioButton(kEntireSiteRadio, onlySelected, 0, Height = 16, Level2Font);
- }
- Spacer(Height = 20);
- StandardDialogButtonsH;
- } //VList
-
-