1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/utilsgtk.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
16 #include "wx/string.h"
21 #include "wx/sysopt.h"
22 #include "wx/apptrait.h"
23 #include "wx/process.h"
24 #include "wx/sysopt.h"
25 #include "wx/unix/execute.h"
27 #include "wx/gtk/private/timer.h"
28 #include "wx/evtloop.h"
31 #include "wx/gtk/assertdlg_gtk.h"
33 #include "wx/stackwalk.h"
34 #endif // wxUSE_STACKWALKER
40 #include <sys/types.h>
41 #include <sys/wait.h> // for WNOHANG
49 #ifdef HAVE_X11_XKBLIB_H
50 /* under HP-UX and Solaris 2.6, at least, XKBlib.h defines structures with
51 * field named "explicit" - which is, of course, an error for a C++
52 * compiler. To be on the safe side, just redefine it everywhere. */
53 #define explicit __wx_explicit
55 #include "X11/XKBlib.h"
58 #endif // HAVE_X11_XKBLIB_H
63 #include "X11/SM/SMlib.h"
66 //-----------------------------------------------------------------------------
68 //-----------------------------------------------------------------------------
70 extern GtkWidget
*wxGetRootWindow();
72 //----------------------------------------------------------------------------
74 //----------------------------------------------------------------------------
76 // on OS/2, we use the wxBell from wxBase library
84 /* Don't synthesize KeyUp events holding down a key and producing
85 KeyDown events with autorepeat. */
86 #ifdef HAVE_X11_XKBLIB_H
87 bool wxSetDetectableAutoRepeat( bool flag
)
90 XkbSetDetectableAutoRepeat( GDK_DISPLAY(), flag
, &result
);
91 return result
; /* true if keyboard hardware supports this mode */
94 bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag
) )
100 // Escapes string so that it is valid Pango markup XML string:
101 wxString
wxEscapeStringForPangoMarkup(const wxString
& str
)
103 size_t len
= str
.length();
106 for (size_t i
= 0; i
< len
; i
++)
135 // ----------------------------------------------------------------------------
136 // display characterstics
137 // ----------------------------------------------------------------------------
141 return GDK_DISPLAY();
144 void wxDisplaySize( int *width
, int *height
)
146 int marginX
= wxSystemOptions::GetOptionInt(wxT("gtk.desktopmargin.x"));
147 int marginY
= wxSystemOptions::GetOptionInt(wxT("gtk.desktopmargin.y"));
149 if (width
) *width
= gdk_screen_width() - marginX
;
150 if (height
) *height
= gdk_screen_height() - marginY
;
153 void wxDisplaySizeMM( int *width
, int *height
)
155 if (width
) *width
= gdk_screen_width_mm();
156 if (height
) *height
= gdk_screen_height_mm();
159 void wxClientDisplayRect(int *x
, int *y
, int *width
, int *height
)
161 // This is supposed to return desktop dimensions minus any window
162 // manager panels, menus, taskbars, etc. If there is a way to do that
163 // for this platform please fix this function, otherwise it defaults
164 // to the entire desktop.
167 wxDisplaySize(width
, height
);
170 void wxGetMousePosition( int* x
, int* y
)
172 gdk_window_get_pointer( (GdkWindow
*) NULL
, x
, y
, (GdkModifierType
*) NULL
);
175 bool wxColourDisplay()
182 return gdk_drawable_get_visual( wxGetRootWindow()->window
)->depth
;
185 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
187 return wxGenericFindWindowAtPoint(pt
);
192 WXDLLIMPEXP_CORE wxCharBuffer
193 wxConvertToGTK(const wxString
& s
, wxFontEncoding enc
)
196 if ( enc
== wxFONTENCODING_SYSTEM
|| enc
== wxFONTENCODING_DEFAULT
)
198 wbuf
= wxConvUI
->cMB2WC(s
.c_str());
200 else // another encoding, use generic conversion class
202 wbuf
= wxCSConv(enc
).cMB2WC(s
.c_str());
205 if ( !wbuf
&& !s
.empty() )
207 // conversion failed, but we still want to show something to the user
208 // even if it's going to be wrong it is better than nothing
210 // we choose ISO8859-1 here arbitrarily, it's just the most common
211 // encoding probably and, also importantly here, conversion from it
212 // never fails as it's done internally by wxCSConv
213 wbuf
= wxCSConv(wxFONTENCODING_ISO8859_1
).cMB2WC(s
.c_str());
216 return wxConvUTF8
.cWC2MB(wbuf
);
219 WXDLLIMPEXP_CORE wxCharBuffer
220 wxConvertFromGTK(const wxString
& s
, wxFontEncoding enc
)
222 // this conversion should never fail as GTK+ always uses UTF-8 internally
223 // so there are no complications here
224 const wxWCharBuffer
wbuf(wxConvUTF8
.cMB2WC(s
.c_str()));
225 if ( enc
== wxFONTENCODING_SYSTEM
)
226 return wxConvUI
->cWC2MB(wbuf
);
228 return wxCSConv(enc
).cWC2MB(wbuf
);
231 #endif // !wxUSE_UNICODE
233 // Returns false if version is certainly greater or equal than major.minor.micro
234 // Returns true if version is lower than major.minor.micro OR it cannot be
235 // determined and one should not rely on the availability of pango version
236 // major.minor.micro, nor the non-availability
237 const gchar
*wx_pango_version_check (int major
, int minor
, int micro
)
239 #ifdef PANGO_VERSION_MAJOR
240 if (!gtk_check_version (2,11,0))
242 // GTK+ 2.11 requires Pango >= 1.15.3 and pango_version_check
243 // was added in Pango 1.15.2 thus we know for sure the pango lib we're
244 // using has the pango_version_check function:
245 return pango_version_check (major
, minor
, micro
);
248 return "can't check";
249 #else // !PANGO_VERSION_MAJOR
254 return "too old headers";
259 // ----------------------------------------------------------------------------
260 // subprocess routines
261 // ----------------------------------------------------------------------------
265 void GTK_EndProcessDetector(gpointer data
, gint source
,
266 GdkInputCondition
WXUNUSED(condition
) )
268 wxEndProcessData
*proc_data
= (wxEndProcessData
*)data
;
270 // has the process really terminated? unfortunately GDK (or GLib) seem to
271 // generate G_IO_HUP notification even when it simply tries to read from a
272 // closed fd and hasn't terminated at all
273 int pid
= (proc_data
->pid
> 0) ? proc_data
->pid
: -(proc_data
->pid
);
275 int rc
= waitpid(pid
, &status
, WNOHANG
);
279 // no, it didn't exit yet, continue waiting
283 // set exit code to -1 if something bad happened
284 proc_data
->exitcode
= rc
!= -1 && WIFEXITED(status
) ? WEXITSTATUS(status
)
287 // child exited, end waiting
290 // don't call us again!
291 gdk_input_remove(proc_data
->tag
);
293 wxHandleProcessTermination(proc_data
);
297 int wxAddProcessCallback(wxEndProcessData
*proc_data
, int fd
)
299 int tag
= gdk_input_add(fd
,
301 GTK_EndProcessDetector
,
302 (gpointer
)proc_data
);
309 // ----------------------------------------------------------------------------
310 // wxPlatformInfo-related
311 // ----------------------------------------------------------------------------
313 wxPortId
wxGUIAppTraits::GetToolkitVersion(int *verMaj
, int *verMin
) const
316 *verMaj
= gtk_major_version
;
318 *verMin
= gtk_minor_version
;
325 wxTimerImpl
*wxGUIAppTraits::CreateTimerImpl(wxTimer
*timer
)
327 return new wxGTKTimerImpl(timer
);
330 #endif // wxUSE_TIMER
333 static wxString
GetSM()
338 Dpy() { m_dpy
= XOpenDisplay(NULL
); }
339 ~Dpy() { if ( m_dpy
) XCloseDisplay(m_dpy
); }
341 operator Display
*() const { return m_dpy
; }
347 return wxEmptyString
;
351 SmcConn smc_conn
= SmcOpenConnection(NULL
, NULL
,
353 0 /* mask */, NULL
/* callbacks */,
355 WXSIZEOF(smerr
), smerr
);
359 wxLogWarning(_("Failed to connect to session manager: %s"), smerr
);
360 return wxEmptyString
;
363 char *vendor
= SmcVendor(smc_conn
);
364 wxString ret
= wxString::FromAscii( vendor
);
367 SmcCloseConnection(smc_conn
, 0, NULL
);
372 #endif // wxUSE_DETECT_SM
375 //-----------------------------------------------------------------------------
377 //-----------------------------------------------------------------------------
379 wxEventLoopBase
*wxGUIAppTraits::CreateEventLoop()
381 return new wxEventLoop();
386 void wxGUIAppTraits::SetLocale()
389 wxUpdateLocaleIsUtf8();
395 #if wxUSE_STACKWALKER
397 // private helper class
398 class StackDump
: public wxStackWalker
401 StackDump(GtkAssertDialog
*dlg
) { m_dlg
=dlg
; }
404 virtual void OnStackFrame(const wxStackFrame
& frame
)
406 wxString fncname
= frame
.GetName();
407 wxString fncargs
= fncname
;
409 size_t n
= fncname
.find(wxT('('));
410 if (n
!= wxString::npos
)
412 // remove arguments from function name
415 // remove function name and brackets from arguments
416 fncargs
= fncargs
.substr(n
+1, fncargs
.length()-n
-2);
419 fncargs
= wxEmptyString
;
421 // append this stack frame's info in the dialog
422 if (!frame
.GetFileName().empty() || !fncname
.empty())
423 gtk_assert_dialog_append_stack_frame(m_dlg
,
426 frame
.GetFileName().mb_str(),
431 GtkAssertDialog
*m_dlg
;
434 // the callback functions must be extern "C" to comply with GTK+ declarations
437 void get_stackframe_callback(StackDump
*dump
)
439 // skip over frames up to including wxOnAssert()
440 dump
->ProcessFrames(3);
444 #endif // wxUSE_STACKWALKER
446 bool wxGUIAppTraits::ShowAssertDialog(const wxString
& msg
)
448 // under GTK2 we prefer to use a dialog widget written using directly GTK+;
449 // in fact we cannot use a dialog written using wxWidgets: it would need
450 // the wxWidgets idle processing to work correctly!
451 GtkWidget
*dialog
= gtk_assert_dialog_new();
452 gtk_assert_dialog_set_message(GTK_ASSERT_DIALOG(dialog
), msg
.mb_str());
454 #if wxUSE_STACKWALKER
455 // don't show more than maxLines or we could get a dialog too tall to be
456 // shown on screen: 20 should be ok everywhere as even with 15 pixel high
457 // characters it is still only 300 pixels...
458 static const int maxLines
= 20;
460 // save current stack frame...
461 StackDump
dump(GTK_ASSERT_DIALOG(dialog
));
462 dump
.SaveStack(maxLines
);
464 // ...but process it only if the user needs it
465 gtk_assert_dialog_set_backtrace_callback(GTK_ASSERT_DIALOG(dialog
),
466 (GtkAssertDialogStackFrameCallback
)get_stackframe_callback
,
468 #endif // wxUSE_STACKWALKER
470 gint result
= gtk_dialog_run(GTK_DIALOG (dialog
));
471 bool returnCode
= false;
474 case GTK_ASSERT_DIALOG_STOP
:
477 case GTK_ASSERT_DIALOG_CONTINUE
:
480 case GTK_ASSERT_DIALOG_CONTINUE_SUPPRESSING
:
486 wxFAIL_MSG( _T("unexpected return code from GtkAssertDialog") );
489 gtk_widget_destroy(dialog
);
493 #endif // __WXDEBUG__
495 wxString
wxGUIAppTraits::GetDesktopEnvironment() const
497 wxString de
= wxSystemOptions::GetOption(_T("gtk.desktop"));
501 static const wxString s_SM
= GetSM();
503 if (s_SM
== wxT("GnomeSM"))
505 else if (s_SM
== wxT("KDE"))
508 #endif // wxUSE_DETECT_SM
515 // see the hack below in wxCmdLineParser::GetUsageString().
516 // TODO: replace this hack with a g_option_group_get_entries()
517 // call as soon as such function exists
522 gchar
*help_description
;
524 GDestroyNotify destroy_notify
;
527 GTranslateFunc translate_func
;
528 GDestroyNotify translate_notify
;
529 gpointer translate_data
;
531 GOptionEntry
*entries
;
534 GOptionParseFunc pre_parse_func
;
535 GOptionParseFunc post_parse_func
;
536 GOptionErrorFunc error_func
;
539 wxString
wxGetNameFromGtkOptionEntry(const GOptionEntry
*opt
)
544 ret
<< _T("-") << opt
->short_name
;
549 ret
<< _T("--") << opt
->long_name
;
551 if (opt
->arg_description
)
552 ret
<< _T("=") << opt
->arg_description
;
555 return _T(" ") + ret
;
558 #endif // __WXGTK26__
561 wxGUIAppTraits::GetStandardCmdLineOptions(wxArrayString
& names
,
562 wxArrayString
& desc
) const
567 // check whether GTK version is greater than 2.6 but also lower than 2.12
568 // because, as we use the undocumented _GOptionGroup struct, we don't want
569 // to run this code with future versions which might change it (2.11 is the
570 // latest one at the time of this writing)
571 if (!gtk_check_version(2,6,0) &&
572 gtk_check_version(2,12,0))
574 usage
<< _("The following standard GTK+ options are also supported:\n");
576 // passing true here means that the function can open the default
577 // display while parsing (not really used here anyhow)
578 GOptionGroup
*gtkOpts
= gtk_get_option_group(true);
580 // WARNING: here we access the internals of GOptionGroup:
581 GOptionEntry
*entries
= ((_GOptionGroup
*)gtkOpts
)->entries
;
582 unsigned int n_entries
= ((_GOptionGroup
*)gtkOpts
)->n_entries
;
583 wxArrayString namesOptions
, descOptions
;
585 for ( size_t n
= 0; n
< n_entries
; n
++ )
587 if ( entries
[n
].flags
& G_OPTION_FLAG_HIDDEN
)
590 names
.push_back(wxGetNameFromGtkOptionEntry(&entries
[n
]));
592 const gchar
* const entryDesc
= entries
[n
].description
;
593 desc
.push_back(entryDesc
? wxString(entryDesc
) : _T(""));
596 g_option_group_free (gtkOpts
);
601 #endif // __WXGTK26__