TrackManiaControl/application/core/FML/Types/TextFormatable.php

44 lines
677 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2013-12-09 13:05:05 +01:00
* Interface for elements with Formatable text
*
* @author steeffeen
*/
interface TextFormatable {
/**
2013-12-31 02:55:19 +01:00
* Set Text Size
*
2013-12-31 02:55:19 +01:00
* @param int $textSize
* Text Size
*/
public function setTextSize($textSize);
/**
2013-12-31 02:55:19 +01:00
* Set Text Color
*
2013-12-31 02:55:19 +01:00
* @param string $textColor
* Text Color
*/
public function setTextColor($textColor);
/**
2013-12-31 02:55:19 +01:00
* Set Area Color
*
2013-12-31 02:55:19 +01:00
* @param string $areaColor
* Area Text Color
*/
public function setAreaColor($areaColor);
/**
2013-12-31 02:55:19 +01:00
* Set Area Focus Color
*
2013-12-31 02:55:19 +01:00
* @param string $areaFocusColor
* Focus Area Color
*/
public function setAreaFocusColor($areaFocusColor);
}