// ===============================
// PORTAL SKIN CONFIGURATION FILE
// ===============================

!Lich!
!Brian McMaster (Thaldor)
!January 2002

// ======================
// BACKGROUND IMAGE SETUP
// ======================
//
// BACKGROUND: FILE=str TCOLOR=int/str
//
// FILE   - File containing the image for the background
// TCOLOR - Specify, or the color of the lower-left pixel is used
//
// This is what appears on the very background of the login screen.
// At its base, the image file loaded must be rectangular, but can be
// of any size (it is suggested to keep it under 400 pixels high and
// 620 pixels wide).
//
// If you do not specify a transparent color, the color of the pixel
// at the far lower-left of the bitmap will be set as the transparent
// color.  This means that wherever this color appears in the image, it
// will be see-through.  Using this feature can create all kinds of
// shapes and effects for the login screen, even though the image file
// loaded is rectangular.

BACKGROUND: FILE="background.bmp" TCOLOR=

// ===================
// PROFILES GRID SETUP
// ===================
//
// GRID: LEFT=int TOP=int HEIGHT=int WIDTH=int COLOR=int/str WCOLOR=int/str
//       FONT=str FSIZE=int FCOLOR=int/str FBOLD=bool FITALIC=bool TFONT=str
//       TSIZE=int TCOLOR=int/str TBOLD=bool  TITALIC=bool PTITLE=sring
//       MTITLE=string PWIDTH=int MWIDTH=int
//
// LEFT/TOP     - Pixel placement from the upper-left corner
// HEIGHT/WIDTH - Size of the grid
// COLOR        - Color of the grid header bar
// WCOLOR       - Color of the background of the grid
// FONT         - Name of the grid font
// FSIZE        - Size of the grid font
// FCOLOR       - Color of the grid font
// FBOLD        - True/false to display the grid font in boldface
// FITALIC      - True/false to display the grid font in italics
// TFONT        - Name of the grid title font
// TSIZE        - Size of the grid title font
// TCOLOR       - Color of the grid title font
// TBOLD        - True/false to display the grid title font in boldface
// TITALIC      - True/false to display the grid title font in italics
// PTITLE       - Title caption for the Player field
// MTITLE       - Title caption for the MUD field
// PWIDTH       - Character width (not pixels) of the Player field
// MWIDTH       - Character width (not pixels) of the MUD field
//
// Be aware that when setting the font name the font must be on the
// end user's computer, otherwise it will come up as MS Sans Serif or some
// such default crap.  Choose common fonts such as Arial, Times New Roman
// and Courier New and you should be fine.

GRID: LEFT=120 TOP=185 HEIGHT=77 WIDTH=282 COLOR=gray WCOLOR=white FONT="arial" FSIZE=8 FCOLOR=black FBOLD=true FITALIC=false TFONT="arial" TSIZE=8 TCOLOR=white TBOLD=true TITALIC=false PTITLE="Player" MTITLE="MUD" PWIDTH=20 MWIDTH=22

// =============
// BUTTONS SETUP
// =============
//
// BUTTON NAME: LEFT=int TOP=int FILE=string TCOLOR=int/str CAPTION=str 
//              FONT=str FSIZE=int FCOLOR=int/str FBOLD=bool FITALIC=bool 
//              FXOFFSET=integer FYOFFSET=integer FOCOLOR=int/str
// 
// LEFT/TOP - Pixel placement from the upper-left corner
// FILE     - File containing the image for the button
// TCOLOR   - Color value that appears transparent
// CAPTION  - Text that appears on the button
// FONT     - Name of the font to display on the button (e.g. Arial)
// FSIZE    - Size of the caption font (e.g. 8, 10, 12)
// FCOLOR   - Color of the caption font
// FBOLD    - True/false to display the caption in boldface
// FITALIC  - True/false to display the caption in italics
// FXOFFSET - X (horizontal) offset of the caption =can be negative)
// FYOFFSET - Y (vertical) offset of the caption =can be negative)
// FOCOLOR  - Color to outline the caption with =optional)
//
// If you leave the space after the colon (:) blank for any button, that
// button will not appear on the screen.  It is suggested that you leave
// all buttons listed below even if you don't use them all.

LICENSE   : LEFT=15 TOP=520 FILE="licensebutton.bmp" TCOLOR=white CAPTION="&View Software License Agreement" FONT=Arial FSIZE=10 FCOLOR=white FBOLD=true FITALIC=false FXOFFSET=0 FYOFFSET=0 FOCOLOR=black
PROFILES  : LEFT=525 TOP=410 FILE="profilesbutton.bmp" TCOLOR=white CAPTION="Player &Profiles" FONT="Arial" FSIZE=10 FCOLOR=white FBOLD=true FITALIC=false FXOFFSET=0 FYOFFSET=0 FOCOLOR=black
WIZARD    : LEFT=525 TOP=443 FILE="wizardbutton.bmp" TCOLOR=white CAPTION="Profile &Wizard" FONT="Arial" FSIZE=10 FCOLOR=white FBOLD=true FITALIC=false FXOFFSET=0 FYOFFSET=0 FOCOLOR=black
ONLINE    : LEFT=50 TOP=275 FILE="onlinebutton.bmp" TCOLOR=white CAPTION="&Login Online" FONT="Arial" FSIZE=10 FCOLOR=white FBOLD=true FITALIC=false FXOFFSET=0 FYOFFSET=0 FOCOLOR=black
QUICK     : LEFT=184 TOP=275 FILE="quickbutton.bmp" TCOLOR=lime CAPTION="&Quick Connect" FONT="Arial" FSIZE=10 FCOLOR=white FBOLD=true FITALIC=false FXOFFSET=0 FYOFFSET=0 FOCOLOR=black
OFFLINE   : LEFT=318 TOP=275 FILE="offlinebutton.bmp" TCOLOR=white CAPTION="Work &Offline" FONT="Arial" FSIZE=10 FCOLOR=white FBOLD=true FITALIC=false FXOFFSET=0 FYOFFSET=0 FOCOLOR=black
HELP      : LEFT=560 TOP=480 FILE="helpbutton.bmp" TCOLOR=white CAPTION="Portal ?" FONT="Arial" FSIZE=10 FCOLOR=white FBOLD=true FITALIC=false FXOFFSET=0 FYOFFSET=0 FOCOLOR=black
GAMING    : LEFT=560 TOP=500 FILE="gamingbutton.bmp" TCOLOR=white CAPTION="Gaming ?" FONT="Arial" FSIZE=10 FCOLOR=white FBOLD=true FITALIC=false FXOFFSET=0 FYOFFSET=0 FOCOLOR=black
PASSWORDS : LEFT=15 TOP=500 FILE="passwordsbutton.bmp" TCOLOR=green CAPTION="" FONT="Arial" FSIZE=10 FCOLOR=white FBOLD=true FITALIC=false FXOFFSET=0 FYOFFSET=0 FOCOLOR=black
EXIT      : LEFT=525 TOP=520 FILE="exitbutton.bmp" TCOLOR=white CAPTION="E&xit Portal" FONT=Arial FSIZE=10 FCOLOR=white FBOLD=true FITALIC=false FXOFFSET=0 FYOFFSET=0 FOCOLOR=black

// ======================
// CONNECTION PANEL SETUP
// ======================
//
// CONNECTION: LEFT=int TOP=int CENTERED=bool FILE=str TCOLOR=int/str
//             CAPTION=str FONT=str FSIZE=int FCOLOR=int/str FBOLD=bool
//             FITALIC=bool FXOFFSET=integer FYOFFSET=integer FOCOLOR=int/str
// 
// LEFT/TOP - Pixel placement from the upper-left corner
// CENTERED - True/False center the panel on the login screen
//            (If the panel is centered, Left/Top are unused)
// FILE     - File containing the image for the panel (65h x 230w)
// TCOLOR   - Color value that appears transparent
// CAPTION  - Text that appears on the panel
// FONT     - Name of the font to display on the panel (e.g. Arial)
// FSIZE    - Size of the caption font
// FCOLOR   - Color of the caption font
// FBOLD    - True/false to display the caption in boldface
// FITALIC  - True/false to display the caption in italics
// FXOFFSET - X (horizontal) offset of the caption (can be negative)
// FYOFFSET - Y (vertical) offset of the caption (can be negative)
// FOCOLOR  - Color to outline the caption with (required)
//
// The connection panel appears momentarily when Portal is seeking out an
// open socket to connect through.

CONNECTION: LEFT=280 TOP=485 CENTERED=false FILE="connection.bmp" TCOLOR=white CAPTION="Connecting..." CAPTION="Times New Roman" FSIZE=18 FCOLOR=white FBOLD=true FITALIC=true FXOFFSET=-30 FYOFFSET=3 FOCOLOR=black

