Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/branches/gui/console: made a little reaction.

File size: 498 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#include <string.h>
8
9/* GTK headers */
10#include <gtk/gtk.h>
11
12class OrxonoxConsoleLog {
13 
14 private:
15  GtkWidget *frame;
16  GtkWidget *scrollframe;
17  GtkWidget *logbox;
18  GtkWidget *log;
19  GtkWidget *label;
20
21  char *logtext;
22 
23 
24
25
26 public:
27 
28  GtkWidget* createLog(void);
29
30  void OrxonoxConsoleLog::appendText(char* append); 
31  void OrxonoxConsoleLog::clear();
32};
33
34#endif
35
Note: See TracBrowser for help on using the repository browser.