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

46 lines
947 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2014-01-12 00:51:46 +01:00
* Interface for Elements with Formatable Text
*
2014-05-20 15:44:45 +02:00
* @author steeffeen <mail@steeffeen.com>
2014-04-13 18:21:40 +02:00
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
2014-05-18 19:45:50 +02:00
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
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
2014-01-21 20:30:40 +01:00
* @return \FML\Types\TextFormatable
*/
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
2014-01-21 20:30:40 +01:00
* @return \FML\Types\TextFormatable
*/
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
2014-01-21 20:30:40 +01:00
* @return \FML\Types\TextFormatable
*/
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
2014-01-21 20:30:40 +01:00
* @return \FML\Types\TextFormatable
*/
public function setAreaFocusColor($areaFocusColor);
}