Changeset 3251 in orxonox.OLD for orxonox/branches/updater
- Timestamp:
- Dec 23, 2004, 12:49:38 AM (20 years ago)
- Location:
- orxonox/branches/updater/src/gui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/updater/src/gui/orxonox_gui.cc
r3187 r3251 31 31 #include "orxonox_gui_banner.h" 32 32 #include "orxonox_gui_keys.h" 33 #include "orxonox_gui_update.h" 33 34 34 35 Window* orxonoxGUI; … … 39 40 OrxonoxGuiBanner* banner; 40 41 OrxonoxGuiKeys* keys; 42 OrxonoxGuiUpdate* update; 41 43 42 44 int main( int argc, char *argv[] ) … … 86 88 flags = new OrxonoxGuiFlags (orxonoxGUI); 87 89 88 89 90 optionBox->fill (flags->getWidget ()); 90 91 windowBox->fill (optionBox); 92 93 update = new OrxonoxGuiUpdate (); 94 windowBox->fill(update->getWidget()); 91 95 92 96 orxonoxGUI->fill (windowBox); … … 95 99 exec->setFilename ("~/.orxonox.conf"); 96 100 exec->readFromFile (orxonoxGUI); 101 97 102 // orxonoxGUI->walkThrough(orxonoxGUI->listOptions); 98 103 -
orxonox/branches/updater/src/gui/orxonox_gui_update.cc
r3250 r3251 40 40 updateBox = new Box ('v'); 41 41 42 updateButton = new Button ("update"); 43 updateBox->fill(updateButton); 42 44 43 updateFrame->fill 45 updateFrame->fill(updateBox); 44 46 } 45 47 -
orxonox/branches/updater/src/gui/orxonox_gui_update.h
r3250 r3251 17 17 Frame* updateFrame; //!< The Frame that holds the updateOptions. 18 18 Box* updateBox; //!< The Box that holds the updateOptions. 19 Button* update ;//!< The update Button19 Button* updateButton; //!< The update Button 20 20 21 21 public:
Note: See TracChangeset
for help on using the changeset viewer.