Mission Planner Skinning

Primary feature documentation from the SEOW Development Team.

Moderator: SEOW Developers

Post Reply
IV/JG7_4Shades
Posts: 2201
Joined: Mon 08 Jan 2007 11:10 pm
Location: Perth, Western Australia

Mission Planner Skinning

Post by IV/JG7_4Shades »

Availability: MP-v4.285 or later

Description:

The Mission Planner now supports rudimentary skinning, i.e. the ability to change the "look and feel" of the MP quickly and easily. The skin choice is set by the PHP variable $MPSkin in the first few lines of "Scripts/MP-Configuration.php". As of MP-v4.285, the allowed values for this variable are "green" (default) or "classic".

The Statistics pages can be made to conform to the MP skin, or to use their own colour scheme. This choice is governed by the PHP variable $StatSkin in the last few lines of "Scripts/MP-Configuration.php". Valid choices for the value of $StatSkin are "MP" or "self".

The skin scheme consists of several colour definitions for each skin:

Code: Select all

///////////////////////////////////////////////////////////////////////////////////////////////////////
// MP Skin Section
//
// "classic" Skin
$Background_classic = "#424242";
$BackgroundHigh_classic = "#626262";
$BackgroundLow_classic = "#323232";
$BackgroundListHigh_classic = "#585858";
$BackgroundListLow_classic = "#505050";
$BackgroundStrong_classic = "#1a321a";
$BackgroundBold_classic = "#77771a";
$Text_classic = "#aaaabb";
//
// "green" Skin
$Background_green = "#708b96";
$BackgroundHigh_green = "#75929c";
$BackgroundLow_green = "#4c6069";
$BackgroundListHigh_green = "#607c87";
$BackgroundListLow_green = "#557275";
$BackgroundStrong_green = "#1a321a";
$BackgroundBold_green = "#77771a";
$Text_green = "#b5c2c7";
//
//
///////////////////////////////////////////////////////////////////////////////////////////////////////
// Statistics Skin Section - allowing stats pages to have a different colour scheme to the MP
// ... see Statistics/stats_functions.php for coding details.
$StatSkin = "MP";		//"MP" means use MP scheme, while "self" means Stats use the following decorative colours.
$Background_Statistics = "#ffffff";
$BackgroundHigh_Statistics = "#cccccc";
$BackgroundLow_Statistics = "#aaaaaa";
$BackgroundListHigh_Statistics = "#cfcfcf";
$BackgroundListLow_Statistics = "#c0c0c0";
$BackgroundStrong_Statistics = "#aabbaa";
$BackgroundBold_Statistics = "#aaaacc";
$Text_Statistics = "#333333";
The colour definitions are made in terms of hexadecimal RGB codes. Skins are completed by defining a small number of banner bitmaps prefixed by the uppercase form of the skin name, e.g. for the "green" skin the bitmaps are

Code: Select all

uniticons/GREEN-SEOW-MP-Banner.jpg
uniticons/GREEN-SEOW-MP-Manage.jpg
uniticons/GREEN-SEOW-MP-Costs.jpg
etc. New skins can be added by defining the new bitmaps to the "uniticons" folder and adding the colour definitions to the "Scripts/MP-Configuration.php" file, suitably defined with the skin name as suffix. Any users that develop new skins are encouraged to submit them to SEOW for inclusion in upcoming releases or as downloadable skin packs.
IV/JG7_4Shades
SEOW Developer

Image
Post Reply