Search found 58 matches
- Fri Apr 01, 2005 12:32
- Forum: Modifications / Integrations / Customisations
- Topic: Perhaps Incorrect getUnclippedInnerRect in ScrollablePane Wi
- Replies: 3
- Views: 2532
Re: is the ScrollablePane Scrollbar enabled
Work Great Chris Thx [Edit] Except when i call isVisible() the first time it always seems to answer yes even if it is not, but it can be a bug in my construction routine, i will check it later. Code to return a correct Workable Rect for ScrollablePane Widget in Window Absolute Coordinate Rect getWor...
- Fri Apr 01, 2005 12:26
- Forum: Modifications / Integrations / Customisations
- Topic: Perhaps Incorrect getUnclippedInnerRect in ScrollablePane Wi
- Replies: 3
- Views: 2532
Re: is the Scrollbar enabled
Thx Chris,
i will test that soon.
I submited it in BugReports.
i will test that soon.
I submited it in BugReports.
- Fri Apr 01, 2005 00:50
- Forum: Modifications / Integrations / Customisations
- Topic: Perhaps Incorrect getUnclippedInnerRect in ScrollablePane Wi
- Replies: 3
- Views: 2532
Perhaps Incorrect getUnclippedInnerRect in ScrollablePane Wi
Hello, My problem is that: I use ScrollPane with scrollBar automaticaly hide if not required. I would like to know if the scrollbar is visible or not at a time. The reason is when i get the ScrollablePane InnerUnclippedRect , it seems not to take care of this data, so it always give to me the comple...
- Fri Apr 01, 2005 00:27
- Forum: Modifications / Integrations / Customisations
- Topic: Problem with innerRect
- Replies: 7
- Views: 3868
Re: Problem with innerRect
I resolve the InnerRect Problematic with the Eddie clue ;) The GetUnclippedInnerRect give the workable part of a window but in screen coordinate, so to be usable in the window i had to transform it in window absolute coord Here is the code i use, and it work perfect: Rect getContentRect(Window* ...
- Wed Mar 30, 2005 23:09
- Forum: Modifications / Integrations / Customisations
- Topic: WindowsLook ComboBox Color Problem
- Replies: 8
- Views: 4814
Re: WindowsLook ComboBox Color Problem
Great, lindquist. I understand that's not a robust solution. In my case for the moment, as i am a complete beginner in CEGUI, i am only trying to make the things behave like i want. I am not able to examine the CEGUI code, and submit patches, at least for now. ;) Happy that you're working on that. A...
- Wed Mar 30, 2005 22:54
- Forum: Modifications / Integrations / Customisations
- Topic: Combobox clippedbyparent
- Replies: 4
- Views: 2976
Re: Combobox clippedbyparent
Confident on that Eddie ;) For my Clip Problem: i resolve the clippedByParent Problem by setting the droplist clippedbyparent propertie to false instead of the complete Combobox one. Code is: mCombobox = (Combobox*)WindowManager::getSingletonPtr()->createWindow("WindowsLook/...
- Wed Mar 30, 2005 20:25
- Forum: Modifications / Integrations / Customisations
- Topic: WindowsLook ComboBox Color Problem
- Replies: 8
- Views: 4814
Re: WindowsLook ComboBox Color Problem
hehe, thx m8, it seems to be a confirmed solution to this little problem
.

- Wed Mar 30, 2005 20:24
- Forum: Modifications / Integrations / Customisations
- Topic: Childs List Difficulties
- Replies: 2
- Views: 2013
Re: Childs List Difficulties
ok, the scrollpane is not a problem, just something to know about. I will do as you said because as i use the ChildsWindow list to reposition them in my frame, i got some really strange results like the title bar in the middle of my frameWindow or other things like this :D I will make my own ordered...
- Wed Mar 30, 2005 20:19
- Forum: Modifications / Integrations / Customisations
- Topic: Problem with innerRect
- Replies: 7
- Views: 3868
Re: Problem with innerRect
Ok Eddie, i will have some tries in doing that and post back later.
Thx for the clue.
Hope, you will not leave completly the project
Thx for the clue.
Hope, you will not leave completly the project

- Wed Mar 30, 2005 17:50
- Forum: Modifications / Integrations / Customisations
- Topic: WindowsLook ComboBox Color Problem
- Replies: 8
- Views: 4814
Re: WindowsLook ComboBox Color Problem
I am just stupid :hammer: I had just to change the color of each item of the combobox that's all That's the code while (Chaque item) { item = new ListboxTextItem(ItemText, ItemID); item->setTextColours(CEGUI::colour(0,0,0)); mCombobox->addItem(item); ...
- Wed Mar 30, 2005 17:01
- Forum: Modifications / Integrations / Customisations
- Topic: WindowsLook ComboBox Color Problem
- Replies: 8
- Views: 4814
Re: WindowsLook ComboBox Color Problem
Thanks Chris. I haven't have even a look in the CEGUI source because my main project is about Ogre. So i just use the compiled version of CEGUI (CVS one), but I think i will have a look soon, because there is too much things that i have to understand. I had a look on the lindquist's post, he said Se...
- Wed Mar 30, 2005 16:11
- Forum: Modifications / Integrations / Customisations
- Topic: Combobox clippedbyparent
- Replies: 4
- Views: 2976
Re: Combobox clippedbyparent
Bah , really bad news.
As you said, i hope this wonderful GUI, will continue with the help of the community.
As you said, i hope this wonderful GUI, will continue with the help of the community.
- Wed Mar 30, 2005 15:37
- Forum: Modifications / Integrations / Customisations
- Topic: Combobox clippedbyparent
- Replies: 4
- Views: 2976
Combobox clippedbyparent
Hi mates, I am sorry but i don't understand how the Combobox is meant to work. When i put it in a frame window, i set it clipped by parent false like the layout example i get. When i double click on the framewindow title, it disappears. But when i put the Combobox in a DefaultGuiSheet window, set cl...
- Wed Mar 30, 2005 15:14
- Forum: Modifications / Integrations / Customisations
- Topic: WindowsLook ComboBox Color Problem
- Replies: 8
- Views: 4814
WindowsLook ComboBox Color Problem
Hello again, Sorry to be so disturbing. I used the WindowsLook because i find it make smaller interfaces. I get a problem when i create a Combobox because the color of the text in the drop list seems to be the same than the background(white), so my droplist works good but i cannot see the ListItemTe...
- Wed Mar 30, 2005 14:31
- Forum: Modifications / Integrations / Customisations
- Topic: Problem with innerRect
- Replies: 7
- Views: 3868
Re: Problem with innerRect
I forget to say i use WindowsLook if it is of any importance.