Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/updater/src/gui/orxonox_gui.cc @ 3251

Last change on this file since 3251 was 3251, checked in by bensch, 19 years ago

orxonox/branches/updater: now displats updater

File size: 3.1 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   This program is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program; if not, write to the Free Software Foundation,
18   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
19
20
21   ### File Specific:
22   main-programmer: Benjamin Grauer
23
24*/
25
26#include "orxonox_gui.h"
27#include "orxonox_gui_video.h"
28#include "orxonox_gui_audio.h"
29#include "orxonox_gui_exec.h"
30#include "orxonox_gui_flags.h"
31#include "orxonox_gui_banner.h"
32#include "orxonox_gui_keys.h"
33#include "orxonox_gui_update.h"
34
35  Window* orxonoxGUI;
36  OrxonoxGuiVideo* video;
37  OrxonoxGuiAudio* audio;
38  OrxonoxGuiExec* exec;
39  OrxonoxGuiFlags* flags;
40  OrxonoxGuiBanner* banner;
41  OrxonoxGuiKeys* keys;
42  OrxonoxGuiUpdate* update;
43
44int main( int argc, char *argv[] )
45{
46  OrxonoxGui* orxonoxgui = new OrxonoxGui(argc, argv);
47  return 0;
48}
49
50/* ORXONOXGUI */
51
52/**
53   \brief Initializes the Gui
54*/
55OrxonoxGui::OrxonoxGui (int argc, char *argv[])
56{
57#ifdef HAVE_GTK2
58  initGTK(argc, argv);
59#endif /* HAVE_GTK2 */
60  orxonoxGUI = new Window( "Grafical OrxOnoX loader, "PACKAGE_VERSION);
61#ifdef HAVE_GTK2
62  orxonoxGUI->connectSignal ("destroy", orxonoxGUI->orxonox_gui_quit);
63  orxonoxGUI->connectSignal ("delete_event", orxonoxGUI->orxonox_gui_quit);
64#endif /* HAVE_GTK2 */
65 
66  Box* windowBox = new Box ('h');
67
68  banner = new OrxonoxGuiBanner();
69  windowBox->fill (banner->getWidget());
70 
71  Box* optionBox = new Box ('v');
72 
73  Box* avBox = new Box ('h');
74
75  video = new OrxonoxGuiVideo ();
76  avBox->fill (video->getWidget ());
77  audio = new OrxonoxGuiAudio ();
78  avBox->fill (audio->getWidget ());
79     
80  optionBox->fill (avBox);
81
82  keys = new OrxonoxGuiKeys ();
83  optionBox->fill (keys->getWidget ());
84
85  exec = new OrxonoxGuiExec (orxonoxGUI);
86  optionBox->fill (exec->getWidget ());
87
88  flags = new OrxonoxGuiFlags (orxonoxGUI);
89
90  optionBox->fill (flags->getWidget ());
91  windowBox->fill (optionBox);
92
93  update = new OrxonoxGuiUpdate ();
94  windowBox->fill(update->getWidget());
95 
96  orxonoxGUI->fill (windowBox);
97  flags->setTextFromFlags (orxonoxGUI);
98
99  exec->setFilename ("~/.orxonox.conf");
100  exec->readFromFile (orxonoxGUI);
101
102  //  orxonoxGUI->walkThrough(orxonoxGUI->listOptions);
103
104  orxonoxGUI->showall ();
105
106 
107#ifdef HAVE_GTK2
108  mainloopGTK();
109#else /* HAVE_GTK2 */
110  cout << " Listing all the Orxonox Options: \n";
111  cout << "  #############################\n";
112  orxonoxGUI->walkThrough(orxonoxGUI->listOptions);
113
114  cout << "\nDo you want me to save the the above values now? [Yn] ";
115  char c = getchar();
116  if ((c == 'y' || c == 'Y' || c== 10) && exec->shouldsave())
117    exec->writeToFile (Window::mainWindow);
118 
119#endif /* HAVE_GTK2 */
120
121}
Note: See TracBrowser for help on using the repository browser.