home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////////////////////////
- // Tutorial.txt (VDL 2040)
- // AUTHOR: Anthony C. Ard <anthony_ard@claris.com>, 24-Jul-97.
- // Copyright 1997 Claris
-
- // Standard defines.
- #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. */
-
- /* WINDOWS LOCALIZER: Note that there are no '&' chars in these strings---hotkeys
- are not functional in HomePage document windows, so the hotkey char
- is left out here. */
-
- #define kLit1 "Contents"
- #define kLit2 "Display tutorial topics"
- #define kLit3 "Using the Tutorial"
- #define kLit4 "Display instructions for using this Tutorial window"
- #define kLit5 "Back"
- #define kLit6 "Back up to the previous tutorial topic"
-
- ///////////////////////////////////////////////////////////////////////////
- // LOCALIZED STRING CONSTANTS END
-
- ///////////////////////////////////////////////////////////////////////////
- // 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. */
-
- ///////////////////////////////////////////////////////////////////////////
- // LOCALIZED NUMERICAL CONSTANTS END
- // No further localizable data past this point.
- // END LOCALIZABLE DATA
- ///////////////////////////////////////////////////////////////////////////
-
- #define Gap Spacer( Width=10, Height = UseParent )
-
- #define ccTutorialBack 3462
- #define ccTutorialContents 3463
- #define ccTutorialUsing 3464
-
- Define( MainToolbarList )
- HList( BackColor = { 57015, 57015, 57015 }, Width = UseParent ) {
- PushButton( kLit1, ccTutorialContents, "None", EH kLit2 );
- Gap;
- PushButton( kLit3, ccTutorialUsing, "None", EH kLit4 );
- Spacer( Width=UseParent, Height = UseParent );
- PushButton( kLit5, ccTutorialBack, "None", EH kLit6 );
- }
-
- #if Platform_Mac
- Margin( 2, 2, 2, 3, Custom = "HeaderBarMarginProc", Width = UseParent )
- Margin( 4, 3, 3, 4, stdBackColor )
- Call( MainToolbarList );
- #else
- VList( Width = UseParent, stdBackColor ) {
- Margin( 4, 4, 4, 4, Width = UseParent )
- Call( MainToolbarList );
-
- Spacer( Height = 1, Width = UseParent, BackColor = DkGray );
- Spacer( Height = 1, Width = UseParent, BackColor = Black );
- }
- #endif
-