You're a genius Or I'm just blind...
Thanks for the help either way.
Search found 11 matches
- Sun Jan 18, 2009 10:21
- Forum: Help
- Topic: WindowFactory for TaharezLook/ItemListbox not found
- Replies: 4
- Views: 2423
- Sat Jan 17, 2009 12:00
- Forum: Help
- Topic: WindowFactory for TaharezLook/ItemListbox not found
- Replies: 4
- Views: 2423
- Fri Jan 16, 2009 16:44
- Forum: Help
- Topic: WindowFactory for TaharezLook/ItemListbox not found
- Replies: 4
- Views: 2423
WindowFactory for TaharezLook/ItemListbox not found
Hi there again! After my initial XML woes my layouts are working fine, so I went ahead with creating a little console, nothing fancy. The current structure for this is a TaharezLook/StaticText window as frame with an Editbox at the bottom for input and a Listbox above that for output. Works fine, ho...
- Fri Jan 16, 2009 11:45
- Forum: Help
- Topic: Window defined in XML layout not showing up
- Replies: 9
- Views: 5756
I believe the latest version of CEGUI uses the Expat xml-parser by default? I wonder which XML parser you where using? I wonder if you where using Xalan, which has schema validation, if it would have caught and notified you of this error. The parser I use, because it's CEGUI's default XML parser, i...
- Thu Jan 15, 2009 10:29
- Forum: Help
- Topic: Window defined in XML layout not showing up
- Replies: 9
- Views: 5756
I meant to fix parsing of these values a while back in order to make it more robust, but it never got done. I'll add a mantis ticket so it's not forgotten again. CE. Thx. I didn't mean to be rude... it just was pretty annoying to waste half a day on this. So far, CEGUI has been a pleasant experienc...
- Wed Jan 14, 2009 20:23
- Forum: Help
- Topic: Window defined in XML layout not showing up
- Replies: 9
- Views: 5756
- Wed Jan 14, 2009 15:14
- Forum: Help
- Topic: Window defined in XML layout not showing up
- Replies: 9
- Views: 5756
Window defined in XML layout not showing up
Hello there! I've finally come around to switching from hard-coded menu structures to using XML layout files for CEGUI. For my main menu, this works fine. I have on .layout for each submenu, load these when needed and simply call setGUISheet(...) with the currently needed submenu sheet. However, one...
- Wed Dec 24, 2008 09:12
- Forum: Help
- Topic: Finding out what type a window has?
- Replies: 9
- Views: 6382
Project Properites -> c/c++ -> Language -> Enable RTTI The problem was that pre sp1 RTTI was enabled whether you asked for it or not, in SP1 it does the correct thing. So if it is not enabled you will get an error. Well, it seems RTTI is already enabled for the project. Also, the project currently ...
- Tue Dec 23, 2008 17:46
- Forum: Help
- Topic: Finding out what type a window has?
- Replies: 9
- Views: 6382
Thanks for the info, could you answer a few more questions please. Which version of Visual Studio? Which service pack? Do you have RTTI enabled? Sure. VS2005 with SP1 (Version 8.0.50727.762 (SP.050727-7600)), Windows XP SP3. how do I enable RTTI? Btw: Scriptkid's solution worked flawlessly, thanks ...
- Tue Dec 23, 2008 16:22
- Forum: Help
- Topic: Finding out what type a window has?
- Replies: 9
- Views: 6382
The exception thrown said something about the type not being an _rtti type. I'll just check it again before I give scriptkid's solution a try. edit: Okay, just tried the dynamic_cast again, here's the exception: Unhandled exception at 0x7c812aeb in TankGameW32.exe: Microsoft C++ exception: std::__no...
- Sun Dec 21, 2008 22:11
- Forum: Help
- Topic: Finding out what type a window has?
- Replies: 9
- Views: 6382
Finding out what type a window has?
Hello! First post here. I've tried searching for an answer, but didn't fine one. I've been using CEGUI for a bit now with Ogre3D. So far, it works pretty well. Now I wanted to add a simple thing: Scrolling the mouse wheel should move the scroll bar of comboboxes' drop down lists, if the mouse is hov...