summaryrefslogtreecommitdiff
path: root/otk/surface.hh
diff options
context:
space:
mode:
Diffstat (limited to 'otk/surface.hh')
-rw-r--r--otk/surface.hh18
1 files changed, 16 insertions, 2 deletions
diff --git a/otk/surface.hh b/otk/surface.hh
index b027f796..53738128 100644
--- a/otk/surface.hh
+++ b/otk/surface.hh
@@ -7,28 +7,42 @@
extern "C" {
#include <X11/Xlib.h>
+#define _XFT_NO_COMPAT_ // no Xft 1 API
+#include <X11/Xft/Xft.h>
}
namespace otk {
+class ScreenInfo;
+
class Surface {
+ int _screen;
Point _size;
+ XImage *_im;
Pixmap _pm;
+ XftDraw *_xftdraw;
+ void createObjects();
+ void destroyObjects();
+
protected:
- Surface();
- Surface(const Point &size);
+ Surface(int screen);
+ Surface(int screen, const Point &size);
virtual void setSize(int w, int h);
public:
virtual ~Surface();
+ inline int screen(void) const { return _screen; }
virtual const Point& size() const { return _size; }
virtual int width() const { return _size.x(); }
virtual int height() const { return _size.y(); }
virtual Pixmap pixmap() const { return _pm; } // TEMP
+ // The RenderControl classes use the internal objects in this class to render
+ // to it. Noone else needs them tho, so they are private.
+ friend class RenderControl;
friend class TrueRenderControl;
};