#include "camera_info.h"
#include "conf.h"
#include "console.h"
#include "clock.h"
#include "keyboard.h"
#include "gui.h"
#include "gui_draw.h"
gehe zum Quellcode dieser Datei
#define MAX_CONSOLE_DISP_LINES 12 |
#define MAX_CONSOLE_HISTORY 30 |
#define MAX_CONSOLE_LINE_LENGTH 44 |
void console_add_line |
( |
const char * |
str) | |
|
void console_draw |
( |
int |
force_redraw) | |
|
static void console_ensure_inited |
( |
) | |
|
|
static |
static void console_init |
( |
int |
num_lines, |
|
|
int |
line_length, |
|
|
int |
x_pos, |
|
|
int |
y_pos |
|
) |
| |
|
static |
static int console_is_inited |
( |
) | |
|
|
static |
void console_set_autoredraw |
( |
int |
val) | |
|
void console_set_layout |
( |
int |
x1, |
|
|
int |
y1, |
|
|
int |
x2, |
|
|
int |
y2 |
|
) |
| |
Definiert in Zeile 144 der Datei console.c.
149 if (x1 > x2) { i = x1; x1 = x2; x2 = i; }
150 if (y1 > y2) { i = y1; y1 = y2; y2 = i; }
static void console_start_line |
( |
) | |
|
|
static |
static void gui_console_draw |
( |
) | |
|
|
static |
static int gui_console_kbd_process |
( |
) | |
|
|
static |
int console_autoredraw = 1 |
|
static |
int console_displayed = 0 |
long console_last_modified |
|
static |
int console_line_length = 0 |
|
static |