blob: f7e0bf316b051e71bf1df2eb9b25188a625749e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
/**
* Core interfaces essential for TApplication class.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Web\UI\WebControls
*/
namespace Prado\Web\UI\WebControls;
/**
* IStyleable interface.
*
* This interface should be implemented by classes that support CSS styles.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package Prado\Web\UI\WebControls
* @since 3.1.0
*/
interface IStyleable
{
/**
* @return boolean whether the object has defined any style information
*/
public function getHasStyle();
/**
* @return TStyle the object representing the css style of the object
*/
public function getStyle();
/**
* Removes all styles associated with the object
*/
public function clearStyle();
}
|