Changeset 3452 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Mar 2, 2005, 6:49:46 PM (20 years ago)
- Location:
- orxonox/trunk/src/gui
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/gui/orxonox_gui_exec.h
r3423 r3452 56 56 }; 57 57 58 58 //! A simple hashtable 59 59 struct HashTable 60 60 { 61 char* name; 62 char* value; 63 HashTable* next; 61 char* name; //!< name of the entry 62 char* value; //!< value of the entry 63 HashTable* next; //!< pointer to the next entry 64 64 }; 65 65 -
orxonox/trunk/src/gui/orxonox_gui_flags.h
r3423 r3452 25 25 static void flagsText(Widget* widget, void* flagInfo); 26 26 27 //! Struct that handles flag information. 27 28 struct FlagInfo 28 29 { 29 CheckButton* shortFlags; 30 Label* flagsLabel; 30 CheckButton* shortFlags; //!< Button for the flag. 31 Label* flagsLabel; //!< Label for the flag. 31 32 }; 32 33 Widget* getWidget(void); -
orxonox/trunk/src/gui/orxonox_gui_video.cc
r3423 r3452 39 39 this->fullscreen->setFlagName("windowed", "q", 1); 40 40 this->fullscreen->saveability(); 41 this->videoBox->fill(fullscreen); 41 this->videoBox->fill(this->fullscreen); 42 this->resolution = new Menu("Resolution", "640x480", "800x600", "1024x768", "1280x1024", "1400x1050", "1600x1200", "1920x1200", "lastItem"); 43 this->resolution->saveability(); 44 this->videoBox->fill(this->resolution); 42 45 this->wireframe = new CheckButton("WireFrame-mode"); 43 46 this->wireframe->setFlagName("wireframe", "w", 0); 44 47 this->wireframe->saveability(); 45 this->videoBox->fill( wireframe);48 this->videoBox->fill(this->wireframe); 46 49 47 50 this->advancedWindowCreate(); -
orxonox/trunk/src/gui/orxonox_gui_video.h
r3423 r3452 15 15 Box* videoBox; //!< The Box that holds the video options. 16 16 CheckButton* fullscreen; //!< CheckButton for fullscreen-mode 17 Menu* resolution; //!< Menu for the resolution 17 18 CheckButton* wireframe; //!< CheckButton for wireframe Mode. 18 19
Note: See TracChangeset
for help on using the changeset viewer.