1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/dfb/wrapdfb.h
3 // Purpose: wx wrappers for DirectFB interfaces
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2006 REA Elektronik GmbH
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_DFB_WRAPDFB_H_
12 #define _WX_DFB_WRAPDFB_H_
14 #include "wx/dfb/dfbptr.h"
18 wxDFB_DECLARE_INTERFACE(IDirectFB
);
19 wxDFB_DECLARE_INTERFACE(IDirectFBDisplayLayer
);
20 wxDFB_DECLARE_INTERFACE(IDirectFBWindow
);
21 wxDFB_DECLARE_INTERFACE(IDirectFBSurface
);
22 wxDFB_DECLARE_INTERFACE(IDirectFBPalette
);
23 wxDFB_DECLARE_INTERFACE(IDirectFBEventBuffer
);
27 Checks the @a code of a DirectFB call and returns true if it was
28 successful and false if it failed, logging the errors as appropriate
29 (asserts for programming errors, wxLogError for runtime failures).
31 bool wxDfbCheckReturn(DFBResult code
);
33 //-----------------------------------------------------------------------------
35 //-----------------------------------------------------------------------------
38 The struct defined by this macro is a thin wrapper around DFB*Event type.
39 It is needed because DFB*Event are typedefs and so we can't forward declare
40 them, but we need to pass them to methods declared in public headers where
41 <directfb.h> cannot be included. So this struct just holds the event value,
42 it's sole purpose is that it can be forward declared.
44 #define WXDFB_DEFINE_EVENT_WRAPPER(T) \
48 wx##T(const T& event) : m_event(event) {} \
50 operator T&() { return m_event; } \
51 operator const T&() const { return m_event; } \
52 T* operator&() { return &m_event; } \
54 DFBEventClass GetClass() const { return m_event.clazz; } \
60 WXDFB_DEFINE_EVENT_WRAPPER(DFBEvent
)
61 WXDFB_DEFINE_EVENT_WRAPPER(DFBWindowEvent
)
64 //-----------------------------------------------------------------------------
66 //-----------------------------------------------------------------------------
68 /// Base class for wxDfbWrapper<T>
69 class wxDfbWrapperBase
72 /// Increases reference count of the object
78 /// Decreases reference count and if it reaches zero, deletes the object
81 if ( --m_refCnt
== 0 )
85 /// Returns result code of the last call
86 DFBResult
GetLastResult() const { return m_lastResult
; }
89 wxDfbWrapperBase() : m_refCnt(1), m_lastResult(DFB_OK
) {}
91 /// Dtor may only be called from Release()
92 virtual ~wxDfbWrapperBase() {}
95 Checks the @a result of a DirectFB call and returns true if it was
96 successful and false if it failed. Also stores result of the call
97 so that it can be obtained by calling GetLastResult().
99 bool Check(DFBResult result
)
101 m_lastResult
= result
;
102 return wxDfbCheckReturn(result
);
109 /// Result of the last DirectFB call
110 DFBResult m_lastResult
;
114 This template is base class for friendly C++ wrapper around DirectFB
117 The wrapper provides same API as DirectFB, with a few exceptions:
118 - methods return true/false instead of error code
119 - methods that return or create another interface return pointer to the
120 interface (or NULL on failure) instead of storing it in the last
122 - interface arguments use wxFooPtr type instead of raw DirectFB pointer
123 - methods taking flags use int type instead of an enum when the flags
124 can be or-combination of enum elements (this is workaround for
125 C++-unfriendly DirectFB API)
128 class wxDfbWrapper
: public wxDfbWrapperBase
131 /// "Raw" DirectFB interface type
132 typedef T DirectFBIface
;
134 /// Returns raw DirectFB pointer
135 T
*GetRaw() const { return m_ptr
; }
138 /// To be called from ctor. Takes ownership of raw object.
139 void Init(T
*ptr
) { m_ptr
= ptr
; }
141 /// Dtor may only be used from Release
145 m_ptr
->Release(m_ptr
);
149 // pointer to DirectFB object
154 //-----------------------------------------------------------------------------
156 //-----------------------------------------------------------------------------
158 struct wxIDirectFBFont
: public wxDfbWrapper
<IDirectFBFont
>
160 wxIDirectFBFont(IDirectFBFont
*s
) { Init(s
); }
162 bool GetStringWidth(const char *text
, int bytes
, int *w
)
163 { return Check(m_ptr
->GetStringWidth(m_ptr
, text
, bytes
, w
)); }
165 bool GetStringExtents(const char *text
, int bytes
,
166 DFBRectangle
*logicalRect
, DFBRectangle
*inkRect
)
168 return Check(m_ptr
->GetStringExtents(m_ptr
, text
, bytes
,
169 logicalRect
, inkRect
));
172 bool GetHeight(int *h
)
173 { return Check(m_ptr
->GetHeight(m_ptr
, h
)); }
175 bool GetDescender(int *descender
)
176 { return Check(m_ptr
->GetDescender(m_ptr
, descender
)); }
180 //-----------------------------------------------------------------------------
181 // wxIDirectFBPalette
182 //-----------------------------------------------------------------------------
184 struct wxIDirectFBPalette
: public wxDfbWrapper
<IDirectFBPalette
>
186 wxIDirectFBPalette(IDirectFBPalette
*s
) { Init(s
); }
190 //-----------------------------------------------------------------------------
191 // wxIDirectFBSurface
192 //-----------------------------------------------------------------------------
194 struct wxIDirectFBSurface
: public wxDfbWrapper
<IDirectFBSurface
>
196 wxIDirectFBSurface(IDirectFBSurface
*s
) { Init(s
); }
198 bool GetSize(int *w
, int *h
)
199 { return Check(m_ptr
->GetSize(m_ptr
, w
, h
)); }
201 bool GetCapabilities(DFBSurfaceCapabilities
*caps
)
202 { return Check(m_ptr
->GetCapabilities(m_ptr
, caps
)); }
204 bool GetPixelFormat(DFBSurfacePixelFormat
*caps
)
205 { return Check(m_ptr
->GetPixelFormat(m_ptr
, caps
)); }
207 bool SetClip(const DFBRegion
*clip
)
208 { return Check(m_ptr
->SetClip(m_ptr
, clip
)); }
210 bool SetColor(__u8 r
, __u8 g
, __u8 b
, __u8 a
)
211 { return Check(m_ptr
->SetColor(m_ptr
, r
, g
, b
, a
)); }
213 bool Clear(__u8 r
, __u8 g
, __u8 b
, __u8 a
)
214 { return Check(m_ptr
->Clear(m_ptr
, r
, g
, b
, a
)); }
216 bool DrawLine(int x1
, int y1
, int x2
, int y2
)
217 { return Check(m_ptr
->DrawLine(m_ptr
, x1
, y1
, x2
, y2
)); }
219 bool DrawRectangle(int x
, int y
, int w
, int h
)
220 { return Check(m_ptr
->DrawRectangle(m_ptr
, x
, y
, w
, h
)); }
222 bool FillRectangle(int x
, int y
, int w
, int h
)
223 { return Check(m_ptr
->FillRectangle(m_ptr
, x
, y
, w
, h
)); }
225 bool SetFont(const wxIDirectFBFontPtr
& font
)
226 { return Check(m_ptr
->SetFont(m_ptr
, font
->GetRaw())); }
228 bool DrawString(const char *text
, int bytes
, int x
, int y
, int flags
)
230 return Check(m_ptr
->DrawString(m_ptr
, text
, bytes
, x
, y
,
231 (DFBSurfaceTextFlags
)flags
));
235 Updates the front buffer from the back buffer. If @a region is not
236 NULL, only given rectangle is updated.
238 bool FlipToFront(const DFBRegion
*region
= NULL
);
240 wxIDirectFBSurfacePtr
GetSubSurface(const DFBRectangle
*rect
)
243 if ( Check(m_ptr
->GetSubSurface(m_ptr
, rect
, &s
)) )
244 return new wxIDirectFBSurface(s
);
249 wxIDirectFBPalettePtr
GetPalette()
252 if ( Check(m_ptr
->GetPalette(m_ptr
, &s
)) )
253 return new wxIDirectFBPalette(s
);
258 bool SetPalette(const wxIDirectFBPalettePtr
& pal
)
259 { return Check(m_ptr
->SetPalette(m_ptr
, pal
->GetRaw())); }
261 bool SetBlittingFlags(int flags
)
264 m_ptr
->SetBlittingFlags(m_ptr
, (DFBSurfaceBlittingFlags
)flags
));
267 bool Blit(const wxIDirectFBSurfacePtr
& source
,
268 const DFBRectangle
*source_rect
,
270 { return Blit(source
->GetRaw(), source_rect
, x
, y
); }
272 bool Blit(IDirectFBSurface
*source
,
273 const DFBRectangle
*source_rect
,
275 { return Check(m_ptr
->Blit(m_ptr
, source
, source_rect
, x
, y
)); }
277 bool StretchBlit(const wxIDirectFBSurfacePtr
& source
,
278 const DFBRectangle
*source_rect
,
279 const DFBRectangle
*dest_rect
)
281 return Check(m_ptr
->StretchBlit(m_ptr
, source
->GetRaw(),
282 source_rect
, dest_rect
));
286 /// Returns bit depth used by the surface or -1 on error
290 Creates a new surface by cloning this one. New surface will have same
291 capabilities, pixel format and pixel data as the existing one.
293 @see CreateCompatible
295 wxIDirectFBSurfacePtr
Clone();
298 Creates a surface compatible with this one, i.e. surface with the same
299 capabilities and pixel format, but with different and size.
301 @param size Size of the surface to create. If wxDefaultSize, use the
302 size of this surface.
304 wxIDirectFBSurfacePtr
CreateCompatible(const wxSize
& size
= wxDefaultSize
);
307 // this is private because we want user code to use FlipToFront()
308 bool Flip(const DFBRegion
*region
, int flags
);
312 //-----------------------------------------------------------------------------
313 // wxIDirectFBEventBuffer
314 //-----------------------------------------------------------------------------
316 struct wxIDirectFBEventBuffer
: public wxDfbWrapper
<IDirectFBEventBuffer
>
318 wxIDirectFBEventBuffer(IDirectFBEventBuffer
*s
) { Init(s
); }
322 return Check(m_ptr
->WakeUp(m_ptr
));
327 // returns DFB_OK if there is >=1 event, DFB_BUFFEREMPTY otherwise
328 DFBResult r
= m_ptr
->HasEvent(m_ptr
);
330 // NB: Check() also returns true for DFB_BUFFEREMPTY, so we can't just
331 // return it's return value:
333 return (r
== DFB_OK
);
336 bool WaitForEventWithTimeout(unsigned secs
, unsigned millisecs
)
338 DFBResult r
= m_ptr
->WaitForEventWithTimeout(m_ptr
, secs
, millisecs
);
340 // DFB_TIMEOUT is not an error in this function:
341 if ( r
== DFB_TIMEOUT
)
343 m_lastResult
= DFB_TIMEOUT
;
350 bool GetEvent(wxDFBEvent
& event
)
352 return Check(m_ptr
->GetEvent(m_ptr
, &event
));
357 //-----------------------------------------------------------------------------
359 //-----------------------------------------------------------------------------
361 struct wxIDirectFBWindow
: public wxDfbWrapper
<IDirectFBWindow
>
363 wxIDirectFBWindow(IDirectFBWindow
*s
) { Init(s
); }
365 bool GetID(DFBWindowID
*id
)
366 { return Check(m_ptr
->GetID(m_ptr
, id
)); }
368 bool GetPosition(int *x
, int *y
)
369 { return Check(m_ptr
->GetPosition(m_ptr
, x
, y
)); }
371 bool GetSize(int *w
, int *h
)
372 { return Check(m_ptr
->GetSize(m_ptr
, w
, h
)); }
374 bool MoveTo(int x
, int y
)
375 { return Check(m_ptr
->MoveTo(m_ptr
, x
, y
)); }
377 bool Resize(int w
, int h
)
378 { return Check(m_ptr
->Resize(m_ptr
, w
, h
)); }
380 bool SetOpacity(__u8 opacity
)
381 { return Check(m_ptr
->SetOpacity(m_ptr
, opacity
)); }
383 bool SetStackingClass(DFBWindowStackingClass klass
)
384 { return Check(m_ptr
->SetStackingClass(m_ptr
, klass
)); }
386 wxIDirectFBSurfacePtr
GetSurface()
389 if ( Check(m_ptr
->GetSurface(m_ptr
, &s
)) )
390 return new wxIDirectFBSurface(s
);
395 bool AttachEventBuffer(const wxIDirectFBEventBufferPtr
& buffer
)
396 { return Check(m_ptr
->AttachEventBuffer(m_ptr
, buffer
->GetRaw())); }
399 { return Check(m_ptr
->RequestFocus(m_ptr
)); }
403 //-----------------------------------------------------------------------------
404 // wxIDirectFBDisplayLayer
405 //-----------------------------------------------------------------------------
407 struct wxIDirectFBDisplayLayer
: public wxDfbWrapper
<IDirectFBDisplayLayer
>
409 wxIDirectFBDisplayLayer(IDirectFBDisplayLayer
*s
) { Init(s
); }
411 wxIDirectFBWindowPtr
CreateWindow(const DFBWindowDescription
*desc
)
414 if ( Check(m_ptr
->CreateWindow(m_ptr
, desc
, &w
)) )
415 return new wxIDirectFBWindow(w
);
420 wxIDirectFBSurfacePtr
GetSurface()
423 if ( Check(m_ptr
->GetSurface(m_ptr
, &s
)) )
424 return new wxIDirectFBSurface(s
);
429 bool GetCursorPosition(int *x
, int *y
)
430 { return Check(m_ptr
->GetCursorPosition(m_ptr
, x
, y
)); }
432 bool WarpCursor(int x
, int y
)
433 { return Check(m_ptr
->WarpCursor(m_ptr
, x
, y
)); }
437 //-----------------------------------------------------------------------------
439 //-----------------------------------------------------------------------------
441 struct wxIDirectFB
: public wxDfbWrapper
<IDirectFB
>
444 Returns pointer to DirectFB singleton object, it never returns NULL
445 after wxApp was initialized. The object is cached, so calling this
448 static wxIDirectFBPtr
Get()
450 if ( !ms_ptr
) CreateDirectFB();
454 bool SetVideoMode(int w
, int h
, int bpp
)
455 { return Check(m_ptr
->SetVideoMode(m_ptr
, w
, h
, bpp
)); }
457 wxIDirectFBSurfacePtr
CreateSurface(const DFBSurfaceDescription
*desc
)
460 if ( Check(m_ptr
->CreateSurface(m_ptr
, desc
, &s
)) )
461 return new wxIDirectFBSurface(s
);
466 wxIDirectFBEventBufferPtr
CreateEventBuffer()
468 IDirectFBEventBuffer
*b
;
469 if ( Check(m_ptr
->CreateEventBuffer(m_ptr
, &b
)) )
470 return new wxIDirectFBEventBuffer(b
);
475 wxIDirectFBFontPtr
CreateFont(const char *filename
,
476 const DFBFontDescription
*desc
)
479 if ( Check(m_ptr
->CreateFont(m_ptr
, filename
, desc
, &f
)) )
480 return new wxIDirectFBFont(f
);
485 wxIDirectFBDisplayLayerPtr
486 GetDisplayLayer(DFBDisplayLayerID id
= DLID_PRIMARY
)
488 IDirectFBDisplayLayer
*l
;
489 if ( Check(m_ptr
->GetDisplayLayer(m_ptr
, id
, &l
)) )
490 return new wxIDirectFBDisplayLayer(l
);
495 /// Returns primary surface
496 wxIDirectFBSurfacePtr
GetPrimarySurface();
499 wxIDirectFB(IDirectFB
*ptr
) { Init(ptr
); }
501 // creates ms_ptr instance
502 static void CreateDirectFB();
504 static void CleanUp();
505 friend class wxApp
; // calls CleanUp
507 // pointer to the singleton IDirectFB object
508 static wxIDirectFBPtr ms_ptr
;
511 #endif // _WX_DFB_WRAPDFB_H_