]> git.saurik.com Git - wxWidgets.git/blame - src/x11/utils.cpp
Fixed wxGenericFileDialog to work with WinCE, so it can be used to
[wxWidgets.git] / src / x11 / utils.cpp
CommitLineData
83df96d6 1/////////////////////////////////////////////////////////////////////////////
521bf4ff 2// Name: src/x11/utils.cpp
83df96d6
JS
3// Purpose: Various utilities
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
83df96d6
JS
10/////////////////////////////////////////////////////////////////////////////
11
521bf4ff
WS
12// for compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#if defined(__BORLANDC__)
16#pragma hdrstop
17#endif
18
83df96d6
JS
19// ============================================================================
20// declarations
21// ============================================================================
22
23// ----------------------------------------------------------------------------
24// headers
25// ----------------------------------------------------------------------------
26
83df96d6
JS
27#include "wx/utils.h"
28#include "wx/app.h"
cd478a95 29#include "wx/apptrait.h"
83df96d6
JS
30#include "wx/msgdlg.h"
31#include "wx/cursor.h"
32#include "wx/window.h" // for wxTopLevelWindows
33
34#include <ctype.h>
35#include <stdarg.h>
36#include <dirent.h>
37#include <string.h>
38#include <sys/stat.h>
39#include <sys/types.h>
40#include <unistd.h>
41#include <sys/wait.h>
42#include <pwd.h>
43#include <errno.h>
2b5f62a0 44// #include <netdb.h>
83df96d6
JS
45#include <signal.h>
46
47#if (defined(__SUNCC__) || defined(__CLCC__))
48 #include <sysent.h>
49#endif
50
51#ifdef __VMS__
52#pragma message disable nosimpint
53#endif
bc797f4c 54
83df96d6
JS
55#include "wx/unix/execute.h"
56
bc797f4c 57#include "wx/x11/private.h"
256d631a 58
7266b672 59#include "X11/Xutil.h"
83df96d6 60
256d631a
JS
61#ifdef __VMS__
62#pragma message enable nosimpint
63#endif
64
83df96d6
JS
65// ----------------------------------------------------------------------------
66// async event processing
67// ----------------------------------------------------------------------------
68
69// Consume all events until no more left
70void wxFlushEvents()
71{
72 Display *display = (Display*) wxGetDisplay();
73
74 XSync (display, FALSE);
75
5e29f97a
JS
76 // TODO for X11
77 // ??
83df96d6
JS
78}
79
83df96d6
JS
80bool wxCheckForInterrupt(wxWindow *wnd)
81{
54385bdb 82 wxASSERT_MSG(FALSE, wxT("wxCheckForInterrupt not yet implemented."));
5e29f97a 83 return FALSE;
83df96d6
JS
84}
85
86// ----------------------------------------------------------------------------
87// wxExecute stuff
88// ----------------------------------------------------------------------------
83df96d6
JS
89
90int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
91{
707440dc
JS
92 // TODO
93 return 0;
707440dc 94}
83df96d6
JS
95
96// ----------------------------------------------------------------------------
97// misc
98// ----------------------------------------------------------------------------
99
100// Emit a beeeeeep
189d1ae7
SN
101#ifndef __EMX__
102// on OS/2, we use the wxBell from wxBase library (src/os2/utils.cpp)
83df96d6
JS
103void wxBell()
104{
105 // Use current setting for the bell
106 XBell ((Display*) wxGetDisplay(), 0);
107}
189d1ae7 108#endif
83df96d6 109
324899f6 110wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo()
83df96d6 111{
a8eaaeb2
VS
112 static wxToolkitInfo info;
113 info.shortName = _T("x11univ");
114 info.name = _T("wxX11");
115 info.versionMajor = 0;
116 info.versionMinor = 0;
117 info.os = wxX11;
324899f6 118 return info;
83df96d6
JS
119}
120
83df96d6
JS
121// ----------------------------------------------------------------------------
122// display info
123// ----------------------------------------------------------------------------
124
125void wxGetMousePosition( int* x, int* y )
126{
461e93f9
JS
127#if wxUSE_NANOX
128 // TODO
129 *x = 0;
130 *y = 0;
131#else
83df96d6
JS
132 XMotionEvent xev;
133 Window root, child;
134 XQueryPointer((Display*) wxGetDisplay(),
135 DefaultRootWindow((Display*) wxGetDisplay()),
136 &root, &child,
137 &(xev.x_root), &(xev.y_root),
138 &(xev.x), &(xev.y),
139 &(xev.state));
140 *x = xev.x_root;
141 *y = xev.y_root;
461e93f9 142#endif
83df96d6
JS
143};
144
145// Return TRUE if we have a colour display
146bool wxColourDisplay()
147{
148 return wxDisplayDepth() > 1;
149}
150
151// Returns depth of screen
152int wxDisplayDepth()
153{
154 Display *dpy = (Display*) wxGetDisplay();
155
156 return DefaultDepth (dpy, DefaultScreen (dpy));
157}
158
159// Get size of display
160void wxDisplaySize(int *width, int *height)
161{
162 Display *dpy = (Display*) wxGetDisplay();
163
164 if ( width )
165 *width = DisplayWidth (dpy, DefaultScreen (dpy));
166 if ( height )
167 *height = DisplayHeight (dpy, DefaultScreen (dpy));
168}
169
170void wxDisplaySizeMM(int *width, int *height)
171{
172 Display *dpy = (Display*) wxGetDisplay();
173
174 if ( width )
175 *width = DisplayWidthMM(dpy, DefaultScreen (dpy));
176 if ( height )
177 *height = DisplayHeightMM(dpy, DefaultScreen (dpy));
178}
179
180void wxClientDisplayRect(int *x, int *y, int *width, int *height)
181{
182 // This is supposed to return desktop dimensions minus any window
183 // manager panels, menus, taskbars, etc. If there is a way to do that
184 // for this platform please fix this function, otherwise it defaults
185 // to the entire desktop.
186 if (x) *x = 0;
187 if (y) *y = 0;
188 wxDisplaySize(width, height);
189}
190
191
5e29f97a 192// Configurable display in wxX11 and wxMotif
83df96d6
JS
193static WXDisplay *gs_currentDisplay = NULL;
194static wxString gs_displayName;
195
196WXDisplay *wxGetDisplay()
197{
198 if (gs_currentDisplay)
199 return gs_currentDisplay;
5e29f97a 200 return wxApp::GetDisplay();
83df96d6
JS
201}
202
203bool wxSetDisplay(const wxString& display_name)
204{
205 gs_displayName = display_name;
206
521bf4ff 207 if ( display_name.empty() )
83df96d6
JS
208 {
209 gs_currentDisplay = NULL;
210
521bf4ff 211 return true;
83df96d6
JS
212 }
213 else
214 {
461e93f9 215 Display* display = XOpenDisplay((char*) display_name.c_str());
83df96d6
JS
216
217 if (display)
218 {
219 gs_currentDisplay = (WXDisplay*) display;
521bf4ff 220 return true;
83df96d6
JS
221 }
222 else
223 return FALSE;
224 }
225}
226
227wxString wxGetDisplayName()
228{
229 return gs_displayName;
230}
231
232wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
233{
234 return wxGenericFindWindowAtPoint(pt);
235}
236
83df96d6
JS
237// ----------------------------------------------------------------------------
238// Some colour manipulation routines
239// ----------------------------------------------------------------------------
240
241void wxHSVToXColor(wxHSV *hsv,XColor *rgb)
242{
243 int h = hsv->h;
244 int s = hsv->s;
245 int v = hsv->v;
246 int r = 0, g = 0, b = 0;
247 int i, f;
248 int p, q, t;
249 s = (s * wxMAX_RGB) / wxMAX_SV;
250 v = (v * wxMAX_RGB) / wxMAX_SV;
251 if (h == 360) h = 0;
252 if (s == 0) { h = 0; r = g = b = v; }
253 i = h / 60;
254 f = h % 60;
255 p = v * (wxMAX_RGB - s) / wxMAX_RGB;
256 q = v * (wxMAX_RGB - s * f / 60) / wxMAX_RGB;
257 t = v * (wxMAX_RGB - s * (60 - f) / 60) / wxMAX_RGB;
258 switch (i)
259 {
260 case 0: r = v, g = t, b = p; break;
261 case 1: r = q, g = v, b = p; break;
262 case 2: r = p, g = v, b = t; break;
263 case 3: r = p, g = q, b = v; break;
264 case 4: r = t, g = p, b = v; break;
265 case 5: r = v, g = p, b = q; break;
266 }
267 rgb->red = r << 8;
268 rgb->green = g << 8;
269 rgb->blue = b << 8;
270}
271
272void wxXColorToHSV(wxHSV *hsv,XColor *rgb)
273{
274 int r = rgb->red >> 8;
275 int g = rgb->green >> 8;
276 int b = rgb->blue >> 8;
277 int maxv = wxMax3(r, g, b);
278 int minv = wxMin3(r, g, b);
279 int h = 0, s, v;
280 v = maxv;
281 if (maxv) s = (maxv - minv) * wxMAX_RGB / maxv;
282 else s = 0;
283 if (s == 0) h = 0;
284 else
285 {
286 int rc, gc, bc, hex = 0;
287 rc = (maxv - r) * wxMAX_RGB / (maxv - minv);
288 gc = (maxv - g) * wxMAX_RGB / (maxv - minv);
289 bc = (maxv - b) * wxMAX_RGB / (maxv - minv);
290 if (r == maxv) { h = bc - gc, hex = 0; }
291 else if (g == maxv) { h = rc - bc, hex = 2; }
292 else if (b == maxv) { h = gc - rc, hex = 4; }
293 h = hex * 60 + (h * 60 / wxMAX_RGB);
294 if (h < 0) h += 360;
295 }
296 hsv->h = h;
297 hsv->s = (s * wxMAX_SV) / wxMAX_RGB;
298 hsv->v = (v * wxMAX_SV) / wxMAX_RGB;
299}
300
301void wxAllocNearestColor(Display *d,Colormap cmp,XColor *xc)
302{
461e93f9 303#if !wxUSE_NANOX
83df96d6
JS
304 int llp;
305
306 int screen = DefaultScreen(d);
307 int num_colors = DisplayCells(d,screen);
308
309 XColor *color_defs = new XColor[num_colors];
310 for(llp = 0;llp < num_colors;llp++) color_defs[llp].pixel = llp;
311 XQueryColors(d,cmp,color_defs,num_colors);
312
313 wxHSV hsv_defs, hsv;
314 wxXColorToHSV(&hsv,xc);
315
316 int diff, min_diff = 0, pixel = 0;
317
318 for(llp = 0;llp < num_colors;llp++)
319 {
320 wxXColorToHSV(&hsv_defs,&color_defs[llp]);
321 diff = wxSIGN(wxH_WEIGHT * (hsv.h - hsv_defs.h)) +
322 wxSIGN(wxS_WEIGHT * (hsv.s - hsv_defs.s)) +
323 wxSIGN(wxV_WEIGHT * (hsv.v - hsv_defs.v));
324 if (llp == 0) min_diff = diff;
325 if (min_diff > diff) { min_diff = diff; pixel = llp; }
326 if (min_diff == 0) break;
327 }
328
329 xc -> red = color_defs[pixel].red;
330 xc -> green = color_defs[pixel].green;
331 xc -> blue = color_defs[pixel].blue;
332 xc -> flags = DoRed | DoGreen | DoBlue;
333
334/* FIXME, TODO
335 if (!XAllocColor(d,cmp,xc))
336 cout << "wxAllocNearestColor : Warning : Cannot find nearest color !\n";
337*/
338
339 delete[] color_defs;
461e93f9 340#endif
83df96d6
JS
341}
342
343void wxAllocColor(Display *d,Colormap cmp,XColor *xc)
344{
345 if (!XAllocColor(d,cmp,xc))
346 {
347 // cout << "wxAllocColor : Warning : Can not allocate color, attempt find nearest !\n";
348 wxAllocNearestColor(d,cmp,xc);
349 }
350}
351
45ff6421
JS
352#ifdef __WXDEBUG__
353wxString wxGetXEventName(XEvent& event)
354{
461e93f9
JS
355#if wxUSE_NANOX
356 wxString str(wxT("(some event)"));
357 return str;
358#else
45ff6421 359 int type = event.xany.type;
521bf4ff
WS
360 static char* event_name[] = {
361 "", "unknown(-)", // 0-1
362 "KeyPress", "KeyRelease", "ButtonPress", "ButtonRelease", // 2-5
363 "MotionNotify", "EnterNotify", "LeaveNotify", "FocusIn", // 6-9
364 "FocusOut", "KeymapNotify", "Expose", "GraphicsExpose", // 10-13
365 "NoExpose", "VisibilityNotify", "CreateNotify", // 14-16
366 "DestroyNotify", "UnmapNotify", "MapNotify", "MapRequest",// 17-20
367 "ReparentNotify", "ConfigureNotify", "ConfigureRequest", // 21-23
368 "GravityNotify", "ResizeRequest", "CirculateNotify", // 24-26
369 "CirculateRequest", "PropertyNotify", "SelectionClear", // 27-29
370 "SelectionRequest", "SelectionNotify", "ColormapNotify", // 30-32
371 "ClientMessage", "MappingNotify", // 33-34
372 "unknown(+)"}; // 35
373 type = wxMin(35, type); type = wxMax(1, type);
54385bdb 374 return wxString::FromAscii(event_name[type]);
461e93f9
JS
375#endif
376}
45ff6421
JS
377#endif
378
3a0b23eb
JS
379bool wxWindowIsVisible(Window win)
380{
381 XWindowAttributes wa;
382 XGetWindowAttributes(wxGlobalDisplay(), win, &wa);
383
384 return (wa.map_state == IsViewable);
385}