Search found 6 matches

by NetKing
Fri Dec 23, 2011 4:03 pm
Forum: Project Announcements
Topic: irrGUIEditor
Replies: 15
Views: 36385

Re: irrGUIEditor

Anyone know where I can get a copy of this program? I like the code generation part a lot. Thanks!
by NetKing
Wed Aug 03, 2011 7:56 am
Forum: Beginners Help
Topic: [SOLVED] Run-Time Check Failure #0 calling GUIEvent.caller
Replies: 1
Views: 118

[SOLVED] Run-Time Check Failure #0 calling GUIEvent.caller

Hi again, I'm trying to compile this code: IGUITreeViewNode *n = (IGUITreeViewNode *)evt.GUIEvent.Caller; Tag *c = (Tag *)n->getData();   from within an OnEvent(SEvent &evt) function, and I'm getting a Run-Time Check Failure #0 error at the point where it calls getData(). Any tips or solutions? ...
by NetKing
Tue Aug 02, 2011 5:55 am
Forum: Beginners Help
Topic: IGUIElement::setUserData() and the like not in 1.7.2
Replies: 8
Views: 292

Re: IGUIElement::setUserData() and the like not in 1.7.2

That's a great idea insomniac. I'll try it if push comes to shove. Thanks. -- Edit -- I've been trying the derivation thing with IGUIWindow since I want to make certain windows have a custom event receivers but I've run into a problem. IGUIEnvironment only has addWindow() and casting the pointer to ...
by NetKing
Mon Aug 01, 2011 7:07 pm
Forum: Beginners Help
Topic: IGUIElement::setUserData() and the like not in 1.7.2
Replies: 8
Views: 292

Re: IGUIElement::setUserData() and the like not in 1.7.2

Ok. Well I didn't want to modify the library, but if it comes down to that I will.
by NetKing
Mon Aug 01, 2011 9:26 am
Forum: Beginners Help
Topic: IGUIElement::setUserData() and the like not in 1.7.2
Replies: 8
Views: 292

Re: IGUIElement::setUserData() and the like not in 1.7.2

Could be that the CHM I saw it in was from a patched version of Irrlicht. I doubt it though, here's a copy from the CHM: void* irr::gui::IGUIElement::UserData [protected]       Definition at line 776 of file IGUIElement.h.   Referenced by getUserData(), and setUserData().     I'm figuring out a way ...
by NetKing
Mon Aug 01, 2011 5:07 am
Forum: Beginners Help
Topic: IGUIElement::setUserData() and the like not in 1.7.2
Replies: 8
Views: 292

IGUIElement::setUserData() and the like not in 1.7.2

Hey all, This is my first post here, so hi for the first time. I'm implementing a basic GUI to edit object values in my program and I intended to use IGUIElement::UserData to store information on which object each editor GUI element is tied to, but then I found that the UserData field doesn't exist ...