2005-11-22 10:03:32 +00:00
|
|
|
/* gdkglobals-quartz.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Imendio AB
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2005-11-22 10:03:32 +00:00
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2005-11-22 10:03:32 +00:00
|
|
|
#include "gdktypes.h"
|
|
|
|
#include "gdkprivate.h"
|
2011-08-13 22:29:11 +00:00
|
|
|
#include "gdkquartz.h"
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
GdkDisplay *_gdk_display = NULL;
|
|
|
|
GdkScreen *_gdk_screen = NULL;
|
|
|
|
GdkWindow *_gdk_root = NULL;
|
2011-08-13 22:29:11 +00:00
|
|
|
|
|
|
|
GdkOSXVersion
|
|
|
|
gdk_quartz_osx_version (void)
|
|
|
|
{
|
2012-11-29 13:51:59 +00:00
|
|
|
static gint32 minor = GDK_OSX_UNSUPPORTED;
|
2012-11-29 13:44:04 +00:00
|
|
|
|
2012-11-29 13:51:59 +00:00
|
|
|
if (minor == GDK_OSX_UNSUPPORTED)
|
2012-11-29 13:44:04 +00:00
|
|
|
{
|
|
|
|
OSErr err = Gestalt (gestaltSystemVersionMinor, (SInt32*)&minor);
|
|
|
|
|
|
|
|
g_return_val_if_fail (err == noErr, GDK_OSX_UNSUPPORTED);
|
|
|
|
}
|
2011-08-13 22:29:11 +00:00
|
|
|
|
|
|
|
if (minor < GDK_OSX_MIN)
|
2011-11-06 08:34:39 +00:00
|
|
|
return GDK_OSX_UNSUPPORTED;
|
2011-08-13 22:29:11 +00:00
|
|
|
else if (minor > GDK_OSX_CURRENT)
|
2011-11-06 08:34:39 +00:00
|
|
|
return GDK_OSX_NEW;
|
2011-08-13 22:29:11 +00:00
|
|
|
else
|
2011-11-06 08:34:39 +00:00
|
|
|
return minor;
|
2011-08-13 22:29:11 +00:00
|
|
|
}
|