summaryrefslogtreecommitdiff
path: root/framework/Web/UI/ITheme.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Web/UI/ITheme.php')
-rw-r--r--framework/Web/UI/ITheme.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/framework/Web/UI/ITheme.php b/framework/Web/UI/ITheme.php
new file mode 100644
index 00000000..af9452b1
--- /dev/null
+++ b/framework/Web/UI/ITheme.php
@@ -0,0 +1,28 @@
+<?php
+/**
+ * TControl, TControlCollection, TEventParameter and INamingContainer class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2005-2014 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @package System.Web.UI
+ */
+
+/**
+ * ITheme interface.
+ *
+ * This interface must be implemented by theme.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @package System.Web.UI
+ * @since 3.0
+ */
+interface ITheme
+{
+ /**
+ * Applies this theme to the specified control.
+ * @param TControl the control to be applied with this theme
+ */
+ public function applySkin($control);
+} \ No newline at end of file