how about adding rows to multi column list through xml
?
Search found 20 matches
- Tue Nov 29, 2005 11:29
- Forum: Modifications / Integrations / Customisations
- Topic: Controlling Columns in MultiColumnListBox through xml
- Replies: 3
- Views: 2590
- Mon Nov 28, 2005 11:03
- Forum: Modifications / Integrations / Customisations
- Topic: Controlling Columns in MultiColumnListBox through xml
- Replies: 3
- Views: 2590
Controlling Columns in MultiColumnListBox through xml
Hello
is there any way to add columns in a MultiColumnListBox through the xml file?
Or Is there any property in the MultiColumnListBox class that can control the number of columns in it.
is there any way to add columns in a MultiColumnListBox through the xml file?
Or Is there any property in the MultiColumnListBox class that can control the number of columns in it.
- Thu Sep 22, 2005 15:38
- Forum: Modifications / Integrations / Customisations
- Topic: CEGUI rendering on ATI card
- Replies: 1
- Views: 1813
CEGUI rendering on ATI card
Hi, I am having a wierd problem regarding rendering of CEGUI on a system having ATI Mobility Radeon 9600 card. My program runs fine on PCs with inbuilt card. but wen i port my program on the above mentioned system, CEGUI is rendered fine until i don't create my objects (i.e. until i dont create VBO'...
- Tue Sep 20, 2005 11:01
- Forum: Modifications / Integrations / Customisations
- Topic: Displaying tables
- Replies: 0
- Views: 2593
Displaying tables
HI im trying to display a table using CEGUI. the background of my table is a StaticImage & each entry in the table is a StaticText. The table has about 7 cols & 20 rows & each entry in the table contains about 7-10 characters. Now the problem is that this appproach very badly affects the...
- Thu Sep 08, 2005 06:46
- Forum: Modifications / Integrations / Customisations
- Topic: text over image
- Replies: 1
- Views: 1771
text over image
Well i want to achieve the follwing effect now for this my idea is to use static image as the background. but the problem is that how do i display the formatted text over it. the text keeps changing so i cannt just put the text in the texture file either. can anyone suggest some approach that will l...
- Wed Sep 07, 2005 15:45
- Forum: Modifications / Integrations / Customisations
- Topic: parent & child window size relationship
- Replies: 1
- Views: 1774
parent & child window size relationship
Hi i want to know that is it possible that the size of a child window is not dependent on the size of its parent window. wat i want achieve is that wen a parent window(eg a frame window) is resized thru mouse, its child windows(eg a button) may not get resized but rather they maintain their size &am...
- Tue Aug 02, 2005 13:10
- Forum: Modifications / Integrations / Customisations
- Topic: Clearing windows
- Replies: 6
- Views: 4062
Re: Clearing windows
to hide a window, use this:
pWindow->hide();
where pWindow is a pointer to any window
to destroy a window u can use
CEGUI::WindowManager::getSingleton().destroyWindow( pWindow /*or just a string containing window name*/ );
pWindow->hide();
where pWindow is a pointer to any window
to destroy a window u can use
CEGUI::WindowManager::getSingleton().destroyWindow( pWindow /*or just a string containing window name*/ );
- Tue Aug 02, 2005 08:43
- Forum: Modifications / Integrations / Customisations
- Topic: bounding rect of text
- Replies: 1
- Views: 1673
bounding rect of text
Hi Is there a way to get the bounding rectangle of some text.. i mean i want to create a generic message box..i also want that wen the constructor of the message box receives some text it should automatically resize itself according to the text size. (ofcourse the font size will also play a role in ...
- Mon Aug 01, 2005 15:11
- Forum: Modifications / Integrations / Customisations
- Topic: non static member function as an event handler
- Replies: 5
- Views: 4294
Re: non static member function as an event handler
thats gr8.......thanx
- Mon Aug 01, 2005 06:40
- Forum: Modifications / Integrations / Customisations
- Topic: non static member function as an event handler
- Replies: 5
- Views: 4294
non static member function as an event handler
Hi
is it possible to use a non static member function of a class as an event handler for a control.....
is it possible to use a non static member function of a class as an event handler for a control.....
- Mon Aug 01, 2005 06:11
- Forum: Modifications / Integrations / Customisations
- Topic: convert std::wstring to CEGUI::String?
- Replies: 4
- Views: 4270
Re: convert std::wstring to CEGUI::String?
well i used the follwing func to convert from wstring to std::string..& an std::string is directly convertable to CEGUI::string as one of the constructors of CEGUI::string takes std::string as an argument. string W2S( wstring wstr ) { std::string res; int len = wstr.length(); char* c = new char[...
- Thu Jul 21, 2005 10:35
- Forum: Modifications / Integrations / Customisations
- Topic: curved window
- Replies: 14
- Views: 8049
Re: curved window
wen is that falagard skin system going to be released?. can u kindly also tell howz it going to be kool...i mean how will it improve the currently existing system?
- Wed Jul 20, 2005 07:21
- Forum: Modifications / Integrations / Customisations
- Topic: Tooltip not showing
- Replies: 2
- Views: 2379
Re: Tooltip not showing
Ok i got the solution.i missed this
Tooltip* tt = (Tooltip*)WindowManager::getSingleton().createWindow((utf8*)"TaharezLook/Tooltip", (utf8*)windowName );
btn->setTooltip(tt);
Tooltip* tt = (Tooltip*)WindowManager::getSingleton().createWindow((utf8*)"TaharezLook/Tooltip", (utf8*)windowName );
btn->setTooltip(tt);
- Wed Jul 20, 2005 06:49
- Forum: Modifications / Integrations / Customisations
- Topic: Tooltip not showing
- Replies: 2
- Views: 2379
Tooltip not showing
well i want to show a tooltip on a button. I created the button & then used the following line. btn->setTooltipText("asasas"); now using windows timer im executing the following line every 1 second CEGUI::System::getSingleton().injectTimePulse(1); but still no tooltip is showing wen i ...
- Tue Jul 19, 2005 07:13
- Forum: Modifications / Integrations / Customisations
- Topic: curved window
- Replies: 14
- Views: 8049
Re: curved window
I mean the window can be of any shape...like the window may be of circular shape & there may even be holes inside the window.