Changeset 1962 in orxonox.OLD for orxonox/branches/gui/guicc/orxonox_gui.h
- Timestamp:
- Jun 17, 2004, 12:52:36 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/gui/guicc/orxonox_gui.h
r1895 r1962 10 10 #include <gtk/gtkhbox.h> 11 11 #include <gtk/gtkvbox.h> 12 #include <gtk/gtkbutton.h> 13 #include <gtk/gtkcheckbutton.h> 14 #include <gtk/gtkhscale.h> 15 12 16 13 17 14 18 class Widget 15 19 { 16 private: 17 18 protected: 20 public: 19 21 Widget* next; 20 21 public:22 22 GtkWidget* widget; 23 23 … … 36 36 int policy; 37 37 char* label; 38 39 38 40 39 public: … … 47 46 class Window : public Container 48 47 { 49 private:50 51 52 53 48 public: 54 49 Window (char* windowName); … … 59 54 void showall (); 60 55 static gint orxonox_gui_quit ( GtkWidget *widget, GdkEvent *event, gpointer data); 61 62 56 }; 63 57 64 58 class Frame :public Container 65 59 { 66 private:67 68 60 public: 69 61 Frame (char* frameName); … … 72 64 73 65 void setTitle (char* title); 74 75 66 }; 76 67 … … 86 77 }; 87 78 79 class Option : public Widget 80 { 81 }; 82 83 class Button : public Option 84 { 85 public: 86 Button (char* buttonname); 87 ~Button (void); 88 }; 89 90 class CheckButton : public Option 91 { 92 public: 93 CheckButton (char* buttonname); 94 ~CheckButton (void); 95 }; 96 97 class Slider : public Option 98 { 99 public: 100 Slider (char * slidername,int start, int end); 101 ~Slider(); 102 }; 88 103 //gint orxonox_gui_quit ( GtkWidget *widget, GdkEvent *event, gpointer data); 89 104
Note: See TracChangeset
for help on using the changeset viewer.