Gnash  0.8.11dev
X11Device.h
Go to the documentation of this file.
1 //
2 // Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
3 // 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 
20 #ifndef __X11_DEVICE_H__
21 #define __X11_DEVICE_H__ 1
22 
23 #ifdef HAVE_CONFIG_H
24 #include "gnashconfig.h"
25 #endif
26 
27 #include <boost/scoped_array.hpp>
28 #include <boost/scoped_ptr.hpp>
29 
30 #ifdef HAVE_X11_X_H
31 # include <X11/X.h>
32 # include <X11/Xlib.h>
33 # include <X11/Xutil.h>
34 #else
35 # error "This file needs X11"
36 #endif
37 
38 #include "GnashDevice.h"
39 
40 namespace gnash {
41 
42 namespace renderer {
43 
44 namespace x11 {
45 
46 class X11Device : public GnashDevice
47 {
48  public:
49 
50  X11Device();
51  X11Device(int);
52  X11Device(int argc, char *argv[]);
53 
54  // virtual classes should have virtual destructors
55  virtual ~X11Device();
56 
57  dtype_t getType() { return X11; };
58 
59  size_t getStride() { return 0; };
60 
61  // Initialize X11 Device layer
62  bool initDevice(int argc, char *argv[]);
63 
64  // Initialize X11 Window layer
66 
67  // Utility methods not in the base class
68 
69  // Return a string with the error code as text, instead of a numeric value
70  const char *getErrorString(int error);
71 
72  int getDepth() { return DefaultDepth(_display, _screennum); }
73 
74  // Accessors for the settings needed by higher level code.
75  // Surface accessors
76  size_t getWidth() { if (_screen) { return XWidthOfScreen(_screen); } return 0; }
77  size_t getHeight() { if (_screen) { return XWidthOfScreen(_screen); } return 0; }
78 
79  bool isSingleBuffered() { return true; }
80 
81  bool supportsRenderer(GnashDevice::rtype_t /* rtype */) { return false; }
82 
83  bool isBufferDestroyed() { return false; }
84  // bool isBufferDestroyed(IX11Surface surface) {
85  // return false;
86  // }
87  int getID() { return static_cast<int>(_window); }
88 
89  // Get the size of the pixels, for X11 it's always 8 as far as I can tell
90  int getRedSize() { return (_vinfo) ? _vinfo[0].bits_per_rgb : 0; };
91  int getGreenSize() { return getRedSize(); };
92  int getBlueSize() { return getRedSize(); };
93 
94  // Using X11 always means a native renderer
95  bool isNativeRender() { return true; }
96 
97  int getHandle() { return _window; };
98 
99  //
100  // Testing Support
101  //
102 
103  // Create an X11 window to render in. This is only used by testing
104  void createWindow(const char *name, int x, int y, int width, int height);
105 
112  void eventLoop(size_t passes);
113 
114 protected:
115  Display *_display;
117  Window _root;
118  Window _window;
119  Colormap _colormap;
120  Visual *_visual;
121  Screen *_screen;
122  int _depth;
123  XVisualInfo *_vinfo;
124  int _vid;
125 };
126 
127 typedef void (*init_func)();
128 typedef void (*reshape_func)(int, int);
129 typedef void (*draw_func)();
130 typedef int (*key_func)(unsigned key);
131 
132 } // namespace x11
133 } // namespace renderer
134 } // namespace gnash
135 
136 #endif // end of __X11_DEVICE_H__
137 
138 // local Variables:
139 // mode: C++
140 // indent-tabs-mode: nil
141 // End:
int getRedSize()
Get the size of the Red pixel.
Definition: X11Device.h:90
int _screennum
Definition: X11Device.h:116
void createWindow(const char *name, int x, int y, int width, int height)
Definition: X11Device.cpp:207
int getDepth()
Get the depth of the device.
Definition: X11Device.h:72
Visual * _visual
Definition: X11Device.h:120
Window _root
Definition: X11Device.h:117
size_t getHeight()
Get the Height of the device.
Definition: X11Device.h:77
bool initDevice(int argc, char *argv[])
Definition: X11Device.cpp:126
long native_window_t
Definition: GnashDevice.h:43
Display * _display
Definition: X11Device.h:115
Definition: GnashDevice.h:48
Definition: GnashDevice.h:39
Anonymous namespace for callbacks, local functions, event handlers etc.
Definition: dbus_ext.cpp:40
dtype_t
The list of supported device types.
Definition: GnashDevice.h:48
int getID()
Get the window ID handle.
Definition: X11Device.h:87
int _depth
Definition: X11Device.h:122
Definition: klash_part.cpp:329
int getBlueSize()
Get the size of the Blue pixel.
Definition: X11Device.h:92
int(* key_func)(unsigned key)
Definition: X11Device.h:130
Definition: X11Device.h:46
XVisualInfo * _vinfo
Definition: X11Device.h:123
int _vid
Definition: X11Device.h:124
const char * getErrorString(int error)
Return a string with the error code as text, instead of a numeric value.
Definition: X11Device.cpp:192
void(* draw_func)()
Definition: X11Device.h:129
virtual ~X11Device()
Definition: X11Device.cpp:110
void(* init_func)()
Definition: X11Device.h:127
Definition: klash_part.cpp:329
size_t getStride()
Query the system for all supported configs.
Definition: X11Device.h:59
rtype_t
The list of supported renders that use devices.
Definition: GnashDevice.h:46
void eventLoop(size_t passes)
Definition: X11Device.cpp:253
Window _window
Definition: X11Device.h:118
void(* reshape_func)(int, int)
Definition: X11Device.h:128
int getGreenSize()
Get the size of the Green pixel.
Definition: X11Device.h:91
boost::int32_t x
Definition: BitmapData_as.cpp:434
bool supportsRenderer(GnashDevice::rtype_t)
Is the specified renderer supported by this hardware ?
Definition: X11Device.h:81
bool isSingleBuffered()
Is this device single buffered.
Definition: X11Device.h:79
int getHandle()
Definition: X11Device.h:97
Screen * _screen
Definition: X11Device.h:121
Colormap _colormap
Definition: X11Device.h:119
boost::int32_t y
Definition: BitmapData_as.cpp:435
bool attachWindow(GnashDevice::native_window_t window)
Definition: X11Device.cpp:180
dtype_t getType()
Definition: X11Device.h:57
size_t getWidth()
Get the width of the device.
Definition: X11Device.h:76
bool isBufferDestroyed()
Are buffers destroyed ?
Definition: X11Device.h:83
bool isNativeRender()
Is this renderering natively.
Definition: X11Device.h:95
std::string name
Definition: LocalConnection_as.cpp:151
X11Device()
Definition: X11Device.cpp:59