]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/mag/plugins/client_fb/client_fb.h
c7f16fe6fb475b996de0fc9712544fdea5bea753
[l4.git] / l4 / pkg / mag / plugins / client_fb / client_fb.h
1 /*
2  * (c) 2010 Alexander Warg <warg@os.inf.tu-dresden.de>
3  *     economic rights: Technische Universität Dresden (Germany)
4  *
5  * This file is part of TUD:OS and distributed under the terms of the
6  * GNU General Public License 2.
7  * Please see the COPYING-GPL-2 file for details.
8  */
9 #include <l4/mag-gfx/canvas>
10
11 #include <l4/mag/server/view>
12
13 #include <l4/re/util/video/goos_svr>
14 #include <l4/re/util/event_svr>
15 #include <l4/cxx/ipc_server>
16 #include <l4/re/util/cap_alloc>
17 #include <l4/re/rm>
18 #include <l4/re/util/icu_svr>
19 #include <l4/mag/server/plugin>
20
21 namespace Mag_server {
22
23 class Client_fb
24 : public View, public Object,
25   private L4Re::Util::Video::Goos_svr,
26   public L4Re::Util::Icu_cap_array_svr<Client_fb>
27 {
28 private:
29   typedef L4Re::Util::Icu_cap_array_svr<Client_fb> Icu_svr;
30   Core_api const *_core;
31   Point _offs;
32   Texture *_fb;
33   Area _bar_size;
34
35   L4Re::Util::Auto_cap<L4Re::Dataspace>::Cap _ev_ds;
36   L4Re::Rm::Auto_region<void*> _ev_ds_m;
37   L4Re::Event_buffer _events;
38   Irq _ev_irq;
39
40 public:
41   Client_fb(Core_api const *core, Rect const &pos, Point const &offs,
42             Texture *fb, L4::Cap<L4Re::Dataspace> const &fb_ds);
43
44   L4::Cap<void> rcv_cap() const { return _core->rcv_cap(); }
45
46   void set_offs(Point const &offs)
47   { _offs = offs; }
48
49   void draw(Canvas *, View_stack const *, Mode) const;
50   void handle_event(L4Re::Event_buffer::Event const &e,
51                     Point const &mouse);
52
53   int dispatch(l4_umword_t obj, L4::Ipc_iostream &s);
54   int refresh(int x, int y, int w, int h);
55
56   void destroy();
57 };
58
59 }