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

40 lines
624 B
PHP
Raw Normal View History

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