Search found 5 matches
- Mon Feb 12, 2007 20:31
- Forum: Help
- Topic: Casting CEGUI variables
- Replies: 1
- Views: 2114
Casting CEGUI variables
I'm using editboxes to get user information. I get the user information from the editbox and it is stored in a variable that is of the type CEGUI::String. I want to write information to a standard text file. It doesn't seem to let me type-cast CEGUI::String to a regular String. Is this possible?
- Fri Feb 09, 2007 16:59
- Forum: Help
- Topic: Dynamically update a mini map
- Replies: 0
- Views: 2319
Dynamically update a mini map
I am trying to create a map in the top right corner of the screen. I have one large image of the map. I want to zoom into specific areas of this image as the camera moves along the terrain. To do this, I replaced the old larger image with the desired piece of the new image. I used the following code...
- Wed Jan 24, 2007 21:18
- Forum: Offtopic Discussion
- Topic: Widget Galore - Ogre Question
- Replies: 2
- Views: 3391
Widget Galore - Ogre Question
CEGUI::Listbox* StatusInput = (CEGUI::Listbox*)CEGUI::WindowManager::getSingleton().createWindow("TaharezLook/Listbox", (CEGUI::utf8*)"Status Input"); mEditorGuiSheet->addChildWindow(StatusInput); StatusInput->setPosition(CEGUI::Point&...
- Sun Jan 21, 2007 00:16
- Forum: Help
- Topic: Editbox- saving user input
- Replies: 1
- Views: 1856
- Sat Jan 20, 2007 20:27
- Forum: Help
- Topic: Editbox- saving user input
- Replies: 1
- Views: 1856
Editbox- saving user input
I'm fairly new to CEGUI, but am enjoying it thus far. I'm making a graphical form to save user information. I have an edit box for things like name, password, email addresss, etc. Once the user enters their information and clicks an okay button, I want the information in the edit boxes to be written...