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"
33 #include "wx/gtk/assertdlg_gtk.h"
35 #include "wx/stackwalk.h"
36 #endif // wxUSE_STACKWALKER
37 #endif // wxDEBUG_LEVEL
42 #include <sys/types.h>
43 #include <sys/wait.h> // for WNOHANG
47 #include <X11/SM/SMlib.h>
49 #include "wx/unix/utilsx11.h"
52 //-----------------------------------------------------------------------------
54 //-----------------------------------------------------------------------------
56 extern GtkWidget
*wxGetRootWindow();
58 //----------------------------------------------------------------------------
60 //----------------------------------------------------------------------------
62 // on OS/2, we use the wxBell from wxBase library
70 // ----------------------------------------------------------------------------
71 // display characterstics
72 // ----------------------------------------------------------------------------
79 void wxDisplaySize( int *width
, int *height
)
81 if (width
) *width
= gdk_screen_width();
82 if (height
) *height
= gdk_screen_height();
85 void wxDisplaySizeMM( int *width
, int *height
)
87 if (width
) *width
= gdk_screen_width_mm();
88 if (height
) *height
= gdk_screen_height_mm();
91 void wxGetMousePosition( int* x
, int* y
)
93 gdk_window_get_pointer( NULL
, x
, y
, NULL
);
96 bool wxColourDisplay()
103 return gtk_widget_get_visual(wxGetRootWindow())->depth
;
106 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
108 return wxGenericFindWindowAtPoint(pt
);
113 WXDLLIMPEXP_CORE wxCharBuffer
114 wxConvertToGTK(const wxString
& s
, wxFontEncoding enc
)
117 if ( enc
== wxFONTENCODING_SYSTEM
|| enc
== wxFONTENCODING_DEFAULT
)
119 wbuf
= wxConvUI
->cMB2WC(s
.c_str());
121 else // another encoding, use generic conversion class
123 wbuf
= wxCSConv(enc
).cMB2WC(s
.c_str());
126 if ( !wbuf
&& !s
.empty() )
128 // conversion failed, but we still want to show something to the user
129 // even if it's going to be wrong it is better than nothing
131 // we choose ISO8859-1 here arbitrarily, it's just the most common
132 // encoding probably and, also importantly here, conversion from it
133 // never fails as it's done internally by wxCSConv
134 wbuf
= wxCSConv(wxFONTENCODING_ISO8859_1
).cMB2WC(s
.c_str());
137 return wxConvUTF8
.cWC2MB(wbuf
);
140 WXDLLIMPEXP_CORE wxCharBuffer
141 wxConvertFromGTK(const wxString
& s
, wxFontEncoding enc
)
143 // this conversion should never fail as GTK+ always uses UTF-8 internally
144 // so there are no complications here
145 const wxWCharBuffer
wbuf(wxConvUTF8
.cMB2WC(s
.c_str()));
146 if ( enc
== wxFONTENCODING_SYSTEM
)
147 return wxConvUI
->cWC2MB(wbuf
);
149 return wxCSConv(enc
).cWC2MB(wbuf
);
152 #endif // !wxUSE_UNICODE
154 // Returns NULL if version is certainly greater or equal than major.minor.micro
155 // Returns string describing the error if version is lower than
156 // major.minor.micro OR it cannot be determined and one should not rely on the
157 // availability of pango version major.minor.micro, nor the non-availability
158 const gchar
*wx_pango_version_check (int major
, int minor
, int micro
)
160 // NOTE: you don't need to use this macro to check for Pango features
161 // added in pango-1.4 or earlier since GTK 2.4 (our minimum requirement
162 // for GTK lib) required pango 1.4...
164 #ifdef PANGO_VERSION_MAJOR
165 if (!gtk_check_version (2,11,0))
167 // GTK+ 2.11 requires Pango >= 1.15.3 and pango_version_check
168 // was added in Pango 1.15.2 thus we know for sure the pango lib we're
169 // using has the pango_version_check function:
170 return pango_version_check (major
, minor
, micro
);
173 return "can't check";
174 #else // !PANGO_VERSION_MAJOR
179 return "too old headers";
184 // ----------------------------------------------------------------------------
185 // subprocess routines
186 // ----------------------------------------------------------------------------
189 static gboolean
EndProcessDetector(GIOChannel
* source
, GIOCondition
, void* data
)
191 wxEndProcessData
* const
192 proc_data
= static_cast<wxEndProcessData
*>(data
);
194 // child exited, end waiting
195 close(g_io_channel_unix_get_fd(source
));
197 wxHandleProcessTermination(proc_data
);
199 // don't call us again!
204 int wxGUIAppTraits::AddProcessCallback(wxEndProcessData
*proc_data
, int fd
)
206 return g_io_add_watch(
207 g_io_channel_unix_new(fd
), G_IO_IN
, EndProcessDetector
, proc_data
);
212 // ----------------------------------------------------------------------------
213 // wxPlatformInfo-related
214 // ----------------------------------------------------------------------------
216 wxPortId
wxGUIAppTraits::GetToolkitVersion(int *verMaj
, int *verMin
) const
219 *verMaj
= gtk_major_version
;
221 *verMin
= gtk_minor_version
;
228 wxTimerImpl
*wxGUIAppTraits::CreateTimerImpl(wxTimer
*timer
)
230 return new wxGTKTimerImpl(timer
);
233 #endif // wxUSE_TIMER
236 static wxString
GetSM()
240 return wxEmptyString
;
244 SmcConn smc_conn
= SmcOpenConnection(NULL
, NULL
,
246 0 /* mask */, NULL
/* callbacks */,
248 WXSIZEOF(smerr
), smerr
);
252 wxLogDebug("Failed to connect to session manager: %s", smerr
);
253 return wxEmptyString
;
256 char *vendor
= SmcVendor(smc_conn
);
257 wxString ret
= wxString::FromAscii( vendor
);
260 SmcCloseConnection(smc_conn
, 0, NULL
);
265 #endif // wxUSE_DETECT_SM
268 //-----------------------------------------------------------------------------
270 //-----------------------------------------------------------------------------
272 wxEventLoopBase
*wxGUIAppTraits::CreateEventLoop()
274 return new wxEventLoop();
279 void wxGUIAppTraits::SetLocale()
282 wxUpdateLocaleIsUtf8();
286 #if wxDEBUG_LEVEL && wxUSE_STACKWALKER
288 // private helper class
289 class StackDump
: public wxStackWalker
292 StackDump(GtkAssertDialog
*dlg
) { m_dlg
=dlg
; }
295 virtual void OnStackFrame(const wxStackFrame
& frame
)
297 wxString fncname
= frame
.GetName();
298 wxString fncargs
= fncname
;
300 size_t n
= fncname
.find(wxT('('));
301 if (n
!= wxString::npos
)
303 // remove arguments from function name
306 // remove function name and brackets from arguments
307 fncargs
= fncargs
.substr(n
+1, fncargs
.length()-n
-2);
310 fncargs
= wxEmptyString
;
312 // append this stack frame's info in the dialog
313 if (!frame
.GetFileName().empty() || !fncname
.empty())
314 gtk_assert_dialog_append_stack_frame(m_dlg
,
317 frame
.GetFileName().mb_str(),
322 GtkAssertDialog
*m_dlg
;
325 static void get_stackframe_callback(void* p
)
327 StackDump
* dump
= static_cast<StackDump
*>(p
);
328 // skip over frames up to including wxOnAssert()
329 dump
->ProcessFrames(3);
332 #endif // wxDEBUG_LEVEL && wxUSE_STACKWALKER
334 bool wxGUIAppTraits::ShowAssertDialog(const wxString
& msg
)
337 // we can't show the dialog from another thread
338 if ( wxIsMainThread() )
340 // under GTK2 we prefer to use a dialog widget written using directly
341 // in GTK+ as use a dialog written using wxWidgets would need the
342 // wxWidgets idle processing to work correctly which might not be the
343 // case when assert happens
344 GtkWidget
*dialog
= gtk_assert_dialog_new();
345 gtk_assert_dialog_set_message(GTK_ASSERT_DIALOG(dialog
), msg
.mb_str());
347 #if wxUSE_STACKWALKER
348 // save the current stack ow...
349 StackDump
dump(GTK_ASSERT_DIALOG(dialog
));
350 dump
.SaveStack(100); // showing more than 100 frames is not very useful
352 // ...but process it only if the user needs it
353 gtk_assert_dialog_set_backtrace_callback
355 GTK_ASSERT_DIALOG(dialog
),
356 get_stackframe_callback
,
359 #endif // wxUSE_STACKWALKER
361 gint result
= gtk_dialog_run(GTK_DIALOG (dialog
));
362 bool returnCode
= false;
365 case GTK_ASSERT_DIALOG_STOP
:
368 case GTK_ASSERT_DIALOG_CONTINUE
:
371 case GTK_ASSERT_DIALOG_CONTINUE_SUPPRESSING
:
377 wxFAIL_MSG( wxT("unexpected return code from GtkAssertDialog") );
380 gtk_widget_destroy(dialog
);
383 #endif // wxDEBUG_LEVEL
385 return wxAppTraitsBase::ShowAssertDialog(msg
);
388 wxString
wxGUIAppTraits::GetDesktopEnvironment() const
390 wxString de
= wxSystemOptions::GetOption(wxT("gtk.desktop"));
394 static const wxString s_SM
= GetSM();
396 if (s_SM
== wxT("GnomeSM"))
398 else if (s_SM
== wxT("KDE"))
401 #endif // wxUSE_DETECT_SM
408 // see the hack below in wxCmdLineParser::GetUsageString().
409 // TODO: replace this hack with a g_option_group_get_entries()
410 // call as soon as such function exists;
411 // see http://bugzilla.gnome.org/show_bug.cgi?id=431021 for the relative
417 gchar
*help_description
;
419 GDestroyNotify destroy_notify
;
422 GTranslateFunc translate_func
;
423 GDestroyNotify translate_notify
;
424 gpointer translate_data
;
426 GOptionEntry
*entries
;
429 GOptionParseFunc pre_parse_func
;
430 GOptionParseFunc post_parse_func
;
431 GOptionErrorFunc error_func
;
434 wxString
wxGetNameFromGtkOptionEntry(const GOptionEntry
*opt
)
439 ret
<< wxT("-") << opt
->short_name
;
444 ret
<< wxT("--") << opt
->long_name
;
446 if (opt
->arg_description
)
447 ret
<< wxT("=") << opt
->arg_description
;
450 return wxT(" ") + ret
;
453 #endif // __WXGTK26__
456 wxGUIAppTraits::GetStandardCmdLineOptions(wxArrayString
& names
,
457 wxArrayString
& desc
) const
462 if (!gtk_check_version(2,6,0))
464 // since GTK>=2.6, we can use the glib_check_version() symbol...
466 // check whether GLib version is greater than 2.6 but also lower than 2.19
467 // because, as we use the undocumented _GOptionGroup struct, we don't want
468 // to run this code with future versions which might change it (2.19 is the
469 // latest one at the time of this writing)
470 if (!glib_check_version(2,6,0) && glib_check_version(2,20,0))
472 usage
<< _("The following standard GTK+ options are also supported:\n");
474 // passing true here means that the function can open the default
475 // display while parsing (not really used here anyhow)
476 GOptionGroup
*gtkOpts
= gtk_get_option_group(true);
478 // WARNING: here we access the internals of GOptionGroup:
479 GOptionEntry
*entries
= ((_GOptionGroup
*)gtkOpts
)->entries
;
480 unsigned int n_entries
= ((_GOptionGroup
*)gtkOpts
)->n_entries
;
481 wxArrayString namesOptions
, descOptions
;
483 for ( size_t n
= 0; n
< n_entries
; n
++ )
485 if ( entries
[n
].flags
& G_OPTION_FLAG_HIDDEN
)
488 names
.push_back(wxGetNameFromGtkOptionEntry(&entries
[n
]));
490 const gchar
* const entryDesc
= entries
[n
].description
;
491 desc
.push_back(wxString(entryDesc
));
494 g_option_group_free (gtkOpts
);
500 #endif // __WXGTK26__