Changeset 3297 in orxonox.OLD for orxonox/branches/updater/src/gui
- Timestamp:
- Dec 26, 2004, 11:24:41 PM (20 years ago)
- Location:
- orxonox/branches/updater/src/gui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/updater/src/gui/orxonox_gui.cc
r3296 r3297 118 118 mainloopGTK(); 119 119 #else /* HAVE_GTK2 */ 120 PRINT F(0)(" Listing all the Orxonox Options: \n");121 PRINT F(0)(" #############################\n");120 PRINT(0)(" Listing all the Orxonox Options: \n"); 121 PRINT(0)(" #############################\n"); 122 122 orxonoxGUI->walkThrough(orxonoxGUI->listOptions, 0); 123 123 124 PRINT F(0)("\nDo you want me to save the the above values now? [Yn] ");124 PRINT(0)("\nDo you want me to save the the above values now? [Yn] "); 125 125 char c = getchar(); 126 126 if ((c == 'y' || c == 'Y' || c== 10) && exec->shouldsave()) -
orxonox/branches/updater/src/gui/orxonox_gui_exec.cc
r3296 r3297 298 298 \param data additional data 299 299 */ 300 gint OrxonoxGuiExec::startOrxonox (GtkWidget *widget, Widget* data)300 int OrxonoxGuiExec::startOrxonox (GtkWidget* widget, Widget* data) 301 301 { 302 302 cout << "Starting Orxonox" <<endl; 303 303 } 304 #else /* HAVE_GTK2 */ 305 /** 306 \brief Starts ORXONOX. (not really implemented yet, but the function is there.\n 307 This is a Signal and can be executed through Widget::signal_connect 308 \param widget the widget that executed the start command 309 \param data additional data 310 */ 311 int OrxonoxGuiExec::startOrxonox (void* widget, Widget* data) 312 { 313 cout << "Starting Orxonox" <<endl; 314 } 315 304 316 #endif /* HAVE_GTK2 */ -
orxonox/branches/updater/src/gui/orxonox_gui_exec.h
r3296 r3297 48 48 49 49 #ifdef HAVE_GTK2 50 static gint startOrxonox (GtkWidget *widget, Widget* data); 50 static int startOrxonox (GtkWidget *widget, Widget* data); 51 #else /* HAVE_GTK2 */ 52 static int startOrxonox (void* widget, Widget* data); 51 53 #endif /* HAVE_GTK2 */ 52 54 };
Note: See TracChangeset
for help on using the changeset viewer.