1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/dfb/utils.cpp
3 // Purpose: Miscellaneous utility functions and classes
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2006 REA Elektronik GmbH
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
19 #include "wx/apptrait.h"
20 #include "wx/unix/execute.h"
26 #include "wx/dfb/private.h"
27 #include <directfb_version.h>
29 // ----------------------------------------------------------------------------
31 // ----------------------------------------------------------------------------
33 wxPortId
wxGUIAppTraits::GetToolkitVersion(int *verMaj
, int *verMin
) const
35 if ( verMaj
) *verMaj
= DIRECTFB_MAJOR_VERSION
;
36 if ( verMin
) *verMaj
= DIRECTFB_MINOR_VERSION
;
41 // ----------------------------------------------------------------------------
42 // display characteristics
43 // ----------------------------------------------------------------------------
45 bool wxColourDisplay()
47 #warning "FIXME: wxColourDisplay"
53 return wxTheApp
->GetDisplayMode().bpp
;
56 void wxDisplaySize(int *width
, int *height
)
58 wxVideoMode
mode(wxTheApp
->GetDisplayMode());
59 if ( width
) *width
= mode
.w
;
60 if ( height
) *height
= mode
.h
;
63 void wxDisplaySizeMM(int *width
, int *height
)
65 // FIXME: there's no way to get physical resolution using the DirectDB
66 // API, we hardcode a commonly used value of 72dpi
68 #define PX_TO_MM(x) (int(((x) / DPI) * inches2mm))
70 wxDisplaySize(width
, height
);
71 if ( width
) *width
= PX_TO_MM(*width
);
72 if ( height
) *height
= PX_TO_MM(*height
);
78 void wxClientDisplayRect(int *x
, int *y
, int *width
, int *height
)
80 // return desktop dimensions minus any panels, menus, trays:
83 wxDisplaySize(width
, height
);
86 //-----------------------------------------------------------------------------
87 // surface manipulation helpers
88 //-----------------------------------------------------------------------------
90 wxIDirectFBSurfacePtr
wxDfbCreateCompatibleSurface(
91 const wxIDirectFBSurfacePtr
& s
,
97 DFBSurfaceDescription desc
;
98 desc
.flags
= (DFBSurfaceDescriptionFlags
)(
99 DSDESC_CAPS
| DSDESC_WIDTH
| DSDESC_HEIGHT
| DSDESC_PIXELFORMAT
);
100 s
->GetCapabilities(&desc
.caps
);
101 s
->GetPixelFormat(&desc
.pixelformat
);
103 desc
.height
= size
.y
;
105 wxIDirectFBSurfacePtr
snew(wxIDirectFB::Get()->CreateSurface(&desc
));
109 if ( desc
.pixelformat
== DSPF_LUT8
)
111 wxIDirectFBPalettePtr
pal(s
->GetPalette());
114 if ( !snew
->SetPalette(pal
) )
122 wxIDirectFBSurfacePtr
wxDfbCloneSurface(const wxIDirectFBSurfacePtr
& s
,
123 wxDfbCloneSurfaceMode mode
)
129 if ( !s
->GetSize(&size
.x
, &size
.y
) )
132 wxIDirectFBSurfacePtr
snew(wxDfbCreateCompatibleSurface(s
, size
));
136 if ( mode
== wxDfbCloneSurface_CopyPixels
)
138 if ( !snew
->SetBlittingFlags(DSBLIT_NOFX
) )
140 if ( !snew
->Blit(s
, NULL
, 0, 0) )
147 int wxDfbGetSurfaceDepth(const wxIDirectFBSurfacePtr
& s
)
149 wxCHECK_MSG( s
, -1, _T("invalid surface") );
151 DFBSurfacePixelFormat format
= DSPF_UNKNOWN
;
153 if ( !s
->GetPixelFormat(&format
) )
156 return DFB_BITS_PER_PIXEL(format
);
159 wxIDirectFBDisplayLayerPtr
wxDfbGetDisplayLayer()
161 return wxIDirectFB::Get()->GetDisplayLayer(DLID_PRIMARY
);
164 wxIDirectFBSurfacePtr
wxDfbGetPrimarySurface()
166 wxIDirectFBDisplayLayerPtr
layer(wxDfbGetDisplayLayer());
167 return layer
? layer
->GetSurface() : NULL
;
171 //-----------------------------------------------------------------------------
173 //-----------------------------------------------------------------------------
175 void wxGetMousePosition(int *x
, int *y
)
177 wxIDirectFBDisplayLayerPtr
layer(wxDfbGetDisplayLayer());
179 layer
->GetCursorPosition(x
, y
);
182 wxPoint
wxGetMousePosition()
185 wxGetMousePosition(&pt
.x
, &pt
.y
);
189 //-----------------------------------------------------------------------------
191 //-----------------------------------------------------------------------------
193 bool wxGetKeyState(wxKeyCode key
)
195 wxASSERT_MSG(key
!= WXK_LBUTTON
&& key
!= WXK_RBUTTON
&& key
!= WXK_MBUTTON
,
196 _T("can't use wxGetKeyState() for mouse buttons"));
198 return false; // FIXME
201 //----------------------------------------------------------------------------
203 //----------------------------------------------------------------------------
209 int wxAddProcessCallback(wxEndProcessData
*proc_data
, int fd
)
211 wxFAIL_MSG( _T("wxAddProcessCallback not implemented") );