Gnash
0.8.10
|
00001 // 00002 // Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software 00003 // Foundation, Inc 00004 // 00005 // This program is free software; you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation; either version 3 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program; if not, write to the Free Software 00017 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 // 00019 00020 #ifdef HAVE_CONFIG_H 00021 #include "gnashconfig.h" 00022 #endif 00023 00024 #include "gtk_glue.h" 00025 00026 #include <gtk/gtk.h> 00027 #include <gdk/gdk.h> 00028 #include <boost/scoped_array.hpp> 00029 #include <boost/scoped_ptr.hpp> 00030 #include "openvg/OpenVGRenderer.h" 00031 00032 #ifdef HAVE_VG_OPENVG_H 00033 #include <VG/openvg.h> 00034 #endif 00035 00036 #ifdef HAVE_EGL_EGL_H 00037 # include <EGL/egl.h> 00038 #else 00039 # error "This file needs EGL, which is part of OpenGL-ES" 00040 #endif 00041 00042 namespace gnash { 00043 00044 namespace gui { 00045 00046 class GtkOvgGlue : public GtkGlue 00047 { 00048 public: 00049 GtkOvgGlue(); 00050 ~GtkOvgGlue(); 00051 00052 // Initialize EGL 00053 bool init(int argc, char **argv[]); 00054 00055 // Prepare the drawing area 00056 void prepDrawingArea(GtkWidget *drawing_area); 00057 00058 // Create the renderer 00059 Renderer* createRenderHandler(); 00060 00061 // Set the size of the rendering window 00062 void setRenderHandlerSize(int width, int height); 00063 void beforeRendering(); 00064 00065 void configure(GtkWidget *const widget, GdkEventConfigure *const event); 00066 00067 // Render the drawing area to the display 00068 void render(); 00069 void render(int minx, int miny, int maxx, int maxy); 00070 00071 private: 00072 // offscreenbuf is only used with ENABLE_EGL_OFFSCREEN 00073 GdkImage *_offscreenbuf; 00074 unsigned int _bpp; 00075 unsigned int _width; 00076 unsigned int _height; 00077 00078 boost::shared_ptr<renderer::openvg::Renderer_ovg> _renderer; 00079 }; 00080 00081 } // namespace gui 00082 } // namespace gnash 00083 00084 // local Variables: 00085 // mode: C++ 00086 // indent-tabs-mode: nil 00087 // End: