Changeset 3147 in orxonox.OLD for orxonox/trunk/gui/orxonox_gui_gtk.h
- Timestamp:
- Dec 11, 2004, 3:08:34 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/gui/orxonox_gui_gtk.h
r3146 r3147 2 2 #ifndef _ORXONOX_GUI_GTK_H 3 3 #define _ORXONOX_GUI_GTK_H 4 4 5 #include <gtk/gtkmain.h> 5 6 #include <gtk/gtkwindow.h> … … 17 18 #include <gtk/gtkeventbox.h> 18 19 19 20 20 //! This is the topmost object that can be displayed all others are derived from it. 21 21 class Widget … … 28 28 GtkWidget* widget; //!< widget is the gtk_widget that the specific Object Contains. 29 29 void init(void); 30 int is _option; //!< with this Paramenter one can set the option-type: -2:Container, -1: Box, 0: not an Option, 1: Bool-option, 2: int-option, 3:float option, 4:char option, 5: char* option30 int isOption; //!< with this Paramenter one can set the option-type: -2:Container, -1: Box, 0: not an Option, 1: Bool-option, 2: int-option, 3:float option, 4:char option, 5: char* option 31 31 /** 32 \briefdefines is _option states32 \briefdefines isOption states 33 33 */ 34 34 enum option { containerType = -2, boxType = -1, nothingType = 0, boolType = 1, intType = 2}; … … 96 96 void setTitle (char* title); 97 97 void showall (); 98 void open(); 99 void close(); 98 100 static gint orxonox_gui_quit (GtkWidget *widget, GdkEvent *event, gpointer data); 99 101 };
Note: See TracChangeset
for help on using the changeset viewer.