Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 1885 was 1882, checked in by bensch, 21 years ago

orxonox/branches/gui/console: ready for appending to log.

File size: 533 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 *logView;
19  GtkTextBuffer *log;
20  GtkWidget *label;
21  int a;
22
23  char *logtext;
24 
25 
26
27
28 public:
29 
30  GtkWidget* createLog(void);
31
32  void OrxonoxConsoleLog::appendText(char* append); 
33  void OrxonoxConsoleLog::clear();
34};
35
36#endif
37
Note: See TracBrowser for help on using the repository browser.