Search found 83 matches

by Levia
Fri Mar 28, 2008 17:46
Forum: Modifications / Integrations / Customisations
Topic: edit box change sub
Replies: 1
Views: 2180

Wow mate, hold your horses here! :)

So you have a Excel 2003 sheet, and a application that's using CEGUI? When you enter something in the editbox in the CEGUI app, you want it to show up in a cell of the Excel worksheet?
by Levia
Tue Jun 12, 2007 12:46
Forum: Help
Topic: Renaming windows recursively? (Or: Where is getNextChild?)
Replies: 6
Views: 5218

You can simple use the combination of getChildCount and getChildAtIdx

Code: Select all

for (int x = 0; x != mContainer->getChildCount(); ++x)
{
   Window * wnd = mContainer->getChildAtIdx(x);
   // do your stuff.
}
by Levia
Mon Jun 11, 2007 10:52
Forum: Offtopic Discussion
Topic: Property Finder
Replies: 18
Views: 36812

Ok, I have encountered a problem with the label, and that is that it would appear ok on lower resolutions, (800x600 and lower), but the label would be right next to the checkbox in higher ones (1024x786 and above), which is ugly. Fix: <!-- *************************************************** TaharezL...
by Levia
Fri Jun 08, 2007 17:53
Forum: Help
Topic: Filter CEGUI::PushButton::EventKeyDown
Replies: 3
Views: 3278

you could also simply subscribe to EventTextAccepted, which is fired when enter or tab is pressed.
by Levia
Tue May 08, 2007 21:05
Forum: Modifications / Integrations / Customisations
Topic: Keybinding Widget
Replies: 12
Views: 10586

Yeah same here :)
by Levia
Tue May 08, 2007 18:43
Forum: Modifications / Integrations / Customisations
Topic: Keybinding Widget
Replies: 12
Views: 10586

by Levia
Tue May 08, 2007 11:36
Forum: Help
Topic: Setting an ImageButton's image - With no imageset!
Replies: 20
Views: 13451

..Nevermind, we don't understand eachother but I do understand that its already done ;)
by Levia
Tue May 08, 2007 06:30
Forum: Help
Topic: Setting an ImageButton's image - With no imageset!
Replies: 20
Views: 13451

Yes...

So..It already did the following then?
Rackle wrote:P.S. Create an application out of Property Finder to obtain a list of the properties for any .scheme.
by Levia
Mon May 07, 2007 21:38
Forum: Help
Topic: Setting an ImageButton's image - With no imageset!
Replies: 20
Views: 13451

Rackle wrote:P.S. Create an application out of Property Finder to obtain a list of the properties for any .scheme.

Wasnt that what the property finder was for?? and it already did that didnt it?
by Levia
Mon May 07, 2007 17:35
Forum: Help
Topic: Setting an ImageButton's image - With no imageset!
Replies: 20
Views: 13451

Yup. There is no NormalImage property for Button in WindowsLook..the others dont exist either. Should be easily doable though.
by Levia
Mon May 07, 2007 16:27
Forum: Help
Topic: Setting an ImageButton's image - With no imageset!
Replies: 20
Views: 13451

What exception is logged in the CEGUI.log file?
by Levia
Sun May 06, 2007 21:37
Forum: Modifications / Integrations / Customisations
Topic: Keybinding Widget
Replies: 12
Views: 10586

Use ItemListbox! You can extend ItemEntry, and do the rest by looknfeel. Ive once done a checklistitem with this method (checkbox in front of the label...as item:) )
by Levia
Sat May 05, 2007 17:06
Forum: Modifications / Integrations / Customisations
Topic: [Solved] fire MouseEvent
Replies: 1
Views: 2865

CEGUI::EventArgs e; button->fireEvent(CEGUI::Window::EventMouseClick, e); Thats how you fire an event manually. The method works, but I'm not sure the event works (so im not sure the button will be pushed then, though you could always fire PushButton::EventClicked, which will work) CEGUI::E...
by Levia
Sat May 05, 2007 07:51
Forum: Modifications / Integrations / Customisations
Topic: [Solved] Combobox setSortingEnabled
Replies: 2
Views: 3072

Yes there is!
http://www.cegui.org.uk/wiki/index.php/SetProperty

And the property you want is 'SortList'. Set it to true and your set.
by Levia
Wed May 02, 2007 17:13
Forum: Offtopic Discussion
Topic: Property Finder
Replies: 18
Views: 36812

Thats just..stunning. Awesome job done there mate!

Go to advanced search