Search found 13 matches
- Tue Dec 27, 2005 16:29
- Forum: Modifications / Integrations / Customisations
- Topic: load image
- Replies: 4
- Views: 3534
Re: load image
you'll have to make another imageset and load it.
- Tue Dec 27, 2005 14:05
- Forum: Modifications / Integrations / Customisations
- Topic: Cannot load TGA files
- Replies: 2
- Views: 2453
Re: Cannot load TGA files
Why are you loading the TaharezLook.imageset manually anyways ? You should be loading the whole TaharezLook.scheme CEGUI::SchemeManager::getSingleton().loadScheme("../your/paths/here/TaharezLook.scheme"); That should load the imageset and you can use the mouse arrows and wh...
- Tue Dec 27, 2005 13:57
- Forum: Modifications / Integrations / Customisations
- Topic: Tiny text in Listbox ?
- Replies: 7
- Views: 5304
Re: Tiny text in Listbox ?
I was setting the Listbox Colour values from the layout file, didn't think they wouldn't work with the ListboxTextItem (why not btw !?) but I set it through code and it worked fine. Also, i got another related problem. I was using <Property Name="Size" Value="w:1 h:0.3"/> in my l...
- Tue Dec 27, 2005 13:52
- Forum: Modifications / Integrations / Customisations
- Topic: Using CEGui
- Replies: 1
- Views: 1888
Re: Using CEGui
Yes, I believe its possible. it has already been done before by boto (check the VRC project). You'll need to write your own renderer to interface with OSG, i recall boto said he modified the open gl one. Try visiting the IRC channel and hopefully you might get a chat with him for more info. (or if h...
- Tue Dec 27, 2005 13:50
- Forum: Modifications / Integrations / Customisations
- Topic: load image
- Replies: 4
- Views: 3534
Re: load image
I'm not entirely sure what you mean there. Do you want to reload a different image or a different imageset ? and where are you loading it, on a StaticImage , PushButton ?
- Mon Dec 26, 2005 18:43
- Forum: CEGUI Library Development Discussion
- Topic: Resource Group Names
- Replies: 4
- Views: 5568
Re: Resource Group Names
I find nothing wrong with the resource group system of cegui. I'm using OgreCEGUIRenderer too, you only need to modify the xml file (be it layout, imageset or scheme) to specify which resource group you're using. <imageset filename="bla bla" ....... ResourceGroup="MyDifferentResourceG...
- Mon Dec 26, 2005 04:17
- Forum: Modifications / Integrations / Customisations
- Topic: Tiny text in Listbox ?
- Replies: 7
- Views: 5304
Re: Tiny text in Listbox ?
I tried setting a million colours, nothing worked. And shouldn't the colour be chosen by default from the look. TaharezLook seems to know to choose white due to its black background, why not the same with WindowsLook ?
- Sun Dec 25, 2005 15:30
- Forum: Modifications / Integrations / Customisations
- Topic: Tiny text in Listbox ?
- Replies: 7
- Views: 5304
Re: Tiny text in Listbox ?
hmm, i tried switching to taharezlook and it worked. So can someone tell me why its not working for windowslook ? I'm using WindowsLook by default
- Sat Dec 24, 2005 22:42
- Forum: Modifications / Integrations / Customisations
- Topic: Tiny text in Listbox ?
- Replies: 7
- Views: 5304
Tiny text in Listbox ?
In my Console window the text in the listbox isn't appearing at all. The console window is basicly a framewindow with a listbox and editbox. Text appears fine in the editbox when typing. But it refuses to appear in the listbox, for some reason it appears very small (if thats what it is). Here is a s...
- Mon Dec 19, 2005 07:16
- Forum: Offtopic Discussion
- Topic: Layout Editor
- Replies: 118
- Views: 70419
Re: Layout Editor
I tried building the cvs version of the layout editor and got 37 errors. Here they are Compiling... iniFile.cpp Compiling... EditorView.cpp ..\inc\EditorCanvas.h(30) : error C2504: 'wxGLCanvas' : base class undefined \downloads\cegui_mk2-0.4.0\CELayoutEditor\src\EditorView.cpp(66) : ...
- Mon Dec 19, 2005 06:55
- Forum: Offtopic Discussion
- Topic: Total Annihilation Spring
- Replies: 7
- Views: 6322
Re: Total Annihilation Spring
you can do that manually. Have 2 Buttons and set thier images to left/right arrows. Then subscribe event handlers to them to do the effect you wanted.
- Mon Dec 19, 2005 04:11
- Forum: Modifications / Integrations / Customisations
- Topic: Conflicting windows ?
- Replies: 2
- Views: 2152
Re: Conflicting windows ?
yes, thats what I am using. Its activated on keypresses and apparently its not doing much unless the logo is shown, or the menu is hidden or ..... its a mess really, I'm not sure why its doing that.
I tried using Window::setVisible(true/false) but that gave the same results.
I tried using Window::setVisible(true/false) but that gave the same results.
- Sun Dec 18, 2005 14:11
- Forum: Modifications / Integrations / Customisations
- Topic: Conflicting windows ?
- Replies: 2
- Views: 2152
Conflicting windows ?
I have 2 StaticImage widgets that are supposed to be showing in the same area. One is about the a 5th of the screen and is basicly a window with several child StaticText windows (debug purposes)and the other is a much smaller Image which is used as a Logo. I've provided keyboard keys to show/hide th...