Search found 83 matches

by Levia
Sun Apr 15, 2007 20:43
Forum: Bug Reports, Suggestions, Feature Requests
Topic: CEGUI Version stated in Wiki Docs/Tutorials/etc.
Replies: 3
Views: 4325

Alright. Ill have a look at those soon, and specify here what ones I updated.
by Levia
Sun Apr 15, 2007 17:31
Forum: Help
Topic: Listbox doesn't draw added ListboxTextItems
Replies: 5
Views: 3751

Im sorry, I didnt knew that list was use for security purposes, same goes for the type check. They should be alright :)

As for the item, try ensureItemIsVisible function in the listbox class.

Edit: Wait, I dont get that last reply. Does your item work now?
by Levia
Sun Apr 15, 2007 07:41
Forum: Help
Topic: Listbox doesn't draw added ListboxTextItems
Replies: 5
Views: 3751

Right. This is..some odd code you got there. Let me just rewrite your function: void AddListboxItem(char const *name, char const *item) { CEGUI::Listbox * lb = static_cast<CEGUI::Listbox*>(CEGUI::WindowManager::getSingletonPtr()->getWindow("LevelNameSelection"&...
by Levia
Wed Apr 11, 2007 20:47
Forum: Help
Topic: Crash on getSingleton
Replies: 20
Views: 10401

Then I got to admit, im out of ideas - unless im missing something obvious. Someone else has any idea?
by Levia
Wed Apr 11, 2007 15:30
Forum: Help
Topic: Crash on getSingleton
Replies: 20
Views: 10401

Have you set the font as the default font? CEGUI::Font * font = CEGUI::FontManager::getSingletonPtr()->createFont("Iconified-12.font"); CEGUI::System::getSingletonPtr()->setDefaultFont(font); Thats how I do it
by Levia
Wed Apr 11, 2007 14:01
Forum: Help
Topic: Crash on getSingleton
Replies: 20
Views: 10401

Try another font..some standard font..?
by Levia
Wed Apr 11, 2007 13:31
Forum: Help
Topic: Crash on getSingleton
Replies: 20
Views: 10401

Are you sure that exception isnt causing CEGUI to crash? Where are you creating the font? Are you sure the font file is there? Make sure the font loads correctly as most windows need it ;)
by Levia
Wed Apr 11, 2007 13:05
Forum: Help
Topic: Crash on getSingleton
Replies: 20
Views: 10401

Ok, are you sure CEGUI::System is created? Are there errors in the cegui.log?
by Levia
Wed Apr 11, 2007 13:02
Forum: Help
Topic: Hide column in multicolumn list
Replies: 5
Views: 4209

I think you'll get to see a border then.
by Levia
Wed Apr 11, 2007 07:25
Forum: Help
Topic: Hide column in multicolumn list
Replies: 5
Views: 4209

You can't. I would remove it temporarily and add it later on when you need it again.
by Levia
Tue Apr 10, 2007 21:37
Forum: Help
Topic: Crash on getSingleton
Replies: 20
Views: 10401

Are you sure you call new CEGUI::System before you call that getSingleton for the windowmanager?

Try

Code: Select all

CEGUI::WindowManager * mWndMgr = CEGUI::WindowManager::getSingletonPtr();

aswell.
Can you show me the constructor of that class?
by Levia
Tue Apr 10, 2007 21:28
Forum: Offtopic Discussion
Topic: A screenshot example of a complicated CEGUI-powered UI
Replies: 9
Views: 10338

Wow this is nice! Great job.
by Levia
Tue Apr 10, 2007 21:27
Forum: Help
Topic: Crash on getSingleton
Replies: 20
Views: 10401

Where is that line then? I mean, can you paste some more code?
by Levia
Tue Apr 10, 2007 21:11
Forum: Help
Topic: Crash on getSingleton
Replies: 20
Views: 10401

Can you specify on what line it crashes? Perhaps the System is not created properly.
by Levia
Tue Apr 10, 2007 20:47
Forum: Help
Topic: Crash on getSingleton
Replies: 20
Views: 10401

Dont instantiate the WindowManager, the System constructor does that for you. mGUIRenderer = new CEGUI::OgreCEGUIRenderer(mWindow, Ogre::RENDER_QUEUE_OVERLAY, false, 3000, mSceneMgr); mGUISystem = new CEGUI::System(mGUIRenderer); mEditorGuiSheet = CEGUI::WindowManager::getSingleton&#...

Go to advanced search