]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/utilsgtk.cpp
removed unneccesary (and unwanted) asserts
[wxWidgets.git] / src / gtk1 / utilsgtk.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: utils.cpp
3// Purpose:
4// Author: Robert Roebling
dfcb1ae0 5// Id: $Id$
c801d85f 6// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
518b5d2f 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
c801d85f
KB
10#include "wx/utils.h"
11#include "wx/string.h"
12
02847e59
VZ
13#include "wx/intl.h"
14#include "wx/log.h"
15
5336ece4
VZ
16#include "wx/process.h"
17
518b5d2f
VZ
18#include "wx/unix/execute.h"
19
c801d85f 20#include <stdarg.h>
c801d85f
KB
21#include <string.h>
22#include <sys/stat.h>
23#include <sys/types.h>
24#include <unistd.h>
91b8de8d
RR
25
26#include "glib.h"
27#include "gdk/gdk.h"
28#include "gtk/gtk.h"
df530a26 29#ifndef __WXGTK20__
91b8de8d 30#include "gtk/gtkfeatures.h"
df530a26 31#endif
91b8de8d 32#include "gdk/gdkx.h"
88ac883a 33
27933891 34#ifdef HAVE_X11_XKBLIB_H
154c4aa1
VZ
35 /* under HP-UX and Solaris 2.6, at least, XKBlib.h defines structures with
36 * field named "explicit" - which is, of course, an error for a C++
37 * compiler. To be on the safe side, just redefine it everywhere. */
88ac883a 38 #define explicit __wx_explicit
27933891 39
154c4aa1 40 #include "X11/XKBlib.h"
27933891 41
88ac883a 42 #undef explicit
27933891 43#endif // HAVE_X11_XKBLIB_H
dfcb1ae0 44
d76fe38b
RR
45//-----------------------------------------------------------------------------
46// data
47//-----------------------------------------------------------------------------
48
49extern GtkWidget *wxRootWindow;
50
51//----------------------------------------------------------------------------
c801d85f 52// misc.
d76fe38b 53//----------------------------------------------------------------------------
c801d85f 54
518b5d2f 55void wxBell()
c801d85f 56{
e52f60e6
RR
57 gdk_beep();
58}
c801d85f 59
27933891
RR
60/* Don't synthesize KeyUp events holding down a key and producing
61 KeyDown events with autorepeat. */
62#ifdef HAVE_X11_XKBLIB_H
f0492f7d
RR
63bool wxSetDetectableAutoRepeat( bool flag )
64{
65 Bool result;
66 XkbSetDetectableAutoRepeat( GDK_DISPLAY(), flag, &result );
27933891
RR
67 return result; /* TRUE if keyboard hardware supports this mode */
68}
69#else
70bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag) )
71{
72 return FALSE;
f0492f7d 73}
27933891 74#endif
f0492f7d 75
518b5d2f
VZ
76// ----------------------------------------------------------------------------
77// display characterstics
78// ----------------------------------------------------------------------------
82052aff 79
d111a89a
VZ
80void *wxGetDisplay()
81{
27df579a 82 return GDK_DISPLAY();
d111a89a
VZ
83}
84
c0392997
RR
85void wxDisplaySize( int *width, int *height )
86{
e52f60e6
RR
87 if (width) *width = gdk_screen_width();
88 if (height) *height = gdk_screen_height();
c0392997
RR
89}
90
6de97a3b
RR
91void wxGetMousePosition( int* x, int* y )
92{
bbe0af5b 93 gdk_window_get_pointer( (GdkWindow*) NULL, x, y, (GdkModifierType*) NULL );
e52f60e6 94}
6de97a3b 95
518b5d2f 96bool wxColourDisplay()
6de97a3b 97{
e52f60e6 98 return TRUE;
6de97a3b
RR
99}
100
518b5d2f 101int wxDisplayDepth()
6de97a3b 102{
d76fe38b 103 return gdk_window_get_visual( wxRootWindow->window )->depth;
6de97a3b
RR
104}
105
bbe0af5b
RR
106int wxGetOsVersion(int *majorVsn, int *minorVsn)
107{
108 if (majorVsn) *majorVsn = GTK_MAJOR_VERSION;
109 if (minorVsn) *minorVsn = GTK_MINOR_VERSION;
7e84f02d 110
bbe0af5b
RR
111 return wxGTK;
112}
113
57591e0e
JS
114wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
115{
116 return wxGenericFindWindowAtPoint(pt);
117}
118
119
518b5d2f 120// ----------------------------------------------------------------------------
c801d85f 121// subprocess routines
518b5d2f 122// ----------------------------------------------------------------------------
cf447356
GL
123
124static void GTK_EndProcessDetector(gpointer data, gint source,
e3e65dac 125 GdkInputCondition WXUNUSED(condition) )
cf447356 126{
ab857a4e
KB
127 wxEndProcessData *proc_data = (wxEndProcessData *)data;
128 close(source);
129 gdk_input_remove(proc_data->tag);
130
131 // This has to come after gdk_input_remove() or we will
132 // occasionally receive multiple callbacks with corrupt data
133 // pointers. (KB)
134 wxHandleProcessTermination(proc_data);
3069ac4e 135}
cf447356 136
518b5d2f 137int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
c801d85f 138{
518b5d2f
VZ
139 int tag = gdk_input_add(fd,
140 GDK_INPUT_READ,
141 GTK_EndProcessDetector,
142 (gpointer)proc_data);
c801d85f 143
518b5d2f 144 return tag;
3069ac4e 145}
c801d85f 146