Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/gui/console/orxonox_console_entry.h @ 1884

Last change on this file since 1884 was 1884, checked in by patrick, 21 years ago

/orxonox/branch/gui/ log working now

File size: 700 bytes
Line 
1#ifndef ORXONOX_CONSOLE_ENTRY_H
2#define ORXONOX_CONSOLE_ENTRY_H
3
4/* standard headers */
5#include <stdio.h>
6
7/* GTK headers */
8#include <gtk/gtk.h> 
9
10#include "orxonox_console_log.h"
11
12class OrxonoxConsoleEntry {
13 
14 private:
15  GtkWidget *frame;
16  GtkWidget *entrybox;
17  GtkWidget *label;
18  GtkWidget *button;
19  GtkWidget *entry;
20  OrxonoxConsoleLog* consoleLog;
21
22  static OrxonoxConsoleEntry* test;
23 
24
25
26 public:
27  //OrxonoxConsoleEntry(OrxonoxConsoleLog* log, OrxonoxConsoleEntry* test);
28 
29  GtkWidget* createEntry(void);
30  void setLog(OrxonoxConsoleLog* log, OrxonoxConsoleEntry* entry);
31  static void submit(GtkWidget *widget, GtkWidget* data);
32  void sendtoLog(char* submitText);
33
34};
35 
36
37#endif
38
Note: See TracBrowser for help on using the repository browser.