Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3251 in orxonox.OLD


Ignore:
Timestamp:
Dec 23, 2004, 12:49:38 AM (19 years ago)
Author:
bensch
Message:

orxonox/branches/updater: now displats updater

Location:
orxonox/branches/updater/src/gui
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/updater/src/gui/orxonox_gui.cc

    r3187 r3251  
    3131#include "orxonox_gui_banner.h"
    3232#include "orxonox_gui_keys.h"
     33#include "orxonox_gui_update.h"
    3334
    3435  Window* orxonoxGUI;
     
    3940  OrxonoxGuiBanner* banner;
    4041  OrxonoxGuiKeys* keys;
     42  OrxonoxGuiUpdate* update;
    4143
    4244int main( int argc, char *argv[] )
     
    8688  flags = new OrxonoxGuiFlags (orxonoxGUI);
    8789
    88 
    8990  optionBox->fill (flags->getWidget ());
    9091  windowBox->fill (optionBox);
     92
     93  update = new OrxonoxGuiUpdate ();
     94  windowBox->fill(update->getWidget());
    9195 
    9296  orxonoxGUI->fill (windowBox);
     
    9599  exec->setFilename ("~/.orxonox.conf");
    96100  exec->readFromFile (orxonoxGUI);
     101
    97102  //  orxonoxGUI->walkThrough(orxonoxGUI->listOptions);
    98103
  • orxonox/branches/updater/src/gui/orxonox_gui_update.cc

    r3250 r3251  
    4040  updateBox = new Box ('v');
    4141 
     42  updateButton = new Button ("update");
     43  updateBox->fill(updateButton);
    4244
    43   updateFrame->fill (updateBox);
     45  updateFrame->fill(updateBox);
    4446}
    4547
  • orxonox/branches/updater/src/gui/orxonox_gui_update.h

    r3250 r3251  
    1717  Frame* updateFrame;          //!< The Frame that holds the updateOptions.
    1818  Box* updateBox;              //!< The Box that holds the updateOptions.
    19   Button* update;              //!< The update Button
     19  Button* updateButton;        //!< The update Button
    2020
    2121 public:
Note: See TracChangeset for help on using the changeset viewer.