Search found 6 matches
- Sun Dec 27, 2009 11:08
- Forum: Modifications / Integrations / Customisations
- Topic: get window height for wrapped text component
- Replies: 11
- Views: 11915
get window height for wrapped text component
Hi, I need to get one of the following for a wrapped text component after calling setText(str); - window height - number of lines - the text after it has been wrapped (visual) using windowslook - the type of window is "WindowsLook/StaticText" I have tried calling win->getTextVisual() but r...
tooltips
I am using CEGUI with Ogre and I want to use the CEGUI tooltip using WindowsLook/Tooltip on my ogre entities. When th emouse is on an entity, I create a tooltip : win = (CEGUI::Tooltip *)CEGUI::WindowManager::getSingleton().createWindow("WindowsLook/Tooltip", "Tooltip"); win->set...
- Mon Jun 29, 2009 08:19
- Forum: Help
- Topic: combobox droplist items don't highlight when mouse over
- Replies: 1
- Views: 1767
Re: combobox droplist items don't highlight when mouse over
OK, I figured it out ... CEGUI::ListboxTextItem *item = new CEGUI::ListboxTextItem(text); item->setTextColours(CEGUI::colour(0,0,0,1)); item->setSelectionColours(CEGUI::colour(0.8,0.9,1,1)); item->setSelectionBrushImage( "tahrezlook", "ListboxSelectionBrush" ); filter->addItem(it...
- Sun Jun 28, 2009 19:35
- Forum: Help
- Topic: combobox droplist items don't highlight when mouse over
- Replies: 1
- Views: 1767
combobox droplist items don't highlight when mouse over
I have a WindowsLook/Combobox set up.
I see the droplist with my items when I click on the pushbutton, but when the mouse moves over them, they do not get highlighted. IS there a way to do this ?
I see the droplist with my items when I click on the pushbutton, but when the mouse moves over them, they do not get highlighted. IS there a way to do this ?
- Tue May 27, 2008 07:33
- Forum: Modifications / Integrations / Customisations
- Topic: framewindow with round corners
- Replies: 3
- Views: 3653
SOLVED
Well, The solution was the priority setting of the layer .. but for some reason setting a value of 1 was not enough .. nor 100 ... When setting the frame layer to 100000 I got the desired result ... <StateImagery name="ActiveNoTitleWithFrame"> <Layer priority="100000"> <Section s...
- Mon May 26, 2008 21:01
- Forum: Modifications / Integrations / Customisations
- Topic: framewindow with round corners
- Replies: 3
- Views: 3653
framewindow with round corners
I have customized WindowsLook/FrameWindow to have round corners. My frame is wide (10 pixels). The client area fits well in the inner part of the frame (after changing the appropriate Areas in the Looknfeel definition). The problem is that the client area is rendered on top of the frame and not bene...