Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/gui/console/orxonox_console_log.h @ 1877

Last change on this file since 1877 was 1877, checked in by bensch, 20 years ago

orxonox/branches/gui: added a console, that should comunicate to orxonox. Console is not ready for work till no, but its for the looks

File size: 349 bytes
Line 
1#ifndef ORXONOX_CONSOLE_LOG_H
2#define ORXONOX_CONSOLE_LOG_H
3
4/* standard headers */
5#include <stdio.h>
6#include <stdlib.h>
7
8/* GTK headers */
9#include <gtk/gtk.h> 
10
11class OrxonoxConsoleLog {
12 
13 private:
14  GtkWidget *frame;
15  GtkWidget *logbox;
16  GtkWidget *log;
17  GtkWidget *label;
18 
19 
20
21
22 public:
23  GtkWidget* createLog(void);
24
25   
26
27};
28
29#endif
30
Note: See TracBrowser for help on using the repository browser.