home *** CD-ROM | disk | FTP | other *** search
- // -----
- // VDL502.txt = StdAsst.txt
- // Copyright 1997 Claris
- // -----
- /* Standard prefix file for all CHP VDL assistants --
- * contains common constants and definitions.
- */
- //Platform-specific fonts and colors
- #if Platform_Mac
- // DO NOT TOUCH
- // WORK IN PROGRESS
- // - Russ [08.17.97]
- #define dlogBack BackColor = Dialog
- //#define dlogBack BackColor = {56576, 56576, 56576}
- #define kTitleFont Font = {Times, 18, {Plain}}
- #define kBasicFont Font = {Geneva, 9, {Plain}}
- #define kBasicBoldFont Font = {Geneva, 9, {Bold}}
- #define kHelpFont Font = {Geneva, 9, {Plain}}
- #else
- #define dlogBack BackColor = Dialog
- #define kTitleFont Font = {Times Roman, 18, {Plain}}
- #if Dialog_Pixels == 100
- #define kBasicFont Font = {"MS Sans Serif", 8, {Plain}}
- #define kBasicBoldFont Font = {"MS Sans Serif", 8, {Bold}}
- #define kHelpFont Font = {"MS Sans Serif", 8, {Plain}}
- #else
- #define kBasicFont Font = {"MS Sans Serif", 6, {Plain}}
- #define kBasicBoldFont Font = {"MS Sans Serif", 6, {Bold}}
- #define kHelpFont Font = {"MS Sans Serif", 6, {Plain}}
- #endif
- #endif
- //Shortcuts for blank space
- #define HSpace(x) Spacer(Width = x, Height = 0)
- #define VSpace(x) Spacer(Width = 0, Height = x)
- //Mouseover help
- #define EH EnabledHelpString =
- #define kHelpViewWidth 300
- #define kHelpViewHeight 28
- //Colors
- #define BackWhite BackColor = {65535, 65535, 65535}
- Define(CenterLine)
- VList(dlogBack) {
- VSpace(5);
- HList(dlogBack) {
- Spacer(Height = 190, Width = 1, BackColor = Gray);
- Spacer(Height = 190, Width = 1, BackColor = White);
- }
- }
-