Gnash  0.8.11dev
fltk_glue_cairo.h
Go to the documentation of this file.
1 //
2 // Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010,
3 // 2011 Free Software Foundation, Inc
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 
19 #ifndef FLTK_GLUE_CAIRO_H
20 #define FLTK_GLUE_CAIRO_H
21 
22 #ifdef HAVE_CONFIG_H
23 #include "gnashconfig.h"
24 #endif
25 
26 #include <fltk/Item.h>
27 #include <fltk/ItemGroup.h>
28 #include <fltk/PopupMenu.h>
29 #include <fltk/Widget.h>
30 #include <fltk/ask.h>
31 #include <fltk/events.h>
32 #include <fltk/run.h>
33 #include <fltk/visual.h>
34 #include <fltk/Window.h>
35 #include <fltk/draw.h>
36 #include <fltk/x.h>
37 #include <fltk/damage.h>
38 #include <fltk/layout.h>
39 #include <fltk/Cursor.h>
40 
41 
42 
43 
44 #include "fltksup.h"
45 #include <cairo.h>
46 
47 using namespace fltk;
48 
49 namespace gnash {
50 
52 {
53  public:
54  FltkCairoGlue();
55  ~FltkCairoGlue();
56  // resize(int width, int height);
57  void draw();
58  Renderer* createRenderHandler();
59  void initBuffer(int width, int height);
60  void resize(int width, int height);
61  void invalidateRegion(const SWFRect& bounds);
62  private:
63  int _width;
64  int _height;
65  int _stride;
66  unsigned char* _offscreenbuf;
67  Renderer* _renderer;
68  cairo_surface_t *_cairo_surface;
69  cairo_t *_cairo_handle;
70 };
71 
72 } // namespace gnash
73 
74 #endif //FLTK_GLUE_CAIRO_H
Anonymous namespace for callbacks, local functions, event handlers etc.
Definition: dbus_ext.cpp:40
Definition: klash_part.cpp:329
Base class for render handlers.
Definition: Renderer.h:188
Definition: klash_part.cpp:329
Rectangle class, see swf defined rectangle record.
Definition: SWFRect.h:44
Definition: fltk_glue_cairo.h:51