aboutsummaryrefslogtreecommitdiff
path: root/CruUI/ui/control.h
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2018-09-24 00:16:53 +0800
committercrupest <crupest@outlook.com>2018-09-24 00:16:53 +0800
commit977c766e2337fea238804b8d8b97659361391ed0 (patch)
treeff3438e5b0517c52412cfa497d1d2a0ed314cf79 /CruUI/ui/control.h
parentbe84ddd03d3b59c0c27aa538d5ef5129f94d511c (diff)
downloadcru-977c766e2337fea238804b8d8b97659361391ed0.tar.gz
cru-977c766e2337fea238804b8d8b97659361391ed0.tar.bz2
cru-977c766e2337fea238804b8d8b97659361391ed0.zip
Develop basic function of textbox.
Diffstat (limited to 'CruUI/ui/control.h')
-rw-r--r--CruUI/ui/control.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/CruUI/ui/control.h b/CruUI/ui/control.h
index fa1158a4..d6cbae40 100644
--- a/CruUI/ui/control.h
+++ b/CruUI/ui/control.h
@@ -285,15 +285,15 @@ namespace cru
//*************** region: keyboard event ***************
virtual void OnKeyDown(events::KeyEventArgs& args);
virtual void OnKeyUp(events::KeyEventArgs& args);
- virtual void OnChar(events::CharEvent& args);
+ virtual void OnChar(events::CharEventArgs& args);
virtual void OnKeyDownCore(events::KeyEventArgs& args);
virtual void OnKeyUpCore(events::KeyEventArgs& args);
- virtual void OnCharCore(events::CharEvent& args);
+ virtual void OnCharCore(events::CharEventArgs& args);
void RaiseKeyDownEvent(events::KeyEventArgs& args);
void RaiseKeyUpEvent(events::KeyEventArgs& args);
- void RaiseCharEvent(events::CharEvent& args);
+ void RaiseCharEvent(events::CharEventArgs& args);
//*************** region: focus event ***************
virtual void OnGetFocus(events::FocusChangeEventArgs& args);