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 | |
---|
29 | GtkWidget* 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 | gtk_text_buffer_set_text (log, "Orxonox Console started.\n", -1); |
---|
50 | |
---|
51 | } |
---|
52 | return (frame); |
---|
53 | } |
---|
54 | |
---|
55 | void OrxonoxConsoleLog::appendText(char* append) |
---|
56 | { |
---|
57 | GtkTextIter iter; |
---|
58 | if (verbose>=1) |
---|
59 | printf ("appending: %s\n", append); |
---|
60 | strcat (append,"\n"); |
---|
61 | gtk_text_buffer_get_start_iter (log, &iter); |
---|
62 | gtk_text_buffer_place_cursor (log, &iter); |
---|
63 | gtk_text_buffer_insert_at_cursor (log, append, -1); |
---|
64 | return; |
---|
65 | } |
---|
66 | |
---|
67 | void OrxonoxConsoleLog::clear() |
---|
68 | { |
---|
69 | sprintf(logtext, ""); |
---|
70 | return; |
---|
71 | } |
---|