Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1977 in orxonox.OLD for orxonox/branches/gui/guicc


Ignore:
Timestamp:
Jun 18, 2004, 9:42:58 AM (21 years ago)
Author:
bensch
Message:

orxonox/branches/gui: updated from trunk with 'svn merge -r 1860 [trunkdir] .'

Location:
orxonox/branches/gui/guicc
Files:
2 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/gui/guicc/orxonox_gui.cc

    r1976 r1977  
    55int main( int argc, char *argv[] )
    66{
     7  OrxonoxGui* orxonoxgui = new OrxonoxGui(argc, argv);
     8  return 0;
     9}
     10
     11/* ORXONOXGUI */
     12
     13OrxonoxGui::OrxonoxGui (int argc, char *argv[])
     14{
     15  /**
     16   * Initializes the Gui
     17   */
    718  gtk_init (&argc, &argv);
     19
    820  Window* orxonoxGUI = new Window("Graphical Orxonox Launcher");
    921  orxonoxGUI->connectSignal ("destroy", orxonoxGUI->orxonox_gui_quit);
     
    3042  orxonoxGUI->showall ();
    3143 
     44 
    3245  gtk_main();
    33   return 0;
    34 }
    35 
     46}
    3647
    3748/* WIDGET */
  • orxonox/branches/gui/guicc/orxonox_gui.h

    r1976 r1977  
    1616#include <gtk/gtkmenuitem.h>
    1717
    18 
     18class OrxonoxGui
     19{
     20 public:
     21  OrxonoxGui (int argc, char *argv[]);
     22  ~OrxonoxGui ();
     23};
    1924
    2025class Widget
Note: See TracChangeset for help on using the changeset viewer.