aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics/graphics.h
blob: e20d1edd15f69bafe14533209fe7406596aa5766 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef MELVIX_VGA_H
#define MELVIX_VGA_H

#include <stddef.h>
#include <stdint.h>
#include "vesa.h"

/**
 * Linked table of colors and hardware color codes
 */
enum vga_color;

/**
 * Initialize the terminal color and cursor position
 */
void terminal_initialize(void);

/**
 * Set the terminal color to a specified hardware color code
 * @see enum vga_color
 * @param color
 */
void terminal_set_color(uint8_t color);

/**
 * Clear the entire terminal screen
 */
void terminal_clear();

/**
 * Write a string to the terminal
 * @param data The string that should be written
 */
void terminal_write_string(const char *data);

/**
 * Put a new char at the x+1 cursor position and
 * handle according events (e.g. overflow, linebreak)
 * @param c The character (can also be \n or \r)
 */
void terminal_put_char(char c);

/**
 * Put a new char at the x+1 cursor position,
 * handle according events (e.g. overflow, linebreak) and
 * execute the current command if c is linebreak (\n)
 * @param c The character (can also be \n or \r)
 */
void terminal_put_keyboard_char(char c);

/**
 * Write a line to the terminal
 * @param data The line (string) that should be written
 */
void terminal_write_line(const char *data);

#endif