82 lines
3.4 KiB
PHP
82 lines
3.4 KiB
PHP
<?php
|
|
|
|
namespace FML\Controls\Quads;
|
|
|
|
use FML\Controls\Quad;
|
|
|
|
/**
|
|
* Quad class for 'UIConstruction_Buttons' styles
|
|
*
|
|
* @author steeffeen <mail@steeffeen.com>
|
|
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
*/
|
|
class Quad_UIConstruction_Buttons extends Quad {
|
|
/*
|
|
* Constants
|
|
*/
|
|
const STYLE = 'UIConstruction_Buttons';
|
|
const SUBSTYLE_ActionMaker = 'ActionMaker';
|
|
const SUBSTYLE_Add = 'Add';
|
|
const SUBSTYLE_AirMapping = 'AirMapping';
|
|
const SUBSTYLE_Author = 'Author';
|
|
const SUBSTYLE_AuthorTime = 'AuthorTime';
|
|
const SUBSTYLE_BgEditors = 'BgEditors';
|
|
const SUBSTYLE_BgIcons = 'BgIcons';
|
|
const SUBSTYLE_BgMain = 'BgMain';
|
|
const SUBSTYLE_BgTools = 'BgTools';
|
|
const SUBSTYLE_BlockEditor = 'BlockEditor';
|
|
const SUBSTYLE_Camera = 'Camera';
|
|
const SUBSTYLE_Challenge = 'Challenge';
|
|
const SUBSTYLE_CopyPaste = 'CopyPaste';
|
|
const SUBSTYLE_DecalEditor = 'DecalEditor';
|
|
const SUBSTYLE_Delete = 'Delete';
|
|
const SUBSTYLE_Directory = 'Directory';
|
|
const SUBSTYLE_Down = 'Down';
|
|
const SUBSTYLE_Drive = 'Drive';
|
|
const SUBSTYLE_Erase = 'Erase';
|
|
const SUBSTYLE_FreeItems = 'FreeItems';
|
|
const SUBSTYLE_GhostBlocks = 'GhostBlocks';
|
|
const SUBSTYLE_Help = 'Help';
|
|
const SUBSTYLE_Item = 'Item';
|
|
const SUBSTYLE_Left = 'Left';
|
|
const SUBSTYLE_MacroBlockEditor = 'MacroBlockEditor';
|
|
const SUBSTYLE_MediaTracker = 'MediaTracker';
|
|
const SUBSTYLE_ObjectEditor = 'ObjectEditor';
|
|
const SUBSTYLE_OffZone = 'OffZone';
|
|
const SUBSTYLE_Options = 'Options';
|
|
const SUBSTYLE_Paint = 'Paint';
|
|
const SUBSTYLE_Pick = 'Pick';
|
|
const SUBSTYLE_Plugins = 'Plugins';
|
|
const SUBSTYLE_Quit = 'Quit';
|
|
const SUBSTYLE_Redo = 'Redo';
|
|
const SUBSTYLE_Reload = 'Reload';
|
|
const SUBSTYLE_Right = 'Right';
|
|
const SUBSTYLE_Save = 'Save';
|
|
const SUBSTYLE_SaveAs = 'SaveAs';
|
|
const SUBSTYLE_ScriptEditor = 'ScriptEditor';
|
|
const SUBSTYLE_SpotModelClearUnused = 'SpotModelClearUnused';
|
|
const SUBSTYLE_SpotModelDuplicate = 'SpotModelDuplicate';
|
|
const SUBSTYLE_SpotModelNew = 'SpotModelNew';
|
|
const SUBSTYLE_SpotModelRename = 'SpotModelRename';
|
|
const SUBSTYLE_Square = 'Square';
|
|
const SUBSTYLE_Stats = 'Stats';
|
|
const SUBSTYLE_Sub = 'Sub';
|
|
const SUBSTYLE_TerrainEditor = 'TerrainEditor';
|
|
const SUBSTYLE_TestSm = 'TestSm';
|
|
const SUBSTYLE_Text = 'Text';
|
|
const SUBSTYLE_Tools = 'Tools';
|
|
const SUBSTYLE_Underground = 'Underground';
|
|
const SUBSTYLE_Undo = 'Undo';
|
|
const SUBSTYLE_Up = 'Up';
|
|
const SUBSTYLE_Validate = 'Validate';
|
|
const SUBSTYLE_Validate_Step1 = 'Validate_Step1';
|
|
const SUBSTYLE_Validate_Step2 = 'Validate_Step2';
|
|
const SUBSTYLE_Validate_Step3 = 'Validate_Step3';
|
|
|
|
/*
|
|
* Protected properties
|
|
*/
|
|
protected $style = self::STYLE;
|
|
}
|