Search found 3 matches
- Mon Sep 18, 2006 01:20
- Forum: Help
- Topic: multiline editbox forces newline?
- Replies: 1
- Views: 1893
multiline editbox forces newline?
Why does the multiline editbox append a newline? Is there anyway around this? I have a requirement in my project that this not be the case.
- Mon Aug 28, 2006 20:39
- Forum: Help
- Topic: Subcrition event woes
- Replies: 8
- Views: 6015
These all look like basic coding syntax errors. error C2673: 'MainUI' : global functions do not have 'this' pointers You can't use 'this' in a global function. Either move this code to an class method or pass something other than 'this'. error C2661: 'CEGUI::SubscriberTemplate<Ret,Args>::__ctor' : n...
- Mon Aug 28, 2006 17:44
- Forum: Help
- Topic: Determine event name in event handler
- Replies: 1
- Views: 2779
Determine event name in event handler
In my project I need all gui events to pass through a single handler function. This function should then determine which widget caused what sort of event and react appropriately. Is there any way to determine the event type from within an event handler? It would be very handy if EventArgs held a ref...