diff options
Diffstat (limited to 'Client/Assets/Scripts/UILib/IXUIInput.cs')
-rw-r--r-- | Client/Assets/Scripts/UILib/IXUIInput.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/UILib/IXUIInput.cs b/Client/Assets/Scripts/UILib/IXUIInput.cs new file mode 100644 index 00000000..15d99e6b --- /dev/null +++ b/Client/Assets/Scripts/UILib/IXUIInput.cs @@ -0,0 +1,25 @@ +using System;
+
+namespace UILib
+{
+ public interface IXUIInput : IXUIObject
+ {
+ string GetText();
+
+ void SetText(string strText);
+
+ void SetCharacterLimit(int num);
+
+ void SetDefault(string strText);
+
+ string GetDefault();
+
+ void RegisterKeyTriggeredEventHandler(InputKeyTriggeredEventHandler eventHandler);
+
+ void RegisterSubmitEventHandler(InputSubmitEventHandler eventHandler);
+
+ void RegisterChangeEventHandler(InputChangeEventHandler eventHandler);
+
+ void selected(bool value);
+ }
+}
|