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/apptrait.h"
22 #include "wx/process.h"
23 #include "wx/sysopt.h"
24 #include "wx/unix/execute.h"
26 #include "wx/gtk/private/timer.h"
27 #include "wx/evtloop.h"
30 #ifdef GDK_WINDOWING_WIN32
31 #include <gdk/gdkwin32.h>
33 #ifdef GDK_WINDOWING_X11
38 #include "wx/gtk/assertdlg_gtk.h"
40 #include "wx/stackwalk.h"
41 #endif // wxUSE_STACKWALKER
42 #endif // wxDEBUG_LEVEL
47 #include <sys/types.h>
48 #include <sys/wait.h> // for WNOHANG
52 #include <X11/SM/SMlib.h>
54 #include "wx/unix/utilsx11.h"
57 //-----------------------------------------------------------------------------
59 //-----------------------------------------------------------------------------
61 extern GtkWidget
*wxGetRootWindow();
63 //----------------------------------------------------------------------------
65 //----------------------------------------------------------------------------
67 // on OS/2, we use the wxBell from wxBase library
75 // ----------------------------------------------------------------------------
76 // display characterstics
77 // ----------------------------------------------------------------------------
84 void wxDisplaySize( int *width
, int *height
)
86 if (width
) *width
= gdk_screen_width();
87 if (height
) *height
= gdk_screen_height();
90 void wxDisplaySizeMM( int *width
, int *height
)
92 if (width
) *width
= gdk_screen_width_mm();
93 if (height
) *height
= gdk_screen_height_mm();
96 void wxGetMousePosition( int* x
, int* y
)
98 gdk_window_get_pointer(gtk_widget_get_root_window(wxGetRootWindow()), x
, y
, NULL
);
101 bool wxColourDisplay()
108 return gtk_widget_get_visual(wxGetRootWindow())->depth
;
111 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
113 return wxGenericFindWindowAtPoint(pt
);
118 WXDLLIMPEXP_CORE wxCharBuffer
119 wxConvertToGTK(const wxString
& s
, wxFontEncoding enc
)
122 if ( enc
== wxFONTENCODING_SYSTEM
|| enc
== wxFONTENCODING_DEFAULT
)
124 wbuf
= wxConvUI
->cMB2WC(s
.c_str());
126 else // another encoding, use generic conversion class
128 wbuf
= wxCSConv(enc
).cMB2WC(s
.c_str());
131 if ( !wbuf
&& !s
.empty() )
133 // conversion failed, but we still want to show something to the user
134 // even if it's going to be wrong it is better than nothing
136 // we choose ISO8859-1 here arbitrarily, it's just the most common
137 // encoding probably and, also importantly here, conversion from it
138 // never fails as it's done internally by wxCSConv
139 wbuf
= wxCSConv(wxFONTENCODING_ISO8859_1
).cMB2WC(s
.c_str());
142 return wxConvUTF8
.cWC2MB(wbuf
);
145 WXDLLIMPEXP_CORE wxCharBuffer
146 wxConvertFromGTK(const wxString
& s
, wxFontEncoding enc
)
148 // this conversion should never fail as GTK+ always uses UTF-8 internally
149 // so there are no complications here
150 const wxWCharBuffer
wbuf(wxConvUTF8
.cMB2WC(s
.c_str()));
151 if ( enc
== wxFONTENCODING_SYSTEM
)
152 return wxConvUI
->cWC2MB(wbuf
);
154 return wxCSConv(enc
).cWC2MB(wbuf
);
157 #endif // !wxUSE_UNICODE
159 // Returns NULL if version is certainly greater or equal than major.minor.micro
160 // Returns string describing the error if version is lower than
161 // major.minor.micro OR it cannot be determined and one should not rely on the
162 // availability of pango version major.minor.micro, nor the non-availability
163 const gchar
*wx_pango_version_check (int major
, int minor
, int micro
)
165 // NOTE: you don't need to use this macro to check for Pango features
166 // added in pango-1.4 or earlier since GTK 2.4 (our minimum requirement
167 // for GTK lib) required pango 1.4...
169 #ifdef PANGO_VERSION_MAJOR
170 if (!gtk_check_version (2,11,0))
172 // GTK+ 2.11 requires Pango >= 1.15.3 and pango_version_check
173 // was added in Pango 1.15.2 thus we know for sure the pango lib we're
174 // using has the pango_version_check function:
175 return pango_version_check (major
, minor
, micro
);
178 return "can't check";
179 #else // !PANGO_VERSION_MAJOR
184 return "too old headers";
189 // ----------------------------------------------------------------------------
190 // subprocess routines
191 // ----------------------------------------------------------------------------
194 static gboolean
EndProcessDetector(GIOChannel
* source
, GIOCondition
, void* data
)
196 wxEndProcessData
* const
197 proc_data
= static_cast<wxEndProcessData
*>(data
);
199 // child exited, end waiting
200 close(g_io_channel_unix_get_fd(source
));
202 wxHandleProcessTermination(proc_data
);
204 // don't call us again!
209 int wxGUIAppTraits::AddProcessCallback(wxEndProcessData
*proc_data
, int fd
)
211 GIOChannel
* channel
= g_io_channel_unix_new(fd
);
212 GIOCondition cond
= GIOCondition(G_IO_IN
| G_IO_HUP
| G_IO_ERR
);
213 unsigned id
= g_io_add_watch(channel
, cond
, EndProcessDetector
, proc_data
);
214 g_io_channel_unref(channel
);
220 // ----------------------------------------------------------------------------
221 // wxPlatformInfo-related
222 // ----------------------------------------------------------------------------
224 wxPortId
wxGUIAppTraits::GetToolkitVersion(int *verMaj
, int *verMin
) const
227 *verMaj
= gtk_major_version
;
229 *verMin
= gtk_minor_version
;
236 wxTimerImpl
*wxGUIAppTraits::CreateTimerImpl(wxTimer
*timer
)
238 return new wxGTKTimerImpl(timer
);
241 #endif // wxUSE_TIMER
244 static wxString
GetSM()
248 return wxEmptyString
;
252 SmcConn smc_conn
= SmcOpenConnection(NULL
, NULL
,
254 0 /* mask */, NULL
/* callbacks */,
256 WXSIZEOF(smerr
), smerr
);
260 wxLogDebug("Failed to connect to session manager: %s", smerr
);
261 return wxEmptyString
;
264 char *vendor
= SmcVendor(smc_conn
);
265 wxString ret
= wxString::FromAscii( vendor
);
268 SmcCloseConnection(smc_conn
, 0, NULL
);
273 #endif // wxUSE_DETECT_SM
276 //-----------------------------------------------------------------------------
278 //-----------------------------------------------------------------------------
280 wxEventLoopBase
*wxGUIAppTraits::CreateEventLoop()
282 return new wxEventLoop();
287 void wxGUIAppTraits::SetLocale()
290 wxUpdateLocaleIsUtf8();
294 #if wxDEBUG_LEVEL && wxUSE_STACKWALKER
296 // private helper class
297 class StackDump
: public wxStackWalker
300 StackDump(GtkAssertDialog
*dlg
) { m_dlg
=dlg
; }
303 virtual void OnStackFrame(const wxStackFrame
& frame
)
305 wxString fncname
= frame
.GetName();
306 wxString fncargs
= fncname
;
308 size_t n
= fncname
.find(wxT('('));
309 if (n
!= wxString::npos
)
311 // remove arguments from function name
314 // remove function name and brackets from arguments
315 fncargs
= fncargs
.substr(n
+1, fncargs
.length()-n
-2);
318 fncargs
= wxEmptyString
;
320 // append this stack frame's info in the dialog
321 if (!frame
.GetFileName().empty() || !fncname
.empty())
322 gtk_assert_dialog_append_stack_frame(m_dlg
,
325 frame
.GetFileName().mb_str(),
330 GtkAssertDialog
*m_dlg
;
333 static void get_stackframe_callback(void* p
)
335 StackDump
* dump
= static_cast<StackDump
*>(p
);
336 // skip over frames up to including wxOnAssert()
337 dump
->ProcessFrames(3);
340 #endif // wxDEBUG_LEVEL && wxUSE_STACKWALKER
342 bool wxGUIAppTraits::ShowAssertDialog(const wxString
& msg
)
345 // we can't show the dialog from another thread
346 if ( wxIsMainThread() )
348 // under GTK2 we prefer to use a dialog widget written using directly
349 // in GTK+ as use a dialog written using wxWidgets would need the
350 // wxWidgets idle processing to work correctly which might not be the
351 // case when assert happens
352 GtkWidget
*dialog
= gtk_assert_dialog_new();
353 gtk_assert_dialog_set_message(GTK_ASSERT_DIALOG(dialog
), msg
.mb_str());
355 #if wxUSE_STACKWALKER
356 // save the current stack ow...
357 StackDump
dump(GTK_ASSERT_DIALOG(dialog
));
358 dump
.SaveStack(100); // showing more than 100 frames is not very useful
360 // ...but process it only if the user needs it
361 gtk_assert_dialog_set_backtrace_callback
363 GTK_ASSERT_DIALOG(dialog
),
364 get_stackframe_callback
,
367 #endif // wxUSE_STACKWALKER
369 gint result
= gtk_dialog_run(GTK_DIALOG (dialog
));
370 bool returnCode
= false;
373 case GTK_ASSERT_DIALOG_STOP
:
376 case GTK_ASSERT_DIALOG_CONTINUE
:
379 case GTK_ASSERT_DIALOG_CONTINUE_SUPPRESSING
:
385 wxFAIL_MSG( wxT("unexpected return code from GtkAssertDialog") );
388 gtk_widget_destroy(dialog
);
391 #endif // wxDEBUG_LEVEL
393 return wxAppTraitsBase::ShowAssertDialog(msg
);
396 wxString
wxGUIAppTraits::GetDesktopEnvironment() const
398 wxString de
= wxSystemOptions::GetOption(wxT("gtk.desktop"));
402 static const wxString s_SM
= GetSM();
404 if (s_SM
== wxT("GnomeSM"))
406 else if (s_SM
== wxT("KDE"))
409 #endif // wxUSE_DETECT_SM
416 // see the hack below in wxCmdLineParser::GetUsageString().
417 // TODO: replace this hack with a g_option_group_get_entries()
418 // call as soon as such function exists;
419 // see http://bugzilla.gnome.org/show_bug.cgi?id=431021 for the relative
425 gchar
*help_description
;
427 GDestroyNotify destroy_notify
;
430 GTranslateFunc translate_func
;
431 GDestroyNotify translate_notify
;
432 gpointer translate_data
;
434 GOptionEntry
*entries
;
437 GOptionParseFunc pre_parse_func
;
438 GOptionParseFunc post_parse_func
;
439 GOptionErrorFunc error_func
;
442 wxString
wxGetNameFromGtkOptionEntry(const GOptionEntry
*opt
)
447 ret
<< wxT("-") << opt
->short_name
;
452 ret
<< wxT("--") << opt
->long_name
;
454 if (opt
->arg_description
)
455 ret
<< wxT("=") << opt
->arg_description
;
458 return wxT(" ") + ret
;
461 #endif // __WXGTK26__
464 wxGUIAppTraits::GetStandardCmdLineOptions(wxArrayString
& names
,
465 wxArrayString
& desc
) const
470 if (!gtk_check_version(2,6,0))
472 // since GTK>=2.6, we can use the glib_check_version() symbol...
474 // check whether GLib version is greater than 2.6 but also lower than 2.31
475 // because, as we use the undocumented _GOptionGroup struct, we don't want
476 // to run this code with future versions which might change it (2.30 is the
477 // latest one at the time of this writing)
478 if (glib_check_version(2,6,0) == NULL
&& glib_check_version(2,31,0))
480 usage
<< _("The following standard GTK+ options are also supported:\n");
482 // passing true here means that the function can open the default
483 // display while parsing (not really used here anyhow)
484 GOptionGroup
*gtkOpts
= gtk_get_option_group(true);
486 // WARNING: here we access the internals of GOptionGroup:
487 GOptionEntry
*entries
= ((_GOptionGroup
*)gtkOpts
)->entries
;
488 unsigned int n_entries
= ((_GOptionGroup
*)gtkOpts
)->n_entries
;
489 wxArrayString namesOptions
, descOptions
;
491 for ( size_t n
= 0; n
< n_entries
; n
++ )
493 if ( entries
[n
].flags
& G_OPTION_FLAG_HIDDEN
)
496 names
.push_back(wxGetNameFromGtkOptionEntry(&entries
[n
]));
498 const gchar
* const entryDesc
= entries
[n
].description
;
499 desc
.push_back(wxString(entryDesc
));
502 g_option_group_free (gtkOpts
);
508 #endif // __WXGTK26__