net: minor improvements in tcp client sockets
[quarnos.git] / resources / keybscr.h
blob38e28ab7fd7cc2e9e8618a7333a550b678070950
1 /* Quarn OS
3 * Keyboard and Screen
5 * Copyright (C) 2008-2009 Pawel Dziepak
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #ifndef _KEYBSCR_H_
24 #define _KEYBSCR_H_
26 #include "resources/stream.h"
27 #include "resources/device.h"
29 #include "libs/buffer.h"
30 #include "libs/fifo.h"
31 #include "libs/colors.h"
33 namespace resources {
34 class x86_keybscr;
36 class keybscr : public dev_stream, public color_output {
37 private:
38 int x, y;
39 fifo<char> buf;
40 volatile bool enter;
42 delegate<void> on_data_received;
44 protected:
45 virtual void received(const char a);
47 virtual void screen_print(char, int, int, int) = 0;
48 virtual void scr_scroll() = 0;
50 public:
51 typedef x86_keybscr arch_keybscr;
53 keybscr();
55 virtual void read(buffer &);
56 virtual void write(const buffer&);
58 virtual bool init_device(p<did> iadr) = 0;
60 virtual void set_ondatareceived(delegate<void>);
62 virtual int get_width() = 0;
63 virtual int get_height() = 0;
65 static void register_type();
69 #endif