]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/utilsgtk.cpp
remove unused variable
[wxWidgets.git] / src / gtk / utilsgtk.cpp
CommitLineData
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"
5336ece4 22#include "wx/process.h"
9d0e0377 23#include "wx/sysopt.h"
518b5d2f
VZ
24#include "wx/unix/execute.h"
25
c2ca375c 26#include "wx/gtk/private/timer.h"
b46b1d59 27#include "wx/evtloop.h"
c2ca375c 28
a481bbc3 29#include <gtk/gtk.h>
3b81515c
VZ
30#ifdef GDK_WINDOWING_WIN32
31#include <gdk/gdkwin32.h>
32#endif
33#ifdef GDK_WINDOWING_X11
a481bbc3 34#include <gdk/gdkx.h>
3b81515c 35#endif
a481bbc3 36
4b6a582b 37#if wxDEBUG_LEVEL
92696e94 38 #include "wx/gtk/assertdlg_gtk.h"
db9febdf 39 #if wxUSE_STACKWALKER
db9febdf
RR
40 #include "wx/stackwalk.h"
41 #endif // wxUSE_STACKWALKER
4b6a582b 42#endif // wxDEBUG_LEVEL
db9febdf 43
c801d85f 44#include <stdarg.h>
c801d85f
KB
45#include <string.h>
46#include <sys/stat.h>
47#include <sys/types.h>
f04f570f 48#ifdef __UNIX__
c801d85f 49#include <unistd.h>
f04f570f 50#endif
91b8de8d 51
88bbc332 52#if wxUSE_DETECT_SM
dc771347 53 #include <X11/SM/SMlib.h>
acdc8633
VZ
54
55 #include "wx/unix/utilsx11.h"
88bbc332
RR
56#endif
57
d76fe38b
RR
58//-----------------------------------------------------------------------------
59// data
60//-----------------------------------------------------------------------------
61
c2fa61e8 62extern GtkWidget *wxGetRootWindow();
d76fe38b
RR
63
64//----------------------------------------------------------------------------
c801d85f 65// misc.
d76fe38b 66//----------------------------------------------------------------------------
189d1ae7
SN
67#ifndef __EMX__
68// on OS/2, we use the wxBell from wxBase library
c801d85f 69
518b5d2f 70void wxBell()
c801d85f 71{
e52f60e6
RR
72 gdk_beep();
73}
189d1ae7 74#endif
c801d85f 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{
ef26a5c4
JS
87 if (width) *width = gdk_screen_width();
88 if (height) *height = gdk_screen_height();
c0392997
RR
89}
90
904a68b6
RL
91void wxDisplaySizeMM( int *width, int *height )
92{
93 if (width) *width = gdk_screen_width_mm();
94 if (height) *height = gdk_screen_height_mm();
95}
96
6de97a3b
RR
97void wxGetMousePosition( int* x, int* y )
98{
803a1b94 99 gdk_window_get_pointer(gtk_widget_get_root_window(wxGetRootWindow()), x, y, NULL);
e52f60e6 100}
6de97a3b 101
518b5d2f 102bool wxColourDisplay()
6de97a3b 103{
df91131c 104 return true;
6de97a3b
RR
105}
106
518b5d2f 107int wxDisplayDepth()
6de97a3b 108{
385e8575 109 return gtk_widget_get_visual(wxGetRootWindow())->depth;
6de97a3b
RR
110}
111
57591e0e
JS
112wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
113{
114 return wxGenericFindWindowAtPoint(pt);
115}
116
5f11fef5
VZ
117#if !wxUSE_UNICODE
118
afb6a92f
VS
119WXDLLIMPEXP_CORE wxCharBuffer
120wxConvertToGTK(const wxString& s, wxFontEncoding enc)
5f11fef5 121{
404ac4c6
VZ
122 wxWCharBuffer wbuf;
123 if ( enc == wxFONTENCODING_SYSTEM || enc == wxFONTENCODING_DEFAULT )
5f11fef5 124 {
de004174 125 wbuf = wxConvUI->cMB2WC(s.c_str());
12bc5f9a 126 }
404ac4c6 127 else // another encoding, use generic conversion class
12bc5f9a 128 {
de004174 129 wbuf = wxCSConv(enc).cMB2WC(s.c_str());
404ac4c6 130 }
12bc5f9a 131
404ac4c6
VZ
132 if ( !wbuf && !s.empty() )
133 {
134 // conversion failed, but we still want to show something to the user
135 // even if it's going to be wrong it is better than nothing
136 //
137 // we choose ISO8859-1 here arbitrarily, it's just the most common
138 // encoding probably and, also importantly here, conversion from it
139 // never fails as it's done internally by wxCSConv
de004174 140 wbuf = wxCSConv(wxFONTENCODING_ISO8859_1).cMB2WC(s.c_str());
27dee9ae 141 }
5f11fef5 142
404ac4c6 143 return wxConvUTF8.cWC2MB(wbuf);
5f11fef5
VZ
144}
145
afb6a92f
VS
146WXDLLIMPEXP_CORE wxCharBuffer
147wxConvertFromGTK(const wxString& s, wxFontEncoding enc)
30083ad8
VZ
148{
149 // this conversion should never fail as GTK+ always uses UTF-8 internally
150 // so there are no complications here
de004174 151 const wxWCharBuffer wbuf(wxConvUTF8.cMB2WC(s.c_str()));
30083ad8
VZ
152 if ( enc == wxFONTENCODING_SYSTEM )
153 return wxConvUI->cWC2MB(wbuf);
154
155 return wxCSConv(enc).cWC2MB(wbuf);
156}
157
5f11fef5 158#endif // !wxUSE_UNICODE
57591e0e 159
573a2a4c
VS
160// Returns NULL if version is certainly greater or equal than major.minor.micro
161// Returns string describing the error if version is lower than
162// major.minor.micro OR it cannot be determined and one should not rely on the
163// availability of pango version major.minor.micro, nor the non-availability
5f4d1820
VZ
164const gchar *wx_pango_version_check (int major, int minor, int micro)
165{
b5791cc7
FM
166 // NOTE: you don't need to use this macro to check for Pango features
167 // added in pango-1.4 or earlier since GTK 2.4 (our minimum requirement
168 // for GTK lib) required pango 1.4...
03647350 169
5f4d1820
VZ
170#ifdef PANGO_VERSION_MAJOR
171 if (!gtk_check_version (2,11,0))
172 {
173 // GTK+ 2.11 requires Pango >= 1.15.3 and pango_version_check
174 // was added in Pango 1.15.2 thus we know for sure the pango lib we're
175 // using has the pango_version_check function:
176 return pango_version_check (major, minor, micro);
177 }
178
179 return "can't check";
180#else // !PANGO_VERSION_MAJOR
e4161a2a
VZ
181 wxUnusedVar(major);
182 wxUnusedVar(minor);
183 wxUnusedVar(micro);
184
5f4d1820
VZ
185 return "too old headers";
186#endif
187}
188
189
518b5d2f 190// ----------------------------------------------------------------------------
c801d85f 191// subprocess routines
518b5d2f 192// ----------------------------------------------------------------------------
cf447356 193
865bb325 194extern "C" {
385e8575 195static gboolean EndProcessDetector(GIOChannel* source, GIOCondition, void* data)
cf447356 196{
b827d647 197 wxEndProcessData * const
5c33522f 198 proc_data = static_cast<wxEndProcessData *>(data);
dbd25330 199
b827d647 200 // child exited, end waiting
385e8575 201 close(g_io_channel_unix_get_fd(source));
ab857a4e 202
b827d647 203 wxHandleProcessTermination(proc_data);
385e8575
PC
204
205 // don't call us again!
206 return false;
3069ac4e 207}
865bb325 208}
cf447356 209
1d043598 210int wxGUIAppTraits::AddProcessCallback(wxEndProcessData *proc_data, int fd)
c801d85f 211{
753cba1a
PC
212 GIOChannel* channel = g_io_channel_unix_new(fd);
213 GIOCondition cond = GIOCondition(G_IO_IN | G_IO_HUP | G_IO_ERR);
214 unsigned id = g_io_add_watch(channel, cond, EndProcessDetector, proc_data);
215 g_io_channel_unref(channel);
216 return int(id);
3069ac4e 217}
8bb6b2c0
VZ
218
219
220
221// ----------------------------------------------------------------------------
222// wxPlatformInfo-related
223// ----------------------------------------------------------------------------
224
225wxPortId wxGUIAppTraits::GetToolkitVersion(int *verMaj, int *verMin) const
226{
227 if ( verMaj )
228 *verMaj = gtk_major_version;
229 if ( verMin )
230 *verMin = gtk_minor_version;
231
232 return wxPORT_GTK;
233}
88bbc332 234
3c029873
VZ
235#if wxUSE_TIMER
236
c2ca375c
VZ
237wxTimerImpl *wxGUIAppTraits::CreateTimerImpl(wxTimer *timer)
238{
239 return new wxGTKTimerImpl(timer);
240}
241
3c029873
VZ
242#endif // wxUSE_TIMER
243
88bbc332
RR
244#if wxUSE_DETECT_SM
245static wxString GetSM()
246{
acdc8633 247 wxX11Display dpy;
391bf008
VZ
248 if ( !dpy )
249 return wxEmptyString;
250
dee28fdd 251 char smerr[256];
391bf008
VZ
252 char *client_id;
253 SmcConn smc_conn = SmcOpenConnection(NULL, NULL,
254 999, 999,
255 0 /* mask */, NULL /* callbacks */,
256 NULL, &client_id,
dee28fdd 257 WXSIZEOF(smerr), smerr);
391bf008
VZ
258
259 if ( !smc_conn )
dee28fdd 260 {
366721d7 261 wxLogDebug("Failed to connect to session manager: %s", smerr);
391bf008 262 return wxEmptyString;
dee28fdd 263 }
391bf008
VZ
264
265 char *vendor = SmcVendor(smc_conn);
266 wxString ret = wxString::FromAscii( vendor );
267 free(vendor);
268
269 SmcCloseConnection(smc_conn, 0, NULL);
270 free(client_id);
271
272 return ret;
88bbc332 273}
391bf008 274#endif // wxUSE_DETECT_SM
88bbc332 275
db9febdf
RR
276
277//-----------------------------------------------------------------------------
278// wxGUIAppTraits
279//-----------------------------------------------------------------------------
280
2ddff00c 281wxEventLoopBase *wxGUIAppTraits::CreateEventLoop()
b46b1d59
VZ
282{
283 return new wxEventLoop();
284}
285
286
6c4f5ea5 287#if wxUSE_INTL
d774f916
VZ
288void wxGUIAppTraits::SetLocale()
289{
290 gtk_set_locale();
cb352236 291 wxUpdateLocaleIsUtf8();
d774f916 292}
6c4f5ea5 293#endif
d774f916 294
4b6a582b 295#if wxDEBUG_LEVEL && wxUSE_STACKWALKER
db9febdf
RR
296
297// private helper class
298class StackDump : public wxStackWalker
299{
300public:
301 StackDump(GtkAssertDialog *dlg) { m_dlg=dlg; }
302
303protected:
304 virtual void OnStackFrame(const wxStackFrame& frame)
305 {
306 wxString fncname = frame.GetName();
db9febdf
RR
307
308 // append this stack frame's info in the dialog
309 if (!frame.GetFileName().empty() || !fncname.empty())
310 gtk_assert_dialog_append_stack_frame(m_dlg,
311 fncname.mb_str(),
db9febdf
RR
312 frame.GetFileName().mb_str(),
313 frame.GetLine());
314 }
315
316private:
317 GtkAssertDialog *m_dlg;
318};
319
a481bbc3 320static void get_stackframe_callback(void* p)
db9febdf 321{
a481bbc3
PC
322 StackDump* dump = static_cast<StackDump*>(p);
323 // skip over frames up to including wxOnAssert()
324 dump->ProcessFrames(3);
db9febdf
RR
325}
326
4b6a582b 327#endif // wxDEBUG_LEVEL && wxUSE_STACKWALKER
db9febdf
RR
328
329bool wxGUIAppTraits::ShowAssertDialog(const wxString& msg)
330{
4b6a582b 331#if wxDEBUG_LEVEL
2d8e0096
VZ
332 // we can't show the dialog from another thread
333 if ( wxIsMainThread() )
334 {
335 // under GTK2 we prefer to use a dialog widget written using directly
336 // in GTK+ as use a dialog written using wxWidgets would need the
337 // wxWidgets idle processing to work correctly which might not be the
338 // case when assert happens
339 GtkWidget *dialog = gtk_assert_dialog_new();
340 gtk_assert_dialog_set_message(GTK_ASSERT_DIALOG(dialog), msg.mb_str());
db9febdf
RR
341
342#if wxUSE_STACKWALKER
61c18e1a 343 // save the current stack ow...
2d8e0096 344 StackDump dump(GTK_ASSERT_DIALOG(dialog));
61c18e1a 345 dump.SaveStack(100); // showing more than 100 frames is not very useful
2d8e0096
VZ
346
347 // ...but process it only if the user needs it
348 gtk_assert_dialog_set_backtrace_callback
349 (
350 GTK_ASSERT_DIALOG(dialog),
a481bbc3 351 get_stackframe_callback,
2d8e0096
VZ
352 &dump
353 );
354#endif // wxUSE_STACKWALKER
355
356 gint result = gtk_dialog_run(GTK_DIALOG (dialog));
357 bool returnCode = false;
358 switch (result)
359 {
360 case GTK_ASSERT_DIALOG_STOP:
361 wxTrap();
362 break;
363 case GTK_ASSERT_DIALOG_CONTINUE:
364 // nothing to do
365 break;
366 case GTK_ASSERT_DIALOG_CONTINUE_SUPPRESSING:
367 // no more asserts
368 returnCode = true;
369 break;
370
371 default:
372 wxFAIL_MSG( wxT("unexpected return code from GtkAssertDialog") );
373 }
374
375 gtk_widget_destroy(dialog);
376 return returnCode;
db9febdf 377 }
2d8e0096 378#endif // wxDEBUG_LEVEL
db9febdf 379
2d8e0096 380 return wxAppTraitsBase::ShowAssertDialog(msg);
db9febdf
RR
381}
382
88bbc332
RR
383wxString wxGUIAppTraits::GetDesktopEnvironment() const
384{
9a83f860 385 wxString de = wxSystemOptions::GetOption(wxT("gtk.desktop"));
3c029873 386#if wxUSE_DETECT_SM
9d0e0377
VZ
387 if ( de.empty() )
388 {
9d0e0377 389 static const wxString s_SM = GetSM();
391bf008 390
9d0e0377
VZ
391 if (s_SM == wxT("GnomeSM"))
392 de = wxT("GNOME");
393 else if (s_SM == wxT("KDE"))
394 de = wxT("KDE");
395 }
391bf008 396#endif // wxUSE_DETECT_SM
88bbc332 397
9d0e0377 398 return de;
88bbc332
RR
399}
400
d3a0a0ee 401#ifdef __WXGTK26__
88bbc332 402
d3a0a0ee
VZ
403// see the hack below in wxCmdLineParser::GetUsageString().
404// TODO: replace this hack with a g_option_group_get_entries()
baa4a967
FM
405// call as soon as such function exists;
406// see http://bugzilla.gnome.org/show_bug.cgi?id=431021 for the relative
407// feature request
d3a0a0ee
VZ
408struct _GOptionGroup
409{
410 gchar *name;
411 gchar *description;
412 gchar *help_description;
413
414 GDestroyNotify destroy_notify;
415 gpointer user_data;
416
417 GTranslateFunc translate_func;
418 GDestroyNotify translate_notify;
419 gpointer translate_data;
420
421 GOptionEntry *entries;
422 gint n_entries;
423
424 GOptionParseFunc pre_parse_func;
425 GOptionParseFunc post_parse_func;
426 GOptionErrorFunc error_func;
427};
428
429wxString wxGetNameFromGtkOptionEntry(const GOptionEntry *opt)
430{
431 wxString ret;
432
433 if (opt->short_name)
9a83f860 434 ret << wxT("-") << opt->short_name;
d3a0a0ee
VZ
435 if (opt->long_name)
436 {
437 if (!ret.empty())
9a83f860
VZ
438 ret << wxT(", ");
439 ret << wxT("--") << opt->long_name;
d3a0a0ee
VZ
440
441 if (opt->arg_description)
9a83f860 442 ret << wxT("=") << opt->arg_description;
d3a0a0ee
VZ
443 }
444
9a83f860 445 return wxT(" ") + ret;
d3a0a0ee
VZ
446}
447
448#endif // __WXGTK26__
449
450wxString
451wxGUIAppTraits::GetStandardCmdLineOptions(wxArrayString& names,
452 wxArrayString& desc) const
453{
454 wxString usage;
455
456#ifdef __WXGTK26__
baa4a967 457 if (!gtk_check_version(2,6,0))
d3a0a0ee 458 {
baa4a967 459 // since GTK>=2.6, we can use the glib_check_version() symbol...
d3a0a0ee 460
8f81f01d 461 // check whether GLib version is greater than 2.6 but also lower than 2.31
baa4a967 462 // because, as we use the undocumented _GOptionGroup struct, we don't want
8f81f01d 463 // to run this code with future versions which might change it (2.30 is the
baa4a967 464 // latest one at the time of this writing)
8f81f01d 465 if (glib_check_version(2,6,0) == NULL && glib_check_version(2,31,0))
baa4a967
FM
466 {
467 usage << _("The following standard GTK+ options are also supported:\n");
d3a0a0ee 468
baa4a967
FM
469 // passing true here means that the function can open the default
470 // display while parsing (not really used here anyhow)
471 GOptionGroup *gtkOpts = gtk_get_option_group(true);
d3a0a0ee 472
baa4a967
FM
473 // WARNING: here we access the internals of GOptionGroup:
474 GOptionEntry *entries = ((_GOptionGroup*)gtkOpts)->entries;
475 unsigned int n_entries = ((_GOptionGroup*)gtkOpts)->n_entries;
476 wxArrayString namesOptions, descOptions;
d3a0a0ee 477
baa4a967
FM
478 for ( size_t n = 0; n < n_entries; n++ )
479 {
480 if ( entries[n].flags & G_OPTION_FLAG_HIDDEN )
481 continue; // skip
d3a0a0ee 482
baa4a967 483 names.push_back(wxGetNameFromGtkOptionEntry(&entries[n]));
d3a0a0ee 484
baa4a967
FM
485 const gchar * const entryDesc = entries[n].description;
486 desc.push_back(wxString(entryDesc));
487 }
488
489 g_option_group_free (gtkOpts);
490 }
d3a0a0ee
VZ
491 }
492#else
493 wxUnusedVar(names);
494 wxUnusedVar(desc);
495#endif // __WXGTK26__
496
497 return usage;
498}
88bbc332 499