summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/UILib/IXUIButton.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUIButton.cs')
-rw-r--r--Client/Assets/Scripts/UILib/IXUIButton.cs45
1 files changed, 45 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUIButton.cs b/Client/Assets/Scripts/UILib/IXUIButton.cs
new file mode 100644
index 00000000..9aa19106
--- /dev/null
+++ b/Client/Assets/Scripts/UILib/IXUIButton.cs
@@ -0,0 +1,45 @@
+using System;
+
+namespace UILib
+{
+ public interface IXUIButton : IXUIObject, IXUICD
+ {
+ int spriteWidth { get; }
+
+ int spriteHeight { get; }
+
+ int spriteDepth { get; set; }
+
+ void SetCaption(string strText);
+
+ void SetEnable(bool bEnable, bool withcollider = false);
+
+ void SetGrey(bool bGrey);
+
+ void SetAlpha(float f);
+
+ void CloseScrollView();
+
+ void RegisterClickEventHandler(ButtonClickEventHandler eventHandler);
+
+ void RegisterPressEventHandler(ButtonPressEventHandler eventHandler);
+
+ void RegisterDragEventHandler(ButtonDragEventHandler eventHandler);
+
+ void SetSpriteWithPrefix(string prefix);
+
+ void SetAudioClip(string name);
+
+ void SetSprites(string normal, string hover, string press);
+
+ ButtonClickEventHandler GetClickEventHandler();
+
+ ButtonPressEventHandler GetPressEventHandler();
+
+ void ResetState();
+
+ void ResetPanel();
+
+ void SetUnavailableCD(int cd);
+ }
+}