2013-11-25 00:02:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace FML\Controls\Quads;
|
|
|
|
|
|
|
|
use FML\Controls\Quad;
|
|
|
|
|
|
|
|
/**
|
2014-06-21 03:18:21 +02:00
|
|
|
* Quad class for 'EnergyBar' styles
|
2013-11-25 00:02:07 +01:00
|
|
|
*
|
2014-06-21 03:18:21 +02:00
|
|
|
* @author steeffeen
|
2017-03-25 18:40:15 +01:00
|
|
|
* @copyright FancyManiaLinks Copyright © 2017 Steffen Schröder
|
2014-06-21 03:18:21 +02:00
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
2013-11-25 00:02:07 +01:00
|
|
|
*/
|
2017-03-25 18:40:15 +01:00
|
|
|
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 SUBSTYLE_HeaderGaugeRight = 'HeaderGaugeRight';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string $style Style
|
|
|
|
*/
|
|
|
|
protected $style = self::STYLE;
|
2013-11-25 00:02:07 +01:00
|
|
|
|
|
|
|
}
|