Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/gui/console/orxonox_console_log.cc @ 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: 2.0 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   This program is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program; if not, write to the Free Software Foundation,
18   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
19
20
21   ### File Specific:
22   main-programmer: Benjamin Grauer
23   co-programmer:
24*/
25
26
27#include "orxonox_console_log.h"
28
29GtkWidget* OrxonoxConsoleLog::createLog()
30{
31  frame = gtk_frame_new ("Console Log:");
32  {
33    scrollframe = gtk_scrolled_window_new (NULL, NULL);
34    logtext = new char;
35   
36    gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrollframe),
37                                    GTK_POLICY_AUTOMATIC,
38                                    GTK_POLICY_AUTOMATIC);
39   
40    gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrollframe),
41                                         GTK_SHADOW_IN);
42    gtk_container_set_border_width (GTK_CONTAINER(scrollframe), 5);
43   
44    logView = gtk_text_view_new();
45    gtk_text_view_set_editable(GTK_TEXT_VIEW(logView), FALSE);
46    log = gtk_text_view_get_buffer (GTK_TEXT_VIEW (logView));
47    gtk_container_add(GTK_CONTAINER(scrollframe), logView);
48    gtk_container_add(GTK_CONTAINER(frame),scrollframe);
49    a=3;   
50    gtk_text_buffer_set_text (log, "Orxonox Console:\n", -1);
51
52  }
53  return (frame);
54}
55
56void OrxonoxConsoleLog::appendText(char* append)
57{
58  char* buffer = new char;
59  printf("%i\n",a);
60  sprintf (buffer, "%s\n", append);
61  printf ("appending %s\n", append);
62  gtk_text_buffer_insert_at_cursor (log, buffer, -1);
63  return;
64}
65
66void OrxonoxConsoleLog::clear()
67{
68  sprintf(logtext, "");
69  return;
70}
Note: See TracBrowser for help on using the repository browser.