terminal: add dummy terminal implementation
authorDavid Herrmann <dh.herrmann@googlemail.com>
Fri, 30 Dec 2011 17:01:00 +0000 (18:01 +0100)
committerDavid Herrmann <dh.herrmann@googlemail.com>
Fri, 30 Dec 2011 17:01:00 +0000 (18:01 +0100)
commitf60356d429ca9931e940387d1aef8df34bee7c54
tree3bdd4ab8026cb873333b166f6ee5ff7eccb6c83a
parente70a56b92e1155f0193486ad6cb031bd850fa5aa
terminal: add dummy terminal implementation

vte: This adds a dummy VTE subsystem. It will be used to emulate a vt100
terminal based on our console subsystem.

terminal: This ties together several subsystems including the output-, the
console- and the vte-subsystem.

The test_terminal test application can be used to test the terminal. It is
supposed to provide a full vt100 implementation which is displayed on all
available screens.

Most of the functionality here is not implemented yet and only a dummy function.
These will be added in later commits.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Makefile.am
src/terminal.c [new file with mode: 0644]
src/terminal.h [new file with mode: 0644]
src/vte.c [new file with mode: 0644]
src/vte.h [new file with mode: 0644]
tests/test_terminal.c [new file with mode: 0644]