Search found 83 matches

by Levia
Wed Mar 21, 2007 13:46
Forum: Help
Topic: [solved] how to access a StaticText ?
Replies: 5
Views: 3604

Yeah, I know, I need to stop using C-style type casting ;)
by Levia
Wed Mar 21, 2007 10:51
Forum: Help
Topic: [solved] how to access a StaticText ?
Replies: 5
Views: 3604

To get it from C++ (for 0.4) CEGUI::StaticText * myTextEntry = (CEGUI::StaticText*)CEGUI::WindowManager::getSingletonPtr()->getWindow("nameofthewindow"); for 0.5 I think it is CEGUI::Static * myTextEntry = (CEGUI::Static*)CEGUI::WindowManager::getSingletonPt...
by Levia
Wed Mar 21, 2007 10:50
Forum: Help
Topic: ItemListBox vs ListBox
Replies: 3
Views: 3107

Listbox will do just fine. ItemListbox is basically for custom items.
by Levia
Sat Mar 17, 2007 07:32
Forum: Help
Topic: how to put background image in StaticText?
Replies: 2
Views: 2430

Well...you should be able to do it with setProperty I suppose, but Im not sure because I dont use 0.5.

Code: Select all

window->setProperty("BackgroundImage", "image:ImageName");

Or something like that. Sorry :)
by Levia
Wed Mar 14, 2007 13:24
Forum: Help
Topic: System::injectMouseButtonUp() crashes when deleting GUI
Replies: 3
Views: 2571

Dont delete CEGUI window with delete :)
by Levia
Fri Mar 09, 2007 21:19
Forum: Help
Topic: ListboxTextItem::setTextColours()
Replies: 1
Views: 2115

Cause a ListboxTextItem isnt linked to Listbox. I usually set the colors before I add them to the list. That works aswell. Try calling ensureItemIsVisible on the item, that might work.
by Levia
Sun Aug 27, 2006 13:36
Forum: Help
Topic: problem with String
Replies: 5
Views: 3833

Glad I could be of any help.
by Levia
Sun Aug 27, 2006 08:13
Forum: Help
Topic: subscribeEvent crash APP please help me
Replies: 4
Views: 4123

At the top of the app, there is a combobox - saying debug in your case. click it, and select release.
by Levia
Sun Aug 27, 2006 08:11
Forum: Help
Topic: problem with String
Replies: 5
Views: 3833

it basically means the window named "Edit" has no text :)
by Levia
Sat Aug 26, 2006 07:39
Forum: Help
Topic: problem with String
Replies: 5
Views: 3833

This might work movableText->setCaption((Ogre::String)CEGUI::WindowManager::getSingleton().getWindow((CEGUI::utf8*)"Edit")->getText().c_str()); altough Ogre::String stringy = CEGUI::WindowManager::getSingleton().getWindow(...
by Levia
Wed Aug 23, 2006 19:30
Forum: Offtopic Discussion
Topic: Which XML parser to use?
Replies: 11
Views: 8861

I personally like Expat. Ive had problems with tinyXML earlier so thats why I switched in the first place, Expat is working fine (in CEGUI ofc)
by Levia
Mon Aug 21, 2006 16:10
Forum: Help
Topic: Problem Loading CEGUIFalagardBase_d (0.5.0 CVS)
Replies: 3
Views: 3017

Hmm yes...but CEGUIFalagardBase isnt there anylonger. And your right. I was using an old scheme file, sorry.

Code: Select all

<WindowRendererSet Filename="CEGUIFalagardWRBase" />
by Levia
Mon Aug 21, 2006 12:00
Forum: Help
Topic: Problem Loading CEGUIFalagardBase_d (0.5.0 CVS)
Replies: 3
Views: 3017

I had this problem aswell, and this means that the scheme is basically out of date. A simple fix is changing this line: <WindowSet Filename="CEGUIFalagardBase" /> to <WindowSet Filename="CEGUIFalagardWRBase" /> The line is probably found around line 6 in your scheme file.
by Levia
Sun Aug 20, 2006 07:17
Forum: Help
Topic: subscribeEvent crash APP please help me
Replies: 4
Views: 4123

You could check out the .exe with www.dependencywalker.com and see if it misses the function subscribeEvent in CEGUIBase(_d).dll. I had this problem too and I had to recompile some stuff in order to get it work.

Go to advanced search