home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer 4.7
/
1999-01_-_Disc_4.7.bin
/
ELINK
/
CLARISHP
/
_SETUP.1
/
HOMEPAGE.exe
/
1009
/
175
< prev
next >
Wrap
Text File
|
1997-02-20
|
4KB
|
97 lines
// -----
// VDL175.txt
// Copyright 1996 Claris
// -----
// Modal Help window toolbar
/************************** 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
//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 "Back"
#define kLit2 "Back up to the previous help topic"
#define kLit3 "Using Help"
#define kLit4 "Display instructions for using this Help window"
#define kOKButtonText "Done"
/************************** LOCALIZED STRING CONSTANTS END **************************************/
/************************** LOCALIZED STRING CONSTANTS END **************************************/
/************************** LOCALIZED STRING CONSTANTS END **************************************/
#if Platform_Mac
#define kOKButtonWidth 70
#else
#define kOKButtonWidth 100
#endif
/************************** 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.
/************************** 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 EH EnabledHelpString =
#define Gap Spacer(Width=10, Height=UseParent)
#define ccModalHelpBack 3460
#define ccModalHelpUsing 3461
Define(MainToolbarList)
HList(BackColor = {57015, 57015, 57015}, Width = UseParent)
{
PushButton( kLit1, ccModalHelpBack, "None",
EH kLit2 );
Gap;
PushButton( kLit3, ccModalHelpUsing, "None",
EH kLit4 );
Spacer(Width=UseParent, Height=UseParent);
UnframedDefaultButton(kOKButtonText, 1071, "None", Width = kOKButtonWidth);
} // HList
#if Platform_Mac
Margin(2,2,2,3, Custom = "HeaderBarMarginProc", Width = UseParent)
Margin(4,3,3,4, BackColor = {57015, 57015, 57015})
Call(MainToolbarList);
#else
VList(Width = UseParent, BackColor = Dialog)
{
Margin(4,4,4,4, Width = UseParent)
Call(MainToolbarList);
Spacer(Height = 1, Width = UseParent, BackColor = DkGray);
Spacer(Height = 1, Width = UseParent, BackColor = Black);
}
#endif