projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Header correction.
[wxWidgets.git]
/
src
/
gtk1
/
utilsgtk.cpp
diff --git
a/src/gtk1/utilsgtk.cpp
b/src/gtk1/utilsgtk.cpp
index 39bd7eaa5718cee6b37914b715b0d021c8552c6f..56fb435d13e05f7e435139ae4f3e60130af91be8 100644
(file)
--- a/
src/gtk1/utilsgtk.cpp
+++ b/
src/gtk1/utilsgtk.cpp
@@
-1,5
+1,5
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: src/gtk/utilsgtk.cpp
+// Name: src/gtk
1
/utilsgtk.cpp
// Purpose:
// Author: Robert Roebling
// Id: $Id$
// Purpose:
// Author: Robert Roebling
// Id: $Id$
@@
-11,11
+11,14
@@
#include "wx/wxprec.h"
#include "wx/utils.h"
#include "wx/wxprec.h"
#include "wx/utils.h"
-#include "wx/string.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/string.h"
+ #include "wx/intl.h"
+ #include "wx/log.h"
+#endif
#include "wx/apptrait.h"
#include "wx/apptrait.h"
-#include "wx/intl.h"
-#include "wx/log.h"
#include "wx/process.h"
#include "wx/process.h"
@@
-31,9
+34,7
@@
#include "glib.h"
#include "gdk/gdk.h"
#include "gtk/gtk.h"
#include "glib.h"
#include "gdk/gdk.h"
#include "gtk/gtk.h"
-#ifndef __WXGTK20__
#include "gtk/gtkfeatures.h"
#include "gtk/gtkfeatures.h"
-#endif
#include "gdk/gdkx.h"
#ifdef HAVE_X11_XKBLIB_H
#include "gdk/gdkx.h"
#ifdef HAVE_X11_XKBLIB_H
@@
-72,12
+73,12
@@
bool wxSetDetectableAutoRepeat( bool flag )
{
Bool result;
XkbSetDetectableAutoRepeat( GDK_DISPLAY(), flag, &result );
{
Bool result;
XkbSetDetectableAutoRepeat( GDK_DISPLAY(), flag, &result );
- return result; /*
TRUE
if keyboard hardware supports this mode */
+ return result; /*
true
if keyboard hardware supports this mode */
}
#else
bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag) )
{
}
#else
bool wxSetDetectableAutoRepeat( bool WXUNUSED(flag) )
{
- return
FALSE
;
+ return
false
;
}
#endif
}
#endif
@@
-120,7
+121,7
@@
void wxGetMousePosition( int* x, int* y )
bool wxColourDisplay()
{
bool wxColourDisplay()
{
- return
TRUE
;
+ return
true
;
}
int wxDisplayDepth()
}
int wxDisplayDepth()
@@
-131,18
+132,14
@@
int wxDisplayDepth()
wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo()
{
static wxToolkitInfo info;
wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo()
{
static wxToolkitInfo info;
-#ifdef __WXGTK20__
- info.shortName = _T("gtk2");
-#else
info.shortName = _T("gtk");
info.shortName = _T("gtk");
-#endif
info.name = _T("wxGTK");
#ifdef __WXUNIVERSAL__
info.shortName << _T("univ");
info.name << _T("/wxUniversal");
#endif
info.name = _T("wxGTK");
#ifdef __WXUNIVERSAL__
info.shortName << _T("univ");
info.name << _T("/wxUniversal");
#endif
- info.versionMajor =
GTK_MAJOR_VERSION
;
- info.versionMinor =
GTK_MINOR_VERSION
;
+ info.versionMajor =
gtk_major_version
;
+ info.versionMinor =
gtk_minor_version
;
info.os = wxGTK;
return info;
}
info.os = wxGTK;
return info;
}
@@
-157,7
+154,8
@@
wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
// subprocess routines
// ----------------------------------------------------------------------------
// subprocess routines
// ----------------------------------------------------------------------------
-extern "C"
+extern "C" {
+static
void GTK_EndProcessDetector(gpointer data, gint source,
GdkInputCondition WXUNUSED(condition) )
{
void GTK_EndProcessDetector(gpointer data, gint source,
GdkInputCondition WXUNUSED(condition) )
{
@@
-188,6
+186,7
@@
void GTK_EndProcessDetector(gpointer data, gint source,
wxHandleProcessTermination(proc_data);
}
wxHandleProcessTermination(proc_data);
}
+}
int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
{
int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
{
@@
-198,4
+197,3
@@
int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
return tag;
}
return tag;
}
-