FML Update
This commit is contained in:
@ -5,40 +5,24 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for '321Go' Style
|
||||
* Quad class for '321Go' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_321Go extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = '321Go';
|
||||
const SUBSTYLE_3 = '3';
|
||||
const SUBSTYLE_2 = '2';
|
||||
const SUBSTYLE_1 = '1';
|
||||
const STYLE = '321Go';
|
||||
const SUBSTYLE_3 = '3';
|
||||
const SUBSTYLE_2 = '2';
|
||||
const SUBSTYLE_1 = '1';
|
||||
const SUBSTYLE_Go = 'Go!';
|
||||
|
||||
/**
|
||||
* Create a new Quad_321Go Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_321Go
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quad321Go = new Quad_321Go($id);
|
||||
return $quad321Go;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_321Go Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,63 +5,47 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'BgRaceScore2' Style
|
||||
* Quad class for 'BgRaceScore2' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_BgRaceScore2 extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'BgRaceScore2';
|
||||
const SUBSTYLE_BgCardPlayer = 'BgCardPlayer';
|
||||
const SUBSTYLE_BgCardServer = 'BgCardServer';
|
||||
const SUBSTYLE_BgScores = 'BgScores';
|
||||
const SUBSTYLE_Cartouche = 'Cartouche';
|
||||
const SUBSTYLE_CartoucheLine = 'CartoucheLine';
|
||||
const SUBSTYLE_CupFinisher = 'CupFinisher';
|
||||
const STYLE = 'BgRaceScore2';
|
||||
const SUBSTYLE_BgCardPlayer = 'BgCardPlayer';
|
||||
const SUBSTYLE_BgCardServer = 'BgCardServer';
|
||||
const SUBSTYLE_BgScores = 'BgScores';
|
||||
const SUBSTYLE_Cartouche = 'Cartouche';
|
||||
const SUBSTYLE_CartoucheLine = 'CartoucheLine';
|
||||
const SUBSTYLE_CupFinisher = 'CupFinisher';
|
||||
const SUBSTYLE_CupPotentialFinisher = 'CupPotentialFinisher';
|
||||
const SUBSTYLE_Fame = 'Fame';
|
||||
const SUBSTYLE_Handle = 'Handle';
|
||||
const SUBSTYLE_HandleBlue = 'HandleBlue';
|
||||
const SUBSTYLE_HandleRed = 'HandleRed';
|
||||
const SUBSTYLE_HandleSelectable = 'HandleSelectable';
|
||||
const SUBSTYLE_IsLadderDisabled = 'IsLadderDisabled';
|
||||
const SUBSTYLE_IsLocalPlayer = 'IsLocalPlayer';
|
||||
const SUBSTYLE_LadderPoints = 'LadderPoints';
|
||||
const SUBSTYLE_LadderRank = 'LadderRank';
|
||||
const SUBSTYLE_Laps = 'Laps';
|
||||
const SUBSTYLE_Podium = 'Podium';
|
||||
const SUBSTYLE_Points = 'Points';
|
||||
const SUBSTYLE_SandTimer = 'SandTimer';
|
||||
const SUBSTYLE_ScoreLink = 'ScoreLink';
|
||||
const SUBSTYLE_ScoreReplay = 'ScoreReplay';
|
||||
const SUBSTYLE_SendScore = 'SendScore';
|
||||
const SUBSTYLE_Speaking = 'Speaking';
|
||||
const SUBSTYLE_Spectator = 'Spectator';
|
||||
const SUBSTYLE_Tv = 'Tv';
|
||||
const SUBSTYLE_Warmup = 'Warmup';
|
||||
const SUBSTYLE_Fame = 'Fame';
|
||||
const SUBSTYLE_Handle = 'Handle';
|
||||
const SUBSTYLE_HandleBlue = 'HandleBlue';
|
||||
const SUBSTYLE_HandleRed = 'HandleRed';
|
||||
const SUBSTYLE_HandleSelectable = 'HandleSelectable';
|
||||
const SUBSTYLE_IsLadderDisabled = 'IsLadderDisabled';
|
||||
const SUBSTYLE_IsLocalPlayer = 'IsLocalPlayer';
|
||||
const SUBSTYLE_LadderPoints = 'LadderPoints';
|
||||
const SUBSTYLE_LadderRank = 'LadderRank';
|
||||
const SUBSTYLE_Laps = 'Laps';
|
||||
const SUBSTYLE_Podium = 'Podium';
|
||||
const SUBSTYLE_Points = 'Points';
|
||||
const SUBSTYLE_SandTimer = 'SandTimer';
|
||||
const SUBSTYLE_ScoreLink = 'ScoreLink';
|
||||
const SUBSTYLE_ScoreReplay = 'ScoreReplay';
|
||||
const SUBSTYLE_SendScore = 'SendScore';
|
||||
const SUBSTYLE_Speaking = 'Speaking';
|
||||
const SUBSTYLE_Spectator = 'Spectator';
|
||||
const SUBSTYLE_Tv = 'Tv';
|
||||
const SUBSTYLE_Warmup = 'Warmup';
|
||||
|
||||
/**
|
||||
* Create a new Quad_BgRaceScore2 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_BgRaceScore2
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadBgRaceScore2 = new Quad_BgRaceScore2($id);
|
||||
return $quadBgRaceScore2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_BgRaceScore2 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,102 +5,86 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'Bgs1' Style
|
||||
* Quad class for 'Bgs1' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_Bgs1 extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'Bgs1';
|
||||
const SUBSTYLE_ArrowDown = 'ArrowDown';
|
||||
const SUBSTYLE_ArrowLeft = 'ArrowLeft';
|
||||
const SUBSTYLE_ArrowRight = 'ArrowRight';
|
||||
const SUBSTYLE_ArrowUp = 'ArrowUp';
|
||||
const SUBSTYLE_BgButton = 'BgButton';
|
||||
const SUBSTYLE_BgButtonBig = 'BgButtonBig';
|
||||
const SUBSTYLE_BgButtonGlow = 'BgButtonGlow';
|
||||
const SUBSTYLE_BgButtonGrayed = 'BgButtonGrayed';
|
||||
const SUBSTYLE_BgButtonOff = 'BgButtonOff';
|
||||
const SUBSTYLE_BgButtonShadow = 'BgButtonShadow';
|
||||
const SUBSTYLE_BgButtonSmall = 'BgButtonSmall';
|
||||
const SUBSTYLE_BgCard = 'BgCard';
|
||||
const SUBSTYLE_BgCard1 = 'BgCard1';
|
||||
const SUBSTYLE_BgCard2 = 'BgCard2';
|
||||
const SUBSTYLE_BgCard3 = 'BgCard3';
|
||||
const SUBSTYLE_BgCardBuddy = 'BgCardBuddy';
|
||||
const SUBSTYLE_BgCardChallenge = 'BgCardChallenge';
|
||||
const SUBSTYLE_BgCardFolder = 'BgCardFolder';
|
||||
const STYLE = 'Bgs1';
|
||||
const SUBSTYLE_ArrowDown = 'ArrowDown';
|
||||
const SUBSTYLE_ArrowLeft = 'ArrowLeft';
|
||||
const SUBSTYLE_ArrowRight = 'ArrowRight';
|
||||
const SUBSTYLE_ArrowUp = 'ArrowUp';
|
||||
const SUBSTYLE_BgButton = 'BgButton';
|
||||
const SUBSTYLE_BgButtonBig = 'BgButtonBig';
|
||||
const SUBSTYLE_BgButtonGlow = 'BgButtonGlow';
|
||||
const SUBSTYLE_BgButtonGrayed = 'BgButtonGrayed';
|
||||
const SUBSTYLE_BgButtonOff = 'BgButtonOff';
|
||||
const SUBSTYLE_BgButtonShadow = 'BgButtonShadow';
|
||||
const SUBSTYLE_BgButtonSmall = 'BgButtonSmall';
|
||||
const SUBSTYLE_BgCard = 'BgCard';
|
||||
const SUBSTYLE_BgCard1 = 'BgCard1';
|
||||
const SUBSTYLE_BgCard2 = 'BgCard2';
|
||||
const SUBSTYLE_BgCard3 = 'BgCard3';
|
||||
const SUBSTYLE_BgCardBuddy = 'BgCardBuddy';
|
||||
const SUBSTYLE_BgCardChallenge = 'BgCardChallenge';
|
||||
const SUBSTYLE_BgCardFolder = 'BgCardFolder';
|
||||
const SUBSTYLE_BgCardInventoryItem = 'BgCardInventoryItem';
|
||||
const SUBSTYLE_BgCardList = 'BgCardList';
|
||||
const SUBSTYLE_BgCardOnline = 'BgCardOnline';
|
||||
const SUBSTYLE_BgCardPlayer = 'BgCardPlayer';
|
||||
const SUBSTYLE_BgCardProperty = 'BgCardProperty';
|
||||
const SUBSTYLE_BgCardSystem = 'BgCardSystem';
|
||||
const SUBSTYLE_BgCardZone = 'BgCardZone';
|
||||
const SUBSTYLE_BgColorContour = 'BgColorContour';
|
||||
const SUBSTYLE_BgDialogBlur = 'BgDialogBlur';
|
||||
const SUBSTYLE_BgEmpty = 'BgEmpty';
|
||||
const SUBSTYLE_BgGradBottom = 'BgGradBottom';
|
||||
const SUBSTYLE_BgGradLeft = 'BgGradLeft';
|
||||
const SUBSTYLE_BgGradRight = 'BgGradRight';
|
||||
const SUBSTYLE_BgGradTop = 'BgGradTop';
|
||||
const SUBSTYLE_BgGradV = 'BgGradV';
|
||||
const SUBSTYLE_BgHealthBar = 'BgHealthBar';
|
||||
const SUBSTYLE_BgIconBorder = 'BgIconBorder';
|
||||
const SUBSTYLE_BgList = 'BgList';
|
||||
const SUBSTYLE_BgListLine = 'BgListLine';
|
||||
const SUBSTYLE_BgPager = 'BgPager';
|
||||
const SUBSTYLE_BgProgressBar = 'BgProgressBar';
|
||||
const SUBSTYLE_BgShadow = 'BgShadow';
|
||||
const SUBSTYLE_BgSlider = 'BgSlider';
|
||||
const SUBSTYLE_BgSystemBar = 'BgSystemBar';
|
||||
const SUBSTYLE_BgTitle2 = 'BgTitle2';
|
||||
const SUBSTYLE_BgTitle3 = 'BgTitle3';
|
||||
const SUBSTYLE_BgTitle3_1 = 'BgTitle3_1';
|
||||
const SUBSTYLE_BgTitle3_2 = 'BgTitle3_2';
|
||||
const SUBSTYLE_BgTitle3_3 = 'BgTitle3_3';
|
||||
const SUBSTYLE_BgTitle3_4 = 'BgTitle3_4';
|
||||
const SUBSTYLE_BgTitle3_5 = 'BgTitle3_5';
|
||||
const SUBSTYLE_BgTitleGlow = 'BgTitleGlow';
|
||||
const SUBSTYLE_BgTitlePage = 'BgTitlePage';
|
||||
const SUBSTYLE_BgTitleShadow = 'BgTitleShadow';
|
||||
const SUBSTYLE_BgWindow1 = 'BgWindow1';
|
||||
const SUBSTYLE_BgWindow2 = 'BgWindow2';
|
||||
const SUBSTYLE_BgWindow3 = 'BgWindow3';
|
||||
const SUBSTYLE_BgWindow4 = 'BgWindow4';
|
||||
const SUBSTYLE_EnergyBar = 'EnergyBar';
|
||||
const SUBSTYLE_EnergyTeam2 = 'EnergyTeam2';
|
||||
const SUBSTYLE_Glow = 'Glow';
|
||||
const SUBSTYLE_HealthBar = 'HealthBar';
|
||||
const SUBSTYLE_NavButton = 'NavButton';
|
||||
const SUBSTYLE_NavButtonBlink = 'NavButtonBlink';
|
||||
const SUBSTYLE_NavButtonQuit = 'NavButtonQuit';
|
||||
const SUBSTYLE_ProgressBar = 'ProgressBar';
|
||||
const SUBSTYLE_ProgressBarSmall = 'ProgressBarSmall';
|
||||
const SUBSTYLE_Shadow = 'Shadow';
|
||||
const SUBSTYLE_BgCardList = 'BgCardList';
|
||||
const SUBSTYLE_BgCardOnline = 'BgCardOnline';
|
||||
const SUBSTYLE_BgCardPlayer = 'BgCardPlayer';
|
||||
const SUBSTYLE_BgCardProperty = 'BgCardProperty';
|
||||
const SUBSTYLE_BgCardSystem = 'BgCardSystem';
|
||||
const SUBSTYLE_BgCardZone = 'BgCardZone';
|
||||
const SUBSTYLE_BgColorContour = 'BgColorContour';
|
||||
const SUBSTYLE_BgDialogBlur = 'BgDialogBlur';
|
||||
const SUBSTYLE_BgEmpty = 'BgEmpty';
|
||||
const SUBSTYLE_BgGradBottom = 'BgGradBottom';
|
||||
const SUBSTYLE_BgGradLeft = 'BgGradLeft';
|
||||
const SUBSTYLE_BgGradRight = 'BgGradRight';
|
||||
const SUBSTYLE_BgGradTop = 'BgGradTop';
|
||||
const SUBSTYLE_BgGradV = 'BgGradV';
|
||||
const SUBSTYLE_BgHealthBar = 'BgHealthBar';
|
||||
const SUBSTYLE_BgIconBorder = 'BgIconBorder';
|
||||
const SUBSTYLE_BgList = 'BgList';
|
||||
const SUBSTYLE_BgListLine = 'BgListLine';
|
||||
const SUBSTYLE_BgPager = 'BgPager';
|
||||
const SUBSTYLE_BgProgressBar = 'BgProgressBar';
|
||||
const SUBSTYLE_BgShadow = 'BgShadow';
|
||||
const SUBSTYLE_BgSlider = 'BgSlider';
|
||||
const SUBSTYLE_BgSystemBar = 'BgSystemBar';
|
||||
const SUBSTYLE_BgTitle2 = 'BgTitle2';
|
||||
const SUBSTYLE_BgTitle3 = 'BgTitle3';
|
||||
const SUBSTYLE_BgTitle3_1 = 'BgTitle3_1';
|
||||
const SUBSTYLE_BgTitle3_2 = 'BgTitle3_2';
|
||||
const SUBSTYLE_BgTitle3_3 = 'BgTitle3_3';
|
||||
const SUBSTYLE_BgTitle3_4 = 'BgTitle3_4';
|
||||
const SUBSTYLE_BgTitle3_5 = 'BgTitle3_5';
|
||||
const SUBSTYLE_BgTitleGlow = 'BgTitleGlow';
|
||||
const SUBSTYLE_BgTitlePage = 'BgTitlePage';
|
||||
const SUBSTYLE_BgTitleShadow = 'BgTitleShadow';
|
||||
const SUBSTYLE_BgWindow1 = 'BgWindow1';
|
||||
const SUBSTYLE_BgWindow2 = 'BgWindow2';
|
||||
const SUBSTYLE_BgWindow3 = 'BgWindow3';
|
||||
const SUBSTYLE_BgWindow4 = 'BgWindow4';
|
||||
const SUBSTYLE_EnergyBar = 'EnergyBar';
|
||||
const SUBSTYLE_EnergyTeam2 = 'EnergyTeam2';
|
||||
const SUBSTYLE_Glow = 'Glow';
|
||||
const SUBSTYLE_HealthBar = 'HealthBar';
|
||||
const SUBSTYLE_NavButton = 'NavButton';
|
||||
const SUBSTYLE_NavButtonBlink = 'NavButtonBlink';
|
||||
const SUBSTYLE_NavButtonQuit = 'NavButtonQuit';
|
||||
const SUBSTYLE_ProgressBar = 'ProgressBar';
|
||||
const SUBSTYLE_ProgressBarSmall = 'ProgressBarSmall';
|
||||
const SUBSTYLE_Shadow = 'Shadow';
|
||||
|
||||
/**
|
||||
* Create a new Quad_Bgs1 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_Bgs1
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadBgs1 = new Quad_Bgs1($id);
|
||||
return $quadBgs1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_Bgs1 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,102 +5,86 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'Bgs1InRace' Style
|
||||
* Quad class for 'Bgs1InRace' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_Bgs1InRace extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'Bgs1InRace';
|
||||
const SUBSTYLE_ArrowDown = 'ArrowDown';
|
||||
const SUBSTYLE_ArrowLeft = 'ArrowLeft';
|
||||
const SUBSTYLE_ArrowRight = 'ArrowRight';
|
||||
const SUBSTYLE_ArrowUp = 'ArrowUp';
|
||||
const SUBSTYLE_BgButton = 'BgButton';
|
||||
const SUBSTYLE_BgButtonBig = 'BgButtonBig';
|
||||
const SUBSTYLE_BgButtonGlow = 'BgButtonGlow';
|
||||
const SUBSTYLE_BgButtonGrayed = 'BgButtonGrayed';
|
||||
const SUBSTYLE_BgButtonOff = 'BgButtonOff';
|
||||
const SUBSTYLE_BgButtonShadow = 'BgButtonShadow';
|
||||
const SUBSTYLE_BgButtonSmall = 'BgButtonSmall';
|
||||
const SUBSTYLE_BgCard = 'BgCard';
|
||||
const SUBSTYLE_BgCard1 = 'BgCard1';
|
||||
const SUBSTYLE_BgCard2 = 'BgCard2';
|
||||
const SUBSTYLE_BgCard3 = 'BgCard3';
|
||||
const SUBSTYLE_BgCardBuddy = 'BgCardBuddy';
|
||||
const SUBSTYLE_BgCardChallenge = 'BgCardChallenge';
|
||||
const SUBSTYLE_BgCardFolder = 'BgCardFolder';
|
||||
const STYLE = 'Bgs1InRace';
|
||||
const SUBSTYLE_ArrowDown = 'ArrowDown';
|
||||
const SUBSTYLE_ArrowLeft = 'ArrowLeft';
|
||||
const SUBSTYLE_ArrowRight = 'ArrowRight';
|
||||
const SUBSTYLE_ArrowUp = 'ArrowUp';
|
||||
const SUBSTYLE_BgButton = 'BgButton';
|
||||
const SUBSTYLE_BgButtonBig = 'BgButtonBig';
|
||||
const SUBSTYLE_BgButtonGlow = 'BgButtonGlow';
|
||||
const SUBSTYLE_BgButtonGrayed = 'BgButtonGrayed';
|
||||
const SUBSTYLE_BgButtonOff = 'BgButtonOff';
|
||||
const SUBSTYLE_BgButtonShadow = 'BgButtonShadow';
|
||||
const SUBSTYLE_BgButtonSmall = 'BgButtonSmall';
|
||||
const SUBSTYLE_BgCard = 'BgCard';
|
||||
const SUBSTYLE_BgCard1 = 'BgCard1';
|
||||
const SUBSTYLE_BgCard2 = 'BgCard2';
|
||||
const SUBSTYLE_BgCard3 = 'BgCard3';
|
||||
const SUBSTYLE_BgCardBuddy = 'BgCardBuddy';
|
||||
const SUBSTYLE_BgCardChallenge = 'BgCardChallenge';
|
||||
const SUBSTYLE_BgCardFolder = 'BgCardFolder';
|
||||
const SUBSTYLE_BgCardInventoryItem = 'BgCardInventoryItem';
|
||||
const SUBSTYLE_BgCardList = 'BgCardList';
|
||||
const SUBSTYLE_BgCardOnline = 'BgCardOnline';
|
||||
const SUBSTYLE_BgCardPlayer = 'BgCardPlayer';
|
||||
const SUBSTYLE_BgCardProperty = 'BgCardProperty';
|
||||
const SUBSTYLE_BgCardSystem = 'BgCardSystem';
|
||||
const SUBSTYLE_BgCardZone = 'BgCardZone';
|
||||
const SUBSTYLE_BgColorContour = 'BgColorContour';
|
||||
const SUBSTYLE_BgDialogBlur = 'BgDialogBlur';
|
||||
const SUBSTYLE_BgEmpty = 'BgEmpty';
|
||||
const SUBSTYLE_BgGradBottom = 'BgGradBottom';
|
||||
const SUBSTYLE_BgGradLeft = 'BgGradLeft';
|
||||
const SUBSTYLE_BgGradRight = 'BgGradRight';
|
||||
const SUBSTYLE_BgGradTop = 'BgGradTop';
|
||||
const SUBSTYLE_BgGradV = 'BgGradV';
|
||||
const SUBSTYLE_BgHealthBar = 'BgHealthBar';
|
||||
const SUBSTYLE_BgIconBorder = 'BgIconBorder';
|
||||
const SUBSTYLE_BgList = 'BgList';
|
||||
const SUBSTYLE_BgListLine = 'BgListLine';
|
||||
const SUBSTYLE_BgPager = 'BgPager';
|
||||
const SUBSTYLE_BgProgressBar = 'BgProgressBar';
|
||||
const SUBSTYLE_BgShadow = 'BgShadow';
|
||||
const SUBSTYLE_BgSlider = 'BgSlider';
|
||||
const SUBSTYLE_BgSystemBar = 'BgSystemBar';
|
||||
const SUBSTYLE_BgTitle2 = 'BgTitle2';
|
||||
const SUBSTYLE_BgTitle3 = 'BgTitle3';
|
||||
const SUBSTYLE_BgTitle3_1 = 'BgTitle3_1';
|
||||
const SUBSTYLE_BgTitle3_2 = 'BgTitle3_2';
|
||||
const SUBSTYLE_BgTitle3_3 = 'BgTitle3_3';
|
||||
const SUBSTYLE_BgTitle3_4 = 'BgTitle3_4';
|
||||
const SUBSTYLE_BgTitle3_5 = 'BgTitle3_5';
|
||||
const SUBSTYLE_BgTitleGlow = 'BgTitleGlow';
|
||||
const SUBSTYLE_BgTitlePage = 'BgTitlePage';
|
||||
const SUBSTYLE_BgTitleShadow = 'BgTitleShadow';
|
||||
const SUBSTYLE_BgWindow1 = 'BgWindow1';
|
||||
const SUBSTYLE_BgWindow2 = 'BgWindow2';
|
||||
const SUBSTYLE_BgWindow3 = 'BgWindow3';
|
||||
const SUBSTYLE_BgWindow4 = 'BgWindow4';
|
||||
const SUBSTYLE_EnergyBar = 'EnergyBar';
|
||||
const SUBSTYLE_EnergyTeam2 = 'EnergyTeam2';
|
||||
const SUBSTYLE_Glow = 'Glow';
|
||||
const SUBSTYLE_HealthBar = 'HealthBar';
|
||||
const SUBSTYLE_NavButton = 'NavButton';
|
||||
const SUBSTYLE_NavButtonBlink = 'NavButtonBlink';
|
||||
const SUBSTYLE_NavButtonQuit = 'NavButtonQuit';
|
||||
const SUBSTYLE_ProgressBar = 'ProgressBar';
|
||||
const SUBSTYLE_ProgressBarSmall = 'ProgressBarSmall';
|
||||
const SUBSTYLE_Shadow = 'Shadow';
|
||||
const SUBSTYLE_BgCardList = 'BgCardList';
|
||||
const SUBSTYLE_BgCardOnline = 'BgCardOnline';
|
||||
const SUBSTYLE_BgCardPlayer = 'BgCardPlayer';
|
||||
const SUBSTYLE_BgCardProperty = 'BgCardProperty';
|
||||
const SUBSTYLE_BgCardSystem = 'BgCardSystem';
|
||||
const SUBSTYLE_BgCardZone = 'BgCardZone';
|
||||
const SUBSTYLE_BgColorContour = 'BgColorContour';
|
||||
const SUBSTYLE_BgDialogBlur = 'BgDialogBlur';
|
||||
const SUBSTYLE_BgEmpty = 'BgEmpty';
|
||||
const SUBSTYLE_BgGradBottom = 'BgGradBottom';
|
||||
const SUBSTYLE_BgGradLeft = 'BgGradLeft';
|
||||
const SUBSTYLE_BgGradRight = 'BgGradRight';
|
||||
const SUBSTYLE_BgGradTop = 'BgGradTop';
|
||||
const SUBSTYLE_BgGradV = 'BgGradV';
|
||||
const SUBSTYLE_BgHealthBar = 'BgHealthBar';
|
||||
const SUBSTYLE_BgIconBorder = 'BgIconBorder';
|
||||
const SUBSTYLE_BgList = 'BgList';
|
||||
const SUBSTYLE_BgListLine = 'BgListLine';
|
||||
const SUBSTYLE_BgPager = 'BgPager';
|
||||
const SUBSTYLE_BgProgressBar = 'BgProgressBar';
|
||||
const SUBSTYLE_BgShadow = 'BgShadow';
|
||||
const SUBSTYLE_BgSlider = 'BgSlider';
|
||||
const SUBSTYLE_BgSystemBar = 'BgSystemBar';
|
||||
const SUBSTYLE_BgTitle2 = 'BgTitle2';
|
||||
const SUBSTYLE_BgTitle3 = 'BgTitle3';
|
||||
const SUBSTYLE_BgTitle3_1 = 'BgTitle3_1';
|
||||
const SUBSTYLE_BgTitle3_2 = 'BgTitle3_2';
|
||||
const SUBSTYLE_BgTitle3_3 = 'BgTitle3_3';
|
||||
const SUBSTYLE_BgTitle3_4 = 'BgTitle3_4';
|
||||
const SUBSTYLE_BgTitle3_5 = 'BgTitle3_5';
|
||||
const SUBSTYLE_BgTitleGlow = 'BgTitleGlow';
|
||||
const SUBSTYLE_BgTitlePage = 'BgTitlePage';
|
||||
const SUBSTYLE_BgTitleShadow = 'BgTitleShadow';
|
||||
const SUBSTYLE_BgWindow1 = 'BgWindow1';
|
||||
const SUBSTYLE_BgWindow2 = 'BgWindow2';
|
||||
const SUBSTYLE_BgWindow3 = 'BgWindow3';
|
||||
const SUBSTYLE_BgWindow4 = 'BgWindow4';
|
||||
const SUBSTYLE_EnergyBar = 'EnergyBar';
|
||||
const SUBSTYLE_EnergyTeam2 = 'EnergyTeam2';
|
||||
const SUBSTYLE_Glow = 'Glow';
|
||||
const SUBSTYLE_HealthBar = 'HealthBar';
|
||||
const SUBSTYLE_NavButton = 'NavButton';
|
||||
const SUBSTYLE_NavButtonBlink = 'NavButtonBlink';
|
||||
const SUBSTYLE_NavButtonQuit = 'NavButtonQuit';
|
||||
const SUBSTYLE_ProgressBar = 'ProgressBar';
|
||||
const SUBSTYLE_ProgressBarSmall = 'ProgressBarSmall';
|
||||
const SUBSTYLE_Shadow = 'Shadow';
|
||||
|
||||
/**
|
||||
* Create a new Quad_Bgs1InRace Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_Bgs1InRace
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadBgs1InRace = new Quad_Bgs1InRace($id);
|
||||
return $quadBgs1InRace;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_Bgs1InRace Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,42 +5,26 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'BgsChallengeMedals' Style
|
||||
* Quad class for 'BgsChallengeMedals' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_BgsChallengeMedals extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'BgsChallengeMedals';
|
||||
const SUBSTYLE_BgBronze = 'BgBronze';
|
||||
const SUBSTYLE_BgGold = 'BgGold';
|
||||
const SUBSTYLE_BgNadeo = 'BgNadeo';
|
||||
const STYLE = 'BgsChallengeMedals';
|
||||
const SUBSTYLE_BgBronze = 'BgBronze';
|
||||
const SUBSTYLE_BgGold = 'BgGold';
|
||||
const SUBSTYLE_BgNadeo = 'BgNadeo';
|
||||
const SUBSTYLE_BgNotPlayed = 'BgNotPlayed';
|
||||
const SUBSTYLE_BgPlayed = 'BgPlayed';
|
||||
const SUBSTYLE_BgSilver = 'BgSilver';
|
||||
const SUBSTYLE_BgPlayed = 'BgPlayed';
|
||||
const SUBSTYLE_BgSilver = 'BgSilver';
|
||||
|
||||
/**
|
||||
* Create a new Quad_BgsChallengeMedals Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_BgsChallengeMedals
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadBgsChallengeMedals = new Quad_BgsChallengeMedals($id);
|
||||
return $quadBgsChallengeMedals;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_BgsChallengeMedals Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,50 +5,34 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'BgsPlayerCard' Style
|
||||
* Quad class for 'BgsPlayerCard' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_BgsPlayerCard extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'BgsPlayerCard';
|
||||
const SUBSTYLE_BgActivePlayerCard = 'BgActivePlayerCard';
|
||||
const SUBSTYLE_BgActivePlayerName = 'BgActivePlayerName';
|
||||
const STYLE = 'BgsPlayerCard';
|
||||
const SUBSTYLE_BgActivePlayerCard = 'BgActivePlayerCard';
|
||||
const SUBSTYLE_BgActivePlayerName = 'BgActivePlayerName';
|
||||
const SUBSTYLE_BgActivePlayerScore = 'BgActivePlayerScore';
|
||||
const SUBSTYLE_BgCard = 'BgCard';
|
||||
const SUBSTYLE_BgCardSystem = 'BgCardSystem';
|
||||
const SUBSTYLE_BgMediaTracker = 'BgMediaTracker';
|
||||
const SUBSTYLE_BgPlayerCard = 'BgPlayerCard';
|
||||
const SUBSTYLE_BgPlayerCardBig = 'BgPlayerCardBig';
|
||||
const SUBSTYLE_BgPlayerCardSmall = 'BgPlayerCardSmall';
|
||||
const SUBSTYLE_BgPlayerName = 'BgPlayerName';
|
||||
const SUBSTYLE_BgPlayerScore = 'BgPlayerScore';
|
||||
const SUBSTYLE_BgRacePlayerLine = 'BgRacePlayerLine';
|
||||
const SUBSTYLE_BgRacePlayerName = 'BgRacePlayerName';
|
||||
const SUBSTYLE_ProgressBar = 'ProgressBar';
|
||||
const SUBSTYLE_BgCard = 'BgCard';
|
||||
const SUBSTYLE_BgCardSystem = 'BgCardSystem';
|
||||
const SUBSTYLE_BgMediaTracker = 'BgMediaTracker';
|
||||
const SUBSTYLE_BgPlayerCard = 'BgPlayerCard';
|
||||
const SUBSTYLE_BgPlayerCardBig = 'BgPlayerCardBig';
|
||||
const SUBSTYLE_BgPlayerCardSmall = 'BgPlayerCardSmall';
|
||||
const SUBSTYLE_BgPlayerName = 'BgPlayerName';
|
||||
const SUBSTYLE_BgPlayerScore = 'BgPlayerScore';
|
||||
const SUBSTYLE_BgRacePlayerLine = 'BgRacePlayerLine';
|
||||
const SUBSTYLE_BgRacePlayerName = 'BgRacePlayerName';
|
||||
const SUBSTYLE_ProgressBar = 'ProgressBar';
|
||||
|
||||
/**
|
||||
* Create a new Quad_BgsPlayerCard Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_BgsPlayerCard
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadBgsPlayerCard = new Quad_BgsPlayerCard($id);
|
||||
return $quadBgsPlayerCard;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_BgsPlayerCard Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,48 +5,32 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'Copilot' Style
|
||||
* Quad class for 'Copilot' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_Copilot extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'Copilot';
|
||||
const SUBSTYLE_Down = 'Down';
|
||||
const SUBSTYLE_DownGood = 'DownGood';
|
||||
const SUBSTYLE_DownWrong = 'DownWrong';
|
||||
const SUBSTYLE_Left = 'Left';
|
||||
const SUBSTYLE_LeftGood = 'LeftGood';
|
||||
const SUBSTYLE_LeftWrong = 'LeftWrong';
|
||||
const SUBSTYLE_Right = 'Right';
|
||||
const SUBSTYLE_RightGood = 'RightGood';
|
||||
const STYLE = 'Copilot';
|
||||
const SUBSTYLE_Down = 'Down';
|
||||
const SUBSTYLE_DownGood = 'DownGood';
|
||||
const SUBSTYLE_DownWrong = 'DownWrong';
|
||||
const SUBSTYLE_Left = 'Left';
|
||||
const SUBSTYLE_LeftGood = 'LeftGood';
|
||||
const SUBSTYLE_LeftWrong = 'LeftWrong';
|
||||
const SUBSTYLE_Right = 'Right';
|
||||
const SUBSTYLE_RightGood = 'RightGood';
|
||||
const SUBSTYLE_RightWrong = 'RightWrong';
|
||||
const SUBSTYLE_Up = 'Up';
|
||||
const SUBSTYLE_UpGood = 'UpGood';
|
||||
const SUBSTYLE_UpWrong = 'UpWrong';
|
||||
const SUBSTYLE_Up = 'Up';
|
||||
const SUBSTYLE_UpGood = 'UpGood';
|
||||
const SUBSTYLE_UpWrong = 'UpWrong';
|
||||
|
||||
/**
|
||||
* Create a new Quad_Copilot Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_Copilot
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadCopilot = new Quad_Copilot($id);
|
||||
return $quadCopilot;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_Copilot Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,39 +5,23 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'Emblems' Style
|
||||
* Quad class for 'Emblems' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_Emblems extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'Emblems';
|
||||
const STYLE = 'Emblems';
|
||||
const SUBSTYLE_0 = '#0';
|
||||
const SUBSTYLE_1 = '#1';
|
||||
const SUBSTYLE_2 = '#2';
|
||||
|
||||
/**
|
||||
* Create a new Quad_Emblems Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_Emblems
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadEmblems = new Quad_Emblems($id);
|
||||
return $quadEmblems;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_Emblems Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,42 +5,26 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'EnergyBar' Style
|
||||
* Quad class for 'EnergyBar' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_EnergyBar extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'EnergyBar';
|
||||
const SUBSTYLE_BgText = 'BgText';
|
||||
const SUBSTYLE_EnergyBar = 'EnergyBar';
|
||||
const SUBSTYLE_EnergyBar_0_25 = 'EnergyBar_0.25';
|
||||
const SUBSTYLE_EnergyBar_Thin = 'EnergyBar_Thin';
|
||||
const SUBSTYLE_HeaderGaugeLeft = 'HeaderGaugeLeft';
|
||||
const STYLE = 'EnergyBar';
|
||||
const SUBSTYLE_BgText = 'BgText';
|
||||
const SUBSTYLE_EnergyBar = 'EnergyBar';
|
||||
const SUBSTYLE_EnergyBar_0_25 = 'EnergyBar_0.25';
|
||||
const SUBSTYLE_EnergyBar_Thin = 'EnergyBar_Thin';
|
||||
const SUBSTYLE_HeaderGaugeLeft = 'HeaderGaugeLeft';
|
||||
const SUBSTYLE_HeaderGaugeRight = 'HeaderGaugeRight';
|
||||
|
||||
/**
|
||||
* Create a new Quad_EnergyBar Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_EnergyBar
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadEnergybar = new Quad_EnergyBar($id);
|
||||
return $quadEnergybar;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_EnergyBar Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,45 +5,29 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'Hud3dEchelons' Style
|
||||
* Quad class for 'Hud3dEchelons' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_Hud3dEchelons extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'Hud3dEchelons';
|
||||
const STYLE = 'Hud3dEchelons';
|
||||
const SUBSTYLE_EchelonBronze1 = 'EchelonBronze1';
|
||||
const SUBSTYLE_EchelonBronze2 = 'EchelonBronze2';
|
||||
const SUBSTYLE_EchelonBronze3 = 'EchelonBronze3';
|
||||
const SUBSTYLE_EchelonGold1 = 'EchelonGold1';
|
||||
const SUBSTYLE_EchelonGold2 = 'EchelonGold2';
|
||||
const SUBSTYLE_EchelonGold3 = 'EchelonGold3';
|
||||
const SUBSTYLE_EchelonGold1 = 'EchelonGold1';
|
||||
const SUBSTYLE_EchelonGold2 = 'EchelonGold2';
|
||||
const SUBSTYLE_EchelonGold3 = 'EchelonGold3';
|
||||
const SUBSTYLE_EchelonSilver1 = 'EchelonSilver1';
|
||||
const SUBSTYLE_EchelonSilver2 = 'EchelonSilver2';
|
||||
const SUBSTYLE_EchelonSilver3 = 'EchelonSilver3';
|
||||
|
||||
/**
|
||||
* Create a new Quad_Hud3dEchelons Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_Hud3dEchelons
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadHud3dEchelons = new Quad_Hud3dEchelons($id);
|
||||
return $quadHud3dEchelons;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_Hud3dEchelons Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,44 +5,28 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'Hud3dIcons' Style
|
||||
* Quad class for 'Hud3dIcons' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_Hud3dIcons extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'Hud3dIcons';
|
||||
const SUBSTYLE_Cross = 'Cross';
|
||||
const STYLE = 'Hud3dIcons';
|
||||
const SUBSTYLE_Cross = 'Cross';
|
||||
const SUBSTYLE_CrossTargeted = 'CrossTargeted';
|
||||
const SUBSTYLE_Player1 = 'Player1';
|
||||
const SUBSTYLE_Player2 = 'Player2';
|
||||
const SUBSTYLE_Player3 = 'Player3';
|
||||
const SUBSTYLE_PointA = 'PointA';
|
||||
const SUBSTYLE_PointB = 'PointB';
|
||||
const SUBSTYLE_PointC = 'PointC';
|
||||
const SUBSTYLE_Player1 = 'Player1';
|
||||
const SUBSTYLE_Player2 = 'Player2';
|
||||
const SUBSTYLE_Player3 = 'Player3';
|
||||
const SUBSTYLE_PointA = 'PointA';
|
||||
const SUBSTYLE_PointB = 'PointB';
|
||||
const SUBSTYLE_PointC = 'PointC';
|
||||
|
||||
/**
|
||||
* Create a new Quad_Hud3dIcons Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_Hud3dIcons
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadHud3dIcons = new Quad_Hud3dIcons($id);
|
||||
return $quadHud3dIcons;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_Hud3dIcons Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'Icons128x128_1' Style
|
||||
* Quad class for 'Icons128x128_1' styles
|
||||
*
|
||||
* @author steeffeen <mail@steeffeen.com>
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
@ -81,24 +81,8 @@ class Quad_Icons128x128_1 extends Quad {
|
||||
const SUBSTYLE_Upload = 'Upload';
|
||||
const SUBSTYLE_Vehicles = 'Vehicles';
|
||||
|
||||
/**
|
||||
* Create a new Quad_Icons128x128_1 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_Icons128x128_1
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadIcons128x128_1 = new Quad_Icons128x128_1($id);
|
||||
return $quadIcons128x128_1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_Icons128x128_1 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'Icons128x128_Blink' Style
|
||||
* Quad class for 'Icons128x128_Blink' styles
|
||||
*
|
||||
* @author steeffeen <mail@steeffeen.com>
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
@ -81,24 +81,8 @@ class Quad_Icons128x128_Blink extends Quad {
|
||||
const SUBSTYLE_Upload = 'Upload';
|
||||
const SUBSTYLE_Vehicles = 'Vehicles';
|
||||
|
||||
/**
|
||||
* Create a new Quad_Icons128x128_Blink Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_Icons128x128_Blink
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadIcons128x128_Blink = new Quad_Icons128x128_Blink($id);
|
||||
return $quadIcons128x128_Blink;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_Icons128x128_Blink Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,62 +5,46 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'Icons128x32_1' Style
|
||||
* Quad class for 'Icons128x32_1' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_Icons128x32_1 extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'Icons128x32_1';
|
||||
const SUBSTYLE_Empty = 'Empty';
|
||||
const SUBSTYLE_ManiaLinkHome = 'ManiaLinkHome';
|
||||
const STYLE = 'Icons128x32_1';
|
||||
const SUBSTYLE_Empty = 'Empty';
|
||||
const SUBSTYLE_ManiaLinkHome = 'ManiaLinkHome';
|
||||
const SUBSTYLE_ManiaLinkSwitch = 'ManiaLinkSwitch';
|
||||
const SUBSTYLE_ManiaPlanet = 'ManiaPlanet';
|
||||
const SUBSTYLE_Minimize = 'Minimize';
|
||||
const SUBSTYLE_Music = 'Music';
|
||||
const SUBSTYLE_PainterBrush = 'PainterBrush';
|
||||
const SUBSTYLE_PainterFill = 'PainterFill';
|
||||
const SUBSTYLE_PainterLayer = 'PainterLayer';
|
||||
const SUBSTYLE_PainterMirror = 'PainterMirror';
|
||||
const SUBSTYLE_PainterSticker = 'PainterSticker';
|
||||
const SUBSTYLE_PainterTeam = 'PainterTeam';
|
||||
const SUBSTYLE_RT_Cup = 'RT_Cup';
|
||||
const SUBSTYLE_RT_Laps = 'RT_Laps';
|
||||
const SUBSTYLE_RT_Rounds = 'RT_Rounds';
|
||||
const SUBSTYLE_RT_Script = 'RT_Script';
|
||||
const SUBSTYLE_RT_Team = 'RT_Team';
|
||||
const SUBSTYLE_RT_TimeAttack = 'RT_TimeAttack';
|
||||
const SUBSTYLE_RT_Stunts = 'RT_Stunts';
|
||||
const SUBSTYLE_Settings = 'Settings';
|
||||
const SUBSTYLE_SliderBar = 'SliderBar';
|
||||
const SUBSTYLE_SliderBar2 = 'SliderBar2';
|
||||
const SUBSTYLE_SliderCursor = 'SliderCursor';
|
||||
const SUBSTYLE_Sound = 'Sound';
|
||||
const SUBSTYLE_UrlBg = 'UrlBg';
|
||||
const SUBSTYLE_Windowed = 'Windowed';
|
||||
const SUBSTYLE_ManiaPlanet = 'ManiaPlanet';
|
||||
const SUBSTYLE_Minimize = 'Minimize';
|
||||
const SUBSTYLE_Music = 'Music';
|
||||
const SUBSTYLE_PainterBrush = 'PainterBrush';
|
||||
const SUBSTYLE_PainterFill = 'PainterFill';
|
||||
const SUBSTYLE_PainterLayer = 'PainterLayer';
|
||||
const SUBSTYLE_PainterMirror = 'PainterMirror';
|
||||
const SUBSTYLE_PainterSticker = 'PainterSticker';
|
||||
const SUBSTYLE_PainterTeam = 'PainterTeam';
|
||||
const SUBSTYLE_RT_Cup = 'RT_Cup';
|
||||
const SUBSTYLE_RT_Laps = 'RT_Laps';
|
||||
const SUBSTYLE_RT_Rounds = 'RT_Rounds';
|
||||
const SUBSTYLE_RT_Script = 'RT_Script';
|
||||
const SUBSTYLE_RT_Team = 'RT_Team';
|
||||
const SUBSTYLE_RT_TimeAttack = 'RT_TimeAttack';
|
||||
const SUBSTYLE_RT_Stunts = 'RT_Stunts';
|
||||
const SUBSTYLE_Settings = 'Settings';
|
||||
const SUBSTYLE_SliderBar = 'SliderBar';
|
||||
const SUBSTYLE_SliderBar2 = 'SliderBar2';
|
||||
const SUBSTYLE_SliderCursor = 'SliderCursor';
|
||||
const SUBSTYLE_Sound = 'Sound';
|
||||
const SUBSTYLE_UrlBg = 'UrlBg';
|
||||
const SUBSTYLE_Windowed = 'Windowed';
|
||||
|
||||
/**
|
||||
* Create a new Quad_Icons128x32_1 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_Icons128x32_1
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadIcons128x32_1 = new Quad_Icons128x32_1($id);
|
||||
return $quadIcons128x32_1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_Icons128x32_1 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,122 +5,106 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'Icons64x64_1' Style
|
||||
* Quad class for 'Icons64x64_1' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_Icons64x64_1 extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'Icons64x64_1';
|
||||
const SUBSTYLE_3DStereo = '3DStereo';
|
||||
const SUBSTYLE_Add = 'Add';
|
||||
const SUBSTYLE_ArrowBlue = 'ArrowBlue';
|
||||
const SUBSTYLE_ArrowDisabled = 'ArrowDisabled';
|
||||
const SUBSTYLE_ArrowDown = 'ArrowDown';
|
||||
const SUBSTYLE_ArrowFastNext = 'ArrowFastNext';
|
||||
const SUBSTYLE_ArrowFastPrev = 'ArrowFastPrev';
|
||||
const SUBSTYLE_ArrowFirst = 'ArrowFirst';
|
||||
const SUBSTYLE_ArrowGreen = 'ArrowGreen';
|
||||
const SUBSTYLE_ArrowLast = 'ArrowLast';
|
||||
const SUBSTYLE_ArrowNext = 'ArrowNext';
|
||||
const SUBSTYLE_ArrowPrev = 'ArrowPrev';
|
||||
const SUBSTYLE_ArrowRed = 'ArrowRed';
|
||||
const SUBSTYLE_ArrowUp = 'ArrowUp';
|
||||
const SUBSTYLE_Browser = 'Browser';
|
||||
const SUBSTYLE_Buddy = 'Buddy';
|
||||
const SUBSTYLE_ButtonLeagues = 'ButtonLeagues';
|
||||
const SUBSTYLE_Camera = 'Camera';
|
||||
const SUBSTYLE_CameraLocal = 'CameraLocal';
|
||||
const SUBSTYLE_Check = 'Check';
|
||||
const SUBSTYLE_ClipPause = 'ClipPause';
|
||||
const SUBSTYLE_ClipPlay = 'ClipPlay';
|
||||
const SUBSTYLE_ClipRewind = 'ClipRewind';
|
||||
const SUBSTYLE_Close = 'Close';
|
||||
const SUBSTYLE_Empty = 'Empty';
|
||||
const SUBSTYLE_Finish = 'Finish';
|
||||
const SUBSTYLE_FinishGrey = 'FinishGrey';
|
||||
const SUBSTYLE_First = 'First';
|
||||
const SUBSTYLE_GenericButton = 'GenericButton';
|
||||
const SUBSTYLE_Green = 'Green';
|
||||
const SUBSTYLE_IconLeaguesLadder = 'IconLeaguesLadder';
|
||||
const SUBSTYLE_IconPlayers = 'IconPlayers';
|
||||
const SUBSTYLE_IconPlayersLadder = 'IconPlayersLadder';
|
||||
const SUBSTYLE_IconServers = 'IconServers';
|
||||
const SUBSTYLE_Inbox = 'Inbox';
|
||||
const SUBSTYLE_LvlGreen = 'LvlGreen';
|
||||
const SUBSTYLE_LvlRed = 'LvlRed';
|
||||
const SUBSTYLE_LvlYellow = 'LvlYellow';
|
||||
const SUBSTYLE_ManiaLinkNext = 'ManiaLinkNext';
|
||||
const SUBSTYLE_ManiaLinkPrev = 'ManiaLinkPrev';
|
||||
const SUBSTYLE_Maximize = 'Maximize';
|
||||
const STYLE = 'Icons64x64_1';
|
||||
const SUBSTYLE_3DStereo = '3DStereo';
|
||||
const SUBSTYLE_Add = 'Add';
|
||||
const SUBSTYLE_ArrowBlue = 'ArrowBlue';
|
||||
const SUBSTYLE_ArrowDisabled = 'ArrowDisabled';
|
||||
const SUBSTYLE_ArrowDown = 'ArrowDown';
|
||||
const SUBSTYLE_ArrowFastNext = 'ArrowFastNext';
|
||||
const SUBSTYLE_ArrowFastPrev = 'ArrowFastPrev';
|
||||
const SUBSTYLE_ArrowFirst = 'ArrowFirst';
|
||||
const SUBSTYLE_ArrowGreen = 'ArrowGreen';
|
||||
const SUBSTYLE_ArrowLast = 'ArrowLast';
|
||||
const SUBSTYLE_ArrowNext = 'ArrowNext';
|
||||
const SUBSTYLE_ArrowPrev = 'ArrowPrev';
|
||||
const SUBSTYLE_ArrowRed = 'ArrowRed';
|
||||
const SUBSTYLE_ArrowUp = 'ArrowUp';
|
||||
const SUBSTYLE_Browser = 'Browser';
|
||||
const SUBSTYLE_Buddy = 'Buddy';
|
||||
const SUBSTYLE_ButtonLeagues = 'ButtonLeagues';
|
||||
const SUBSTYLE_Camera = 'Camera';
|
||||
const SUBSTYLE_CameraLocal = 'CameraLocal';
|
||||
const SUBSTYLE_Check = 'Check';
|
||||
const SUBSTYLE_ClipPause = 'ClipPause';
|
||||
const SUBSTYLE_ClipPlay = 'ClipPlay';
|
||||
const SUBSTYLE_ClipRewind = 'ClipRewind';
|
||||
const SUBSTYLE_Close = 'Close';
|
||||
const SUBSTYLE_Empty = 'Empty';
|
||||
const SUBSTYLE_Finish = 'Finish';
|
||||
const SUBSTYLE_FinishGrey = 'FinishGrey';
|
||||
const SUBSTYLE_First = 'First';
|
||||
const SUBSTYLE_GenericButton = 'GenericButton';
|
||||
const SUBSTYLE_Green = 'Green';
|
||||
const SUBSTYLE_IconLeaguesLadder = 'IconLeaguesLadder';
|
||||
const SUBSTYLE_IconPlayers = 'IconPlayers';
|
||||
const SUBSTYLE_IconPlayersLadder = 'IconPlayersLadder';
|
||||
const SUBSTYLE_IconServers = 'IconServers';
|
||||
const SUBSTYLE_Inbox = 'Inbox';
|
||||
const SUBSTYLE_LvlGreen = 'LvlGreen';
|
||||
const SUBSTYLE_LvlRed = 'LvlRed';
|
||||
const SUBSTYLE_LvlYellow = 'LvlYellow';
|
||||
const SUBSTYLE_ManiaLinkNext = 'ManiaLinkNext';
|
||||
const SUBSTYLE_ManiaLinkPrev = 'ManiaLinkPrev';
|
||||
const SUBSTYLE_Maximize = 'Maximize';
|
||||
const SUBSTYLE_MediaAudioDownloading = 'MediaAudioDownloading';
|
||||
const SUBSTYLE_MediaPlay = 'MediaPlay';
|
||||
const SUBSTYLE_MediaStop = 'MediaStop';
|
||||
const SUBSTYLE_MediaPlay = 'MediaPlay';
|
||||
const SUBSTYLE_MediaStop = 'MediaStop';
|
||||
const SUBSTYLE_MediaVideoDownloading = 'MediaVideoDownloading';
|
||||
const SUBSTYLE_NewMessage = 'NewMessage';
|
||||
const SUBSTYLE_NotBuddy = 'NotBuddy';
|
||||
const SUBSTYLE_OfficialRace = 'OfficialRace';
|
||||
const SUBSTYLE_Opponents = 'Opponents';
|
||||
const SUBSTYLE_Outbox = 'Outbox';
|
||||
const SUBSTYLE_QuitRace = 'QuitRace';
|
||||
const SUBSTYLE_RedHigh = 'RedHigh';
|
||||
const SUBSTYLE_RedLow = 'RedLow';
|
||||
const SUBSTYLE_Refresh = 'Refresh';
|
||||
const SUBSTYLE_RestartRace = 'RestartRace';
|
||||
const SUBSTYLE_Save = 'Save';
|
||||
const SUBSTYLE_Second = 'Second';
|
||||
const SUBSTYLE_ShowDown = 'ShowDown';
|
||||
const SUBSTYLE_ShowDown2 = 'ShowDown2';
|
||||
const SUBSTYLE_ShowLeft = 'ShowLeft';
|
||||
const SUBSTYLE_ShowLeft2 = 'ShowLeft2';
|
||||
const SUBSTYLE_ShowRight = 'ShowRight';
|
||||
const SUBSTYLE_ShowRight2 = 'ShowRight2';
|
||||
const SUBSTYLE_ShowUp = 'ShowUp';
|
||||
const SUBSTYLE_ShowUp2 = 'ShowUp2';
|
||||
const SUBSTYLE_ShowUpChanging = 'ShowUpChanging';
|
||||
const SUBSTYLE_SliderCursor = 'SliderCursor';
|
||||
const SUBSTYLE_SliderCursor2 = 'SliderCursor2';
|
||||
const SUBSTYLE_StateFavourite = 'StateFavourite';
|
||||
const SUBSTYLE_StatePrivate = 'StatePrivate';
|
||||
const SUBSTYLE_StateSuggested = 'StateSuggested';
|
||||
const SUBSTYLE_Sub = 'Sub';
|
||||
const SUBSTYLE_TagTypeBronze = 'TagTypeBronze';
|
||||
const SUBSTYLE_TagTypeGold = 'TagTypeGold';
|
||||
const SUBSTYLE_TagTypeNadeo = 'TagTypeNadeo';
|
||||
const SUBSTYLE_TagTypeNone = 'TagTypeNone';
|
||||
const SUBSTYLE_TagTypeSilver = 'TagTypeSilver';
|
||||
const SUBSTYLE_Third = 'Third';
|
||||
const SUBSTYLE_ToolLeague1 = 'ToolLeague1';
|
||||
const SUBSTYLE_ToolRoot = 'ToolRoot';
|
||||
const SUBSTYLE_ToolTree = 'ToolTree';
|
||||
const SUBSTYLE_ToolUp = 'ToolUp';
|
||||
const SUBSTYLE_TrackInfo = 'TrackInfo';
|
||||
const SUBSTYLE_TV = 'TV';
|
||||
const SUBSTYLE_YellowHigh = 'YellowHigh';
|
||||
const SUBSTYLE_YellowLow = 'YellowLow';
|
||||
const SUBSTYLE_NewMessage = 'NewMessage';
|
||||
const SUBSTYLE_NotBuddy = 'NotBuddy';
|
||||
const SUBSTYLE_OfficialRace = 'OfficialRace';
|
||||
const SUBSTYLE_Opponents = 'Opponents';
|
||||
const SUBSTYLE_Outbox = 'Outbox';
|
||||
const SUBSTYLE_QuitRace = 'QuitRace';
|
||||
const SUBSTYLE_RedHigh = 'RedHigh';
|
||||
const SUBSTYLE_RedLow = 'RedLow';
|
||||
const SUBSTYLE_Refresh = 'Refresh';
|
||||
const SUBSTYLE_RestartRace = 'RestartRace';
|
||||
const SUBSTYLE_Save = 'Save';
|
||||
const SUBSTYLE_Second = 'Second';
|
||||
const SUBSTYLE_ShowDown = 'ShowDown';
|
||||
const SUBSTYLE_ShowDown2 = 'ShowDown2';
|
||||
const SUBSTYLE_ShowLeft = 'ShowLeft';
|
||||
const SUBSTYLE_ShowLeft2 = 'ShowLeft2';
|
||||
const SUBSTYLE_ShowRight = 'ShowRight';
|
||||
const SUBSTYLE_ShowRight2 = 'ShowRight2';
|
||||
const SUBSTYLE_ShowUp = 'ShowUp';
|
||||
const SUBSTYLE_ShowUp2 = 'ShowUp2';
|
||||
const SUBSTYLE_ShowUpChanging = 'ShowUpChanging';
|
||||
const SUBSTYLE_SliderCursor = 'SliderCursor';
|
||||
const SUBSTYLE_SliderCursor2 = 'SliderCursor2';
|
||||
const SUBSTYLE_StateFavourite = 'StateFavourite';
|
||||
const SUBSTYLE_StatePrivate = 'StatePrivate';
|
||||
const SUBSTYLE_StateSuggested = 'StateSuggested';
|
||||
const SUBSTYLE_Sub = 'Sub';
|
||||
const SUBSTYLE_TagTypeBronze = 'TagTypeBronze';
|
||||
const SUBSTYLE_TagTypeGold = 'TagTypeGold';
|
||||
const SUBSTYLE_TagTypeNadeo = 'TagTypeNadeo';
|
||||
const SUBSTYLE_TagTypeNone = 'TagTypeNone';
|
||||
const SUBSTYLE_TagTypeSilver = 'TagTypeSilver';
|
||||
const SUBSTYLE_Third = 'Third';
|
||||
const SUBSTYLE_ToolLeague1 = 'ToolLeague1';
|
||||
const SUBSTYLE_ToolRoot = 'ToolRoot';
|
||||
const SUBSTYLE_ToolTree = 'ToolTree';
|
||||
const SUBSTYLE_ToolUp = 'ToolUp';
|
||||
const SUBSTYLE_TrackInfo = 'TrackInfo';
|
||||
const SUBSTYLE_TV = 'TV';
|
||||
const SUBSTYLE_YellowHigh = 'YellowHigh';
|
||||
const SUBSTYLE_YellowLow = 'YellowLow';
|
||||
|
||||
/**
|
||||
* Create a new Quad_Icons64x64_1 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_Icons64x64_1
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadIcons64x64_1 = new Quad_Icons64x64_1($id);
|
||||
return $quadIcons64x64_1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_Icons64x64_1 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,50 +5,34 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'Icons64x64_2' Style
|
||||
* Quad class for 'Icons64x64_2' styles
|
||||
*
|
||||
* @author steeffeen
|
||||
* @author steeffeen
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||
*/
|
||||
class Quad_Icons64x64_2 extends Quad {
|
||||
/*
|
||||
* Constants
|
||||
*/
|
||||
const STYLE = 'Icons64x64_2';
|
||||
const SUBSTYLE_ArrowElimination = 'ArrowElimination';
|
||||
const SUBSTYLE_ArrowHit = 'ArrowHit';
|
||||
const SUBSTYLE_Disconnected = 'Disconnected';
|
||||
const SUBSTYLE_DisconnectedLight = 'DisconnectedLight';
|
||||
const SUBSTYLE_LaserElimination = 'LaserElimination';
|
||||
const SUBSTYLE_LaserHit = 'LaserHit';
|
||||
const STYLE = 'Icons64x64_2';
|
||||
const SUBSTYLE_ArrowElimination = 'ArrowElimination';
|
||||
const SUBSTYLE_ArrowHit = 'ArrowHit';
|
||||
const SUBSTYLE_Disconnected = 'Disconnected';
|
||||
const SUBSTYLE_DisconnectedLight = 'DisconnectedLight';
|
||||
const SUBSTYLE_LaserElimination = 'LaserElimination';
|
||||
const SUBSTYLE_LaserHit = 'LaserHit';
|
||||
const SUBSTYLE_NucleusElimination = 'NucleusElimination';
|
||||
const SUBSTYLE_NucleusHit = 'NucleusHit';
|
||||
const SUBSTYLE_RocketElimination = 'RocketElimination';
|
||||
const SUBSTYLE_RocketHit = 'RocketHit';
|
||||
const SUBSTYLE_ServerNotice = 'ServerNotice';
|
||||
const SUBSTYLE_SortBy = 'SortBy';
|
||||
const SUBSTYLE_NucleusHit = 'NucleusHit';
|
||||
const SUBSTYLE_RocketElimination = 'RocketElimination';
|
||||
const SUBSTYLE_RocketHit = 'RocketHit';
|
||||
const SUBSTYLE_ServerNotice = 'ServerNotice';
|
||||
const SUBSTYLE_SortBy = 'SortBy';
|
||||
const SUBSTYLE_UnknownElimination = 'UnknownElimination';
|
||||
const SUBSTYLE_UnknownHit = 'UnknownHit';
|
||||
const SUBSTYLE_UnknownHit = 'UnknownHit';
|
||||
|
||||
/**
|
||||
* Create a new Quad_Icons64x64_2 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_Icons64x64_2
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadIcons64x64_2 = new Quad_Icons64x64_2($id);
|
||||
return $quadIcons64x64_2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_Icons64x64_2 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'ManiaPlanetLogos' Style
|
||||
* Quad class for 'ManiaPlanetLogos' styles
|
||||
*
|
||||
* @author steeffeen <mail@steeffeen.com>
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
@ -24,24 +24,8 @@ class Quad_ManiaPlanetLogos extends Quad {
|
||||
const SUBSTYLE_ManiaPlanetLogoWhite = 'ManiaPlanetLogoWhite';
|
||||
const SUBSTYLE_ManiaPlanetLogoWhiteSmall = 'ManiaPlanetLogoWhiteSmall';
|
||||
|
||||
/**
|
||||
* Create a new Quad_ManiaPlanetLogos Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_ManiaPlanetLogos
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadManiaPlanetLogos = new Quad_ManiaPlanetLogos($id);
|
||||
return $quadManiaPlanetLogos;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_ManiaPlanetLogos Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'ManiaPlanetMainMenu' Style
|
||||
* Quad class for 'ManiaPlanetMainMenu' styles
|
||||
*
|
||||
* @author steeffeen <mail@steeffeen.com>
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
@ -28,24 +28,8 @@ class Quad_ManiaPlanetMainMenu extends Quad {
|
||||
const SUBSTYLE_TitleBg = 'TitleBg';
|
||||
const SUBSTYLE_TopBar = 'TopBar';
|
||||
|
||||
/**
|
||||
* Create a new Quad_ManiaPlanetMainMenu Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_ManiaPlanetMainMenu
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadManiaPlanetMainMenu = new Quad_ManiaPlanetMainMenu($id);
|
||||
return $quadManiaPlanetMainMenu;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_ManiaPlanetMainMenu Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'ManiaplanetSystem' Style
|
||||
* Quad class for 'ManiaplanetSystem' styles
|
||||
*
|
||||
* @author steeffeen <mail@steeffeen.com>
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
@ -23,24 +23,8 @@ class Quad_ManiaplanetSystem extends Quad {
|
||||
const SUBSTYLE_Medals = 'Medals';
|
||||
const SUBSTYLE_Statistics = 'Statistics';
|
||||
|
||||
/**
|
||||
* Create a new Quad_ManiaplanetSystem Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_ManiaplanetSystem
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadManiaplanetSystem = new Quad_ManiaplanetSystem($id);
|
||||
return $quadManiaplanetSystem;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_ManiaplanetSystem Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'MedalsBig' Style
|
||||
* Quad class for 'MedalsBig' styles
|
||||
*
|
||||
* @author steeffeen <mail@steeffeen.com>
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
@ -24,24 +24,8 @@ class Quad_MedalsBig extends Quad {
|
||||
const SUBSTYLE_MedalSilver = 'MedalSilver';
|
||||
const SUBSTYLE_MedalSlot = 'MedalSlot';
|
||||
|
||||
/**
|
||||
* Create a new Quad_MedalsBig Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_MedalsBig
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadMedalsBig = new Quad_MedalsBig($id);
|
||||
return $quadMedalsBig;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_MedalsBig Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'TitleLogos' Style
|
||||
* Quad class for 'TitleLogos' styles
|
||||
*
|
||||
* @author steeffeen <mail@steeffeen.com>
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
@ -21,24 +21,8 @@ class Quad_TitleLogos extends Quad {
|
||||
const SUBSTYLE_Icon = 'Icon';
|
||||
const SUBSTYLE_Title = 'Title';
|
||||
|
||||
/**
|
||||
* Create a new Quad_TitleLogos Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_TitleLogos
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadTitleLogos = new Quad_TitleLogos($id);
|
||||
return $quadTitleLogos;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_TitleLogos Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'UIConstruction_Buttons' Style
|
||||
* Quad class for 'UIConstruction_Buttons' styles
|
||||
*
|
||||
* @author steeffeen <mail@steeffeen.com>
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
@ -73,24 +73,8 @@ class Quad_UIConstruction_Buttons extends Quad {
|
||||
const SUBSTYLE_Validate_Step2 = 'Validate_Step2';
|
||||
const SUBSTYLE_Validate_Step3 = 'Validate_Step3';
|
||||
|
||||
/**
|
||||
* Create a new Quad_UIConstruction_Buttons Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_UIConstruction_Buttons
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadUIConstructionButtons = new Quad_UIConstruction_Buttons($id);
|
||||
return $quadUIConstructionButtons;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_UIConstruction_Buttons Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'UIConstruction_Buttons2' Style
|
||||
* Quad class for 'UIConstruction_Buttons2' styles
|
||||
*
|
||||
* @author steeffeen <mail@steeffeen.com>
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
@ -29,24 +29,8 @@ class Quad_UIConstruction_Buttons2 extends Quad {
|
||||
const SUBSTYLE_Open = 'Open';
|
||||
const SUBSTYLE_Symmetry = 'Symmetry';
|
||||
|
||||
/**
|
||||
* Create a new Quad_UIConstruction_Buttons2 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_UIConstruction_Buttons2
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadUIConstructionButtons2 = new Quad_UIConstruction_Buttons2($id);
|
||||
return $quadUIConstructionButtons2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_UIConstruction_Buttons2 Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ namespace FML\Controls\Quads;
|
||||
use FML\Controls\Quad;
|
||||
|
||||
/**
|
||||
* Quad Class for 'UiSMSpectatorScoreBig' Style
|
||||
* Quad class for 'UiSMSpectatorScoreBig' styles
|
||||
*
|
||||
* @author steeffeen <mail@steeffeen.com>
|
||||
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
||||
@ -38,24 +38,8 @@ class Quad_UiSMSpectatorScoreBig extends Quad {
|
||||
CONST SUBSTYLE_UIRange1Bg = 'UIRange1Bg';
|
||||
CONST SUBSTYLE_UIRange2Bg = 'UIRange2Bg';
|
||||
|
||||
/**
|
||||
* Create a new Quad_UiSMSpectatorScoreBig Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
* @return \FML\Controls\Quads\Quad_UiSMSpectatorScoreBig
|
||||
/*
|
||||
* Protected properties
|
||||
*/
|
||||
public static function create($id = null) {
|
||||
$quadUiSMSpectatorScoreBig = new Quad_UiSMSpectatorScoreBig($id);
|
||||
return $quadUiSMSpectatorScoreBig;
|
||||
}
|
||||
|
||||
/**
|
||||
* Construct a new Quad_UiSMSpectatorScoreBig Control
|
||||
*
|
||||
* @param string $id (optional) Control Id
|
||||
*/
|
||||
public function __construct($id = null) {
|
||||
parent::__construct($id);
|
||||
$this->setStyle(self::STYLE);
|
||||
}
|
||||
protected $style = self::STYLE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user