|
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
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | \file orxonox_gui.h |
|---|
| 3 | \brief Contains all Widgets and the Creation of the Gui |
|---|
| 4 | */ |
|---|
| 5 | |
|---|
| 6 | #ifndef _ORXONOX_GUI_H |
|---|
| 7 | #define _ORXONOX_GUI_H |
|---|
| 8 | |
|---|
| 9 | #if HAVE_CONFIG_H |
|---|
| 10 | #include <config.h> |
|---|
| 11 | #endif |
|---|
| 12 | |
|---|
| 13 | #include "orxonox_gui_gtk.h" |
|---|
| 14 | |
|---|
| 15 | #include <stdlib.h> |
|---|
| 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> |
|---|
| 28 | #include <gtk/gtkimage.h> |
|---|
| 29 | #include <gtk/gtkeventbox.h> |
|---|
| 30 | |
|---|
| 31 | //! Class that creates the OrxonoxGui |
|---|
| 32 | class OrxonoxGui |
|---|
| 33 | { |
|---|
| 34 | public: |
|---|
| 35 | OrxonoxGui (int argc, char *argv[]); |
|---|
| 36 | ~OrxonoxGui (); |
|---|
| 37 | |
|---|
| 38 | }; |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | |
|---|
| 42 | #endif /* _ORXONOX_GUI_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.