Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/gui/orxonox_gui.h @ 3146

Last change on this file since 3146 was 3144, checked in by bensch, 21 years ago

orxonox/trunk/gui: modularity improvement: taken the gtk-stuff out of the main GUI

File size: 770 bytes
RevLine 
[2588]1/*!
2 \file orxonox_gui.h
3 \brief Contains all Widgets and the Creation of the Gui
4*/
5
[1809]6#ifndef _ORXONOX_GUI_H
7#define _ORXONOX_GUI_H
8
[2618]9#if HAVE_CONFIG_H
10#include <config.h> 
11#endif
12
[3144]13#include "orxonox_gui_gtk.h"
14
[1809]15#include <stdlib.h>
[2018]16#include <gtk/gtkmain.h>
17#include <gtk/gtkwindow.h>
18#include <gtk/gtkframe.h>
19#include <gtk/gtkhbox.h>
20#include <gtk/gtkvbox.h>
21#include <gtk/gtkbutton.h>
22#include <gtk/gtkcheckbutton.h>
23#include <gtk/gtkhscale.h>
24#include <gtk/gtkoptionmenu.h>
25#include <gtk/gtkmenu.h>
26#include <gtk/gtkmenuitem.h>
27#include <gtk/gtklabel.h>
[2024]28#include <gtk/gtkimage.h>
[2580]29#include <gtk/gtkeventbox.h>
[1809]30
[2588]31//! Class that creates the OrxonoxGui
[2018]32class OrxonoxGui
[1817]33{
[2018]34 public:
35  OrxonoxGui (int argc, char *argv[]);
36  ~OrxonoxGui ();
37
38};
39
[2605]40
[2018]41
[1809]42#endif /* _ORXONOX_GUI_H */
Note: See TracBrowser for help on using the repository browser.