]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
dbd25330 | 2 | // Name: src/gtk/utilsgtk.cpp |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
dfcb1ae0 | 5 | // Id: $Id$ |
6c9a19aa | 6 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
c801d85f | 13 | #include "wx/utils.h" |
df91131c WS |
14 | |
15 | #ifndef WX_PRECOMP | |
16 | #include "wx/string.h" | |
88a7a4e1 | 17 | #include "wx/intl.h" |
e4db172a | 18 | #include "wx/log.h" |
df91131c | 19 | #endif |
c801d85f | 20 | |
46446cc2 | 21 | #include "wx/apptrait.h" |
02847e59 | 22 | |
5336ece4 | 23 | #include "wx/process.h" |
9d0e0377 | 24 | #include "wx/sysopt.h" |
5336ece4 | 25 | |
518b5d2f VZ |
26 | #include "wx/unix/execute.h" |
27 | ||
c2ca375c VZ |
28 | #include "wx/gtk/private/timer.h" |
29 | ||
db9febdf | 30 | #ifdef __WXDEBUG__ |
92696e94 | 31 | #include "wx/gtk/assertdlg_gtk.h" |
db9febdf | 32 | #if wxUSE_STACKWALKER |
db9febdf RR |
33 | #include "wx/stackwalk.h" |
34 | #endif // wxUSE_STACKWALKER | |
35 | #endif // __WXDEBUG__ | |
36 | ||
c801d85f | 37 | #include <stdarg.h> |
c801d85f KB |
38 | #include <string.h> |
39 | #include <sys/stat.h> | |
40 | #include <sys/types.h> | |
dbd25330 | 41 | #include <sys/wait.h> // for WNOHANG |
c801d85f | 42 | #include <unistd.h> |
91b8de8d RR |
43 | |
44 | #include "glib.h" | |
45 | #include "gdk/gdk.h" | |
46 | #include "gtk/gtk.h" | |
91b8de8d | 47 | #include "gdk/gdkx.h" |
88ac883a | 48 | |
27933891 | 49 | #ifdef HAVE_X11_XKBLIB_H |
154c4aa1 VZ |
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. */ | |
88ac883a | 53 | #define explicit __wx_explicit |
ec5d7799 | 54 | |
154c4aa1 | 55 | #include "X11/XKBlib.h" |
ec5d7799 | 56 | |
88ac883a | 57 | #undef explicit |
27933891 | 58 | #endif // HAVE_X11_XKBLIB_H |
dfcb1ae0 | 59 | |
88bbc332 RR |
60 | |
61 | #if wxUSE_DETECT_SM | |
62 | #include "X11/Xlib.h" | |
63 | #include "X11/SM/SMlib.h" | |
64 | #endif | |
65 | ||
d76fe38b RR |
66 | //----------------------------------------------------------------------------- |
67 | // data | |
68 | //----------------------------------------------------------------------------- | |
69 | ||
c2fa61e8 | 70 | extern GtkWidget *wxGetRootWindow(); |
d76fe38b RR |
71 | |
72 | //---------------------------------------------------------------------------- | |
c801d85f | 73 | // misc. |
d76fe38b | 74 | //---------------------------------------------------------------------------- |
189d1ae7 SN |
75 | #ifndef __EMX__ |
76 | // on OS/2, we use the wxBell from wxBase library | |
c801d85f | 77 | |
518b5d2f | 78 | void wxBell() |
c801d85f | 79 | { |
e52f60e6 RR |
80 | gdk_beep(); |
81 | } | |
189d1ae7 | 82 | #endif |
c801d85f | 83 | |
27933891 RR |
84 | /* Don't synthesize KeyUp events holding down a key and producing |
85 | KeyDown events with autorepeat. */ | |
86 | #ifdef HAVE_X11_XKBLIB_H | |
f0492f7d RR |
87 | bool wxSetDetectableAutoRepeat( bool flag ) |
88 | { | |
89 | Bool result; | |
90 | XkbSetDetectableAutoRepeat( GDK_DISPLAY(), flag, &result ); | |
df91131c | 91 | return result; /* true if keyboard hardware supports this mode */ |
27933891 RR |
92 | } |
93 | #else | |
94 | bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag) ) | |
95 | { | |
df91131c | 96 | return false; |
f0492f7d | 97 | } |
27933891 | 98 | #endif |
f0492f7d | 99 | |
66bd83b4 VS |
100 | // Escapes string so that it is valid Pango markup XML string: |
101 | wxString wxEscapeStringForPangoMarkup(const wxString& str) | |
102 | { | |
103 | size_t len = str.length(); | |
104 | wxString out; | |
105 | out.Alloc(len); | |
106 | for (size_t i = 0; i < len; i++) | |
107 | { | |
108 | wxChar c = str[i]; | |
109 | switch (c) | |
110 | { | |
111 | case _T('&'): | |
112 | out << _T("&"); | |
113 | break; | |
114 | case _T('<'): | |
115 | out << _T("<"); | |
116 | break; | |
117 | case _T('>'): | |
118 | out << _T(">"); | |
119 | break; | |
120 | case _T('\''): | |
121 | out << _T("'"); | |
122 | break; | |
123 | case _T('"'): | |
124 | out << _T("""); | |
125 | break; | |
126 | default: | |
127 | out << c; | |
128 | break; | |
129 | } | |
130 | } | |
131 | return out; | |
132 | } | |
66bd83b4 VS |
133 | |
134 | ||
518b5d2f VZ |
135 | // ---------------------------------------------------------------------------- |
136 | // display characterstics | |
137 | // ---------------------------------------------------------------------------- | |
82052aff | 138 | |
d111a89a VZ |
139 | void *wxGetDisplay() |
140 | { | |
27df579a | 141 | return GDK_DISPLAY(); |
d111a89a VZ |
142 | } |
143 | ||
c0392997 RR |
144 | void wxDisplaySize( int *width, int *height ) |
145 | { | |
e52f60e6 RR |
146 | if (width) *width = gdk_screen_width(); |
147 | if (height) *height = gdk_screen_height(); | |
c0392997 RR |
148 | } |
149 | ||
904a68b6 RL |
150 | void wxDisplaySizeMM( int *width, int *height ) |
151 | { | |
152 | if (width) *width = gdk_screen_width_mm(); | |
153 | if (height) *height = gdk_screen_height_mm(); | |
154 | } | |
155 | ||
ec5d7799 RD |
156 | void wxClientDisplayRect(int *x, int *y, int *width, int *height) |
157 | { | |
158 | // This is supposed to return desktop dimensions minus any window | |
159 | // manager panels, menus, taskbars, etc. If there is a way to do that | |
160 | // for this platform please fix this function, otherwise it defaults | |
161 | // to the entire desktop. | |
162 | if (x) *x = 0; | |
163 | if (y) *y = 0; | |
164 | wxDisplaySize(width, height); | |
165 | } | |
166 | ||
6de97a3b RR |
167 | void wxGetMousePosition( int* x, int* y ) |
168 | { | |
bbe0af5b | 169 | gdk_window_get_pointer( (GdkWindow*) NULL, x, y, (GdkModifierType*) NULL ); |
e52f60e6 | 170 | } |
6de97a3b | 171 | |
518b5d2f | 172 | bool wxColourDisplay() |
6de97a3b | 173 | { |
df91131c | 174 | return true; |
6de97a3b RR |
175 | } |
176 | ||
518b5d2f | 177 | int wxDisplayDepth() |
6de97a3b | 178 | { |
22a3bce4 | 179 | return gdk_drawable_get_visual( wxGetRootWindow()->window )->depth; |
6de97a3b RR |
180 | } |
181 | ||
57591e0e JS |
182 | wxWindow* wxFindWindowAtPoint(const wxPoint& pt) |
183 | { | |
184 | return wxGenericFindWindowAtPoint(pt); | |
185 | } | |
186 | ||
5f11fef5 VZ |
187 | #if !wxUSE_UNICODE |
188 | ||
189 | wxCharBuffer wxConvertToGTK(const wxString& s, wxFontEncoding enc) | |
190 | { | |
404ac4c6 VZ |
191 | wxWCharBuffer wbuf; |
192 | if ( enc == wxFONTENCODING_SYSTEM || enc == wxFONTENCODING_DEFAULT ) | |
5f11fef5 | 193 | { |
404ac4c6 | 194 | wbuf = wxConvUI->cMB2WC(s); |
12bc5f9a | 195 | } |
404ac4c6 | 196 | else // another encoding, use generic conversion class |
12bc5f9a | 197 | { |
404ac4c6 VZ |
198 | wbuf = wxCSConv(enc).cMB2WC(s); |
199 | } | |
12bc5f9a | 200 | |
404ac4c6 VZ |
201 | if ( !wbuf && !s.empty() ) |
202 | { | |
203 | // conversion failed, but we still want to show something to the user | |
204 | // even if it's going to be wrong it is better than nothing | |
205 | // | |
206 | // we choose ISO8859-1 here arbitrarily, it's just the most common | |
207 | // encoding probably and, also importantly here, conversion from it | |
208 | // never fails as it's done internally by wxCSConv | |
209 | wbuf = wxCSConv(wxFONTENCODING_ISO8859_1).cMB2WC(s); | |
27dee9ae | 210 | } |
5f11fef5 | 211 | |
404ac4c6 | 212 | return wxConvUTF8.cWC2MB(wbuf); |
5f11fef5 VZ |
213 | } |
214 | ||
30083ad8 VZ |
215 | wxCharBuffer wxConvertFromGTK(const wxString& s, wxFontEncoding enc) |
216 | { | |
217 | // this conversion should never fail as GTK+ always uses UTF-8 internally | |
218 | // so there are no complications here | |
219 | const wxWCharBuffer wbuf(wxConvUTF8.cMB2WC(s)); | |
220 | if ( enc == wxFONTENCODING_SYSTEM ) | |
221 | return wxConvUI->cWC2MB(wbuf); | |
222 | ||
223 | return wxCSConv(enc).cWC2MB(wbuf); | |
224 | } | |
225 | ||
5f11fef5 | 226 | #endif // !wxUSE_UNICODE |
57591e0e | 227 | |
5f4d1820 VZ |
228 | // Returns false if version is certainly greater or equal than major.minor.micro |
229 | // Returns true if version is lower than major.minor.micro OR it cannot be | |
230 | // determined and one should not rely on the availability of pango version | |
231 | // major.minor.micro, nor the non-availability | |
232 | const gchar *wx_pango_version_check (int major, int minor, int micro) | |
233 | { | |
234 | #ifdef PANGO_VERSION_MAJOR | |
235 | if (!gtk_check_version (2,11,0)) | |
236 | { | |
237 | // GTK+ 2.11 requires Pango >= 1.15.3 and pango_version_check | |
238 | // was added in Pango 1.15.2 thus we know for sure the pango lib we're | |
239 | // using has the pango_version_check function: | |
240 | return pango_version_check (major, minor, micro); | |
241 | } | |
242 | ||
243 | return "can't check"; | |
244 | #else // !PANGO_VERSION_MAJOR | |
245 | return "too old headers"; | |
246 | #endif | |
247 | } | |
248 | ||
249 | ||
518b5d2f | 250 | // ---------------------------------------------------------------------------- |
c801d85f | 251 | // subprocess routines |
518b5d2f | 252 | // ---------------------------------------------------------------------------- |
cf447356 | 253 | |
865bb325 VZ |
254 | extern "C" { |
255 | static | |
90350682 VZ |
256 | void GTK_EndProcessDetector(gpointer data, gint source, |
257 | GdkInputCondition WXUNUSED(condition) ) | |
cf447356 | 258 | { |
ab857a4e | 259 | wxEndProcessData *proc_data = (wxEndProcessData *)data; |
dbd25330 VZ |
260 | |
261 | // has the process really terminated? unfortunately GDK (or GLib) seem to | |
262 | // generate G_IO_HUP notification even when it simply tries to read from a | |
263 | // closed fd and hasn't terminated at all | |
264 | int pid = (proc_data->pid > 0) ? proc_data->pid : -(proc_data->pid); | |
447f908a VZ |
265 | int status = 0; |
266 | int rc = waitpid(pid, &status, WNOHANG); | |
267 | ||
268 | if ( rc == 0 ) | |
dbd25330 VZ |
269 | { |
270 | // no, it didn't exit yet, continue waiting | |
271 | return; | |
272 | } | |
273 | ||
447f908a VZ |
274 | // set exit code to -1 if something bad happened |
275 | proc_data->exitcode = rc != -1 && WIFEXITED(status) ? WEXITSTATUS(status) | |
276 | : -1; | |
277 | ||
dbd25330 | 278 | // child exited, end waiting |
ab857a4e | 279 | close(source); |
dbd25330 VZ |
280 | |
281 | // don't call us again! | |
ab857a4e KB |
282 | gdk_input_remove(proc_data->tag); |
283 | ||
ab857a4e | 284 | wxHandleProcessTermination(proc_data); |
3069ac4e | 285 | } |
865bb325 | 286 | } |
cf447356 | 287 | |
518b5d2f | 288 | int wxAddProcessCallback(wxEndProcessData *proc_data, int fd) |
c801d85f | 289 | { |
518b5d2f VZ |
290 | int tag = gdk_input_add(fd, |
291 | GDK_INPUT_READ, | |
292 | GTK_EndProcessDetector, | |
293 | (gpointer)proc_data); | |
c801d85f | 294 | |
518b5d2f | 295 | return tag; |
3069ac4e | 296 | } |
8bb6b2c0 VZ |
297 | |
298 | ||
299 | ||
300 | // ---------------------------------------------------------------------------- | |
301 | // wxPlatformInfo-related | |
302 | // ---------------------------------------------------------------------------- | |
303 | ||
304 | wxPortId wxGUIAppTraits::GetToolkitVersion(int *verMaj, int *verMin) const | |
305 | { | |
306 | if ( verMaj ) | |
307 | *verMaj = gtk_major_version; | |
308 | if ( verMin ) | |
309 | *verMin = gtk_minor_version; | |
310 | ||
311 | return wxPORT_GTK; | |
312 | } | |
88bbc332 | 313 | |
c2ca375c VZ |
314 | wxTimerImpl *wxGUIAppTraits::CreateTimerImpl(wxTimer *timer) |
315 | { | |
316 | return new wxGTKTimerImpl(timer); | |
317 | } | |
318 | ||
88bbc332 RR |
319 | #if wxUSE_DETECT_SM |
320 | static wxString GetSM() | |
321 | { | |
391bf008 | 322 | class Dpy |
cb1bf052 | 323 | { |
391bf008 VZ |
324 | public: |
325 | Dpy() { m_dpy = XOpenDisplay(NULL); } | |
326 | ~Dpy() { if ( m_dpy ) XCloseDisplay(m_dpy); } | |
88bbc332 | 327 | |
391bf008 VZ |
328 | operator Display *() const { return m_dpy; } |
329 | private: | |
330 | Display *m_dpy; | |
331 | } dpy; | |
88bbc332 | 332 | |
391bf008 VZ |
333 | if ( !dpy ) |
334 | return wxEmptyString; | |
335 | ||
dee28fdd | 336 | char smerr[256]; |
391bf008 VZ |
337 | char *client_id; |
338 | SmcConn smc_conn = SmcOpenConnection(NULL, NULL, | |
339 | 999, 999, | |
340 | 0 /* mask */, NULL /* callbacks */, | |
341 | NULL, &client_id, | |
dee28fdd | 342 | WXSIZEOF(smerr), smerr); |
391bf008 VZ |
343 | |
344 | if ( !smc_conn ) | |
dee28fdd VZ |
345 | { |
346 | wxLogWarning(_("Failed to connect to session manager: %s"), smerr); | |
391bf008 | 347 | return wxEmptyString; |
dee28fdd | 348 | } |
391bf008 VZ |
349 | |
350 | char *vendor = SmcVendor(smc_conn); | |
351 | wxString ret = wxString::FromAscii( vendor ); | |
352 | free(vendor); | |
353 | ||
354 | SmcCloseConnection(smc_conn, 0, NULL); | |
355 | free(client_id); | |
356 | ||
357 | return ret; | |
88bbc332 | 358 | } |
391bf008 | 359 | #endif // wxUSE_DETECT_SM |
88bbc332 | 360 | |
db9febdf RR |
361 | |
362 | //----------------------------------------------------------------------------- | |
363 | // wxGUIAppTraits | |
364 | //----------------------------------------------------------------------------- | |
365 | ||
6c4f5ea5 | 366 | #if wxUSE_INTL |
d774f916 VZ |
367 | void wxGUIAppTraits::SetLocale() |
368 | { | |
369 | gtk_set_locale(); | |
cb352236 | 370 | wxUpdateLocaleIsUtf8(); |
d774f916 | 371 | } |
6c4f5ea5 | 372 | #endif |
d774f916 | 373 | |
db9febdf RR |
374 | #ifdef __WXDEBUG__ |
375 | ||
376 | #if wxUSE_STACKWALKER | |
377 | ||
378 | // private helper class | |
379 | class StackDump : public wxStackWalker | |
380 | { | |
381 | public: | |
382 | StackDump(GtkAssertDialog *dlg) { m_dlg=dlg; } | |
383 | ||
384 | protected: | |
385 | virtual void OnStackFrame(const wxStackFrame& frame) | |
386 | { | |
387 | wxString fncname = frame.GetName(); | |
388 | wxString fncargs = fncname; | |
389 | ||
390 | size_t n = fncname.find(wxT('(')); | |
391 | if (n != wxString::npos) | |
392 | { | |
393 | // remove arguments from function name | |
394 | fncname.erase(n); | |
395 | ||
396 | // remove function name and brackets from arguments | |
397 | fncargs = fncargs.substr(n+1, fncargs.length()-n-2); | |
398 | } | |
399 | else | |
400 | fncargs = wxEmptyString; | |
401 | ||
402 | // append this stack frame's info in the dialog | |
403 | if (!frame.GetFileName().empty() || !fncname.empty()) | |
404 | gtk_assert_dialog_append_stack_frame(m_dlg, | |
405 | fncname.mb_str(), | |
406 | fncargs.mb_str(), | |
407 | frame.GetFileName().mb_str(), | |
408 | frame.GetLine()); | |
409 | } | |
410 | ||
411 | private: | |
412 | GtkAssertDialog *m_dlg; | |
413 | }; | |
414 | ||
415 | // the callback functions must be extern "C" to comply with GTK+ declarations | |
416 | extern "C" | |
417 | { | |
418 | void get_stackframe_callback(StackDump *dump) | |
419 | { | |
62710178 VZ |
420 | // skip over frames up to including wxOnAssert() |
421 | dump->ProcessFrames(3); | |
db9febdf RR |
422 | } |
423 | } | |
424 | ||
425 | #endif // wxUSE_STACKWALKER | |
426 | ||
427 | bool wxGUIAppTraits::ShowAssertDialog(const wxString& msg) | |
428 | { | |
429 | // under GTK2 we prefer to use a dialog widget written using directly GTK+; | |
430 | // in fact we cannot use a dialog written using wxWidgets: it would need | |
431 | // the wxWidgets idle processing to work correctly! | |
432 | GtkWidget *dialog = gtk_assert_dialog_new(); | |
433 | gtk_assert_dialog_set_message(GTK_ASSERT_DIALOG(dialog), msg.mb_str()); | |
434 | ||
435 | #if wxUSE_STACKWALKER | |
436 | // don't show more than maxLines or we could get a dialog too tall to be | |
437 | // shown on screen: 20 should be ok everywhere as even with 15 pixel high | |
438 | // characters it is still only 300 pixels... | |
439 | static const int maxLines = 20; | |
440 | ||
441 | // save current stack frame... | |
442 | StackDump dump(GTK_ASSERT_DIALOG(dialog)); | |
443 | dump.SaveStack(maxLines); | |
444 | ||
445 | // ...but process it only if the user needs it | |
446 | gtk_assert_dialog_set_backtrace_callback(GTK_ASSERT_DIALOG(dialog), | |
447 | (GtkAssertDialogStackFrameCallback)get_stackframe_callback, | |
448 | &dump); | |
449 | #endif // wxUSE_STACKWALKER | |
450 | ||
451 | gint result = gtk_dialog_run(GTK_DIALOG (dialog)); | |
452 | bool returnCode = false; | |
453 | switch (result) | |
454 | { | |
455 | case GTK_ASSERT_DIALOG_STOP: | |
456 | wxTrap(); | |
457 | break; | |
458 | case GTK_ASSERT_DIALOG_CONTINUE: | |
459 | // nothing to do | |
460 | break; | |
461 | case GTK_ASSERT_DIALOG_CONTINUE_SUPPRESSING: | |
462 | // no more asserts | |
463 | returnCode = true; | |
464 | break; | |
465 | ||
466 | default: | |
467 | wxFAIL_MSG( _T("unexpected return code from GtkAssertDialog") ); | |
468 | } | |
469 | ||
470 | gtk_widget_destroy(dialog); | |
471 | return returnCode; | |
472 | } | |
473 | ||
474 | #endif // __WXDEBUG__ | |
475 | ||
88bbc332 RR |
476 | wxString wxGUIAppTraits::GetDesktopEnvironment() const |
477 | { | |
9d0e0377 VZ |
478 | wxString de = wxSystemOptions::GetOption(_T("gtk.desktop")); |
479 | if ( de.empty() ) | |
480 | { | |
88bbc332 | 481 | #if wxUSE_DETECT_SM |
9d0e0377 | 482 | static const wxString s_SM = GetSM(); |
391bf008 | 483 | |
9d0e0377 VZ |
484 | if (s_SM == wxT("GnomeSM")) |
485 | de = wxT("GNOME"); | |
486 | else if (s_SM == wxT("KDE")) | |
487 | de = wxT("KDE"); | |
488 | } | |
391bf008 | 489 | #endif // wxUSE_DETECT_SM |
88bbc332 | 490 | |
9d0e0377 | 491 | return de; |
88bbc332 RR |
492 | } |
493 | ||
d3a0a0ee | 494 | #ifdef __WXGTK26__ |
88bbc332 | 495 | |
d3a0a0ee VZ |
496 | // see the hack below in wxCmdLineParser::GetUsageString(). |
497 | // TODO: replace this hack with a g_option_group_get_entries() | |
498 | // call as soon as such function exists | |
499 | struct _GOptionGroup | |
500 | { | |
501 | gchar *name; | |
502 | gchar *description; | |
503 | gchar *help_description; | |
504 | ||
505 | GDestroyNotify destroy_notify; | |
506 | gpointer user_data; | |
507 | ||
508 | GTranslateFunc translate_func; | |
509 | GDestroyNotify translate_notify; | |
510 | gpointer translate_data; | |
511 | ||
512 | GOptionEntry *entries; | |
513 | gint n_entries; | |
514 | ||
515 | GOptionParseFunc pre_parse_func; | |
516 | GOptionParseFunc post_parse_func; | |
517 | GOptionErrorFunc error_func; | |
518 | }; | |
519 | ||
520 | wxString wxGetNameFromGtkOptionEntry(const GOptionEntry *opt) | |
521 | { | |
522 | wxString ret; | |
523 | ||
524 | if (opt->short_name) | |
525 | ret << _T("-") << opt->short_name; | |
526 | if (opt->long_name) | |
527 | { | |
528 | if (!ret.empty()) | |
529 | ret << _T(", "); | |
530 | ret << _T("--") << opt->long_name; | |
531 | ||
532 | if (opt->arg_description) | |
533 | ret << _T("=") << opt->arg_description; | |
534 | } | |
535 | ||
536 | return _T(" ") + ret; | |
537 | } | |
538 | ||
539 | #endif // __WXGTK26__ | |
540 | ||
541 | wxString | |
542 | wxGUIAppTraits::GetStandardCmdLineOptions(wxArrayString& names, | |
543 | wxArrayString& desc) const | |
544 | { | |
545 | wxString usage; | |
546 | ||
547 | #ifdef __WXGTK26__ | |
548 | // check whether GTK version is greater than 2.6 but also lower than 2.12 | |
549 | // because, as we use the undocumented _GOptionGroup struct, we don't want | |
550 | // to run this code with future versions which might change it (2.11 is the | |
551 | // latest one at the time of this writing) | |
552 | if (!gtk_check_version(2,6,0) && | |
553 | gtk_check_version(2,12,0)) | |
554 | { | |
555 | usage << _("The following standard GTK+ options are also supported:\n"); | |
556 | ||
557 | // passing true here means that the function can open the default | |
558 | // display while parsing (not really used here anyhow) | |
559 | GOptionGroup *gtkOpts = gtk_get_option_group(true); | |
560 | ||
561 | // WARNING: here we access the internals of GOptionGroup: | |
562 | GOptionEntry *entries = ((_GOptionGroup*)gtkOpts)->entries; | |
563 | unsigned int n_entries = ((_GOptionGroup*)gtkOpts)->n_entries; | |
564 | wxArrayString namesOptions, descOptions; | |
565 | ||
566 | for ( size_t n = 0; n < n_entries; n++ ) | |
567 | { | |
568 | if ( entries[n].flags & G_OPTION_FLAG_HIDDEN ) | |
569 | continue; // skip | |
570 | ||
571 | names.push_back(wxGetNameFromGtkOptionEntry(&entries[n])); | |
572 | ||
573 | const gchar * const entryDesc = entries[n].description; | |
574 | desc.push_back(entryDesc ? wxString(entryDesc) : _T("")); | |
575 | } | |
576 | ||
577 | g_option_group_free (gtkOpts); | |
578 | } | |
579 | #else | |
580 | wxUnusedVar(names); | |
581 | wxUnusedVar(desc); | |
582 | #endif // __WXGTK26__ | |
583 | ||
584 | return usage; | |
585 | } | |
88bbc332 | 586 |