2008-07-01 22:57:50 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
2000-03-28 01:24:44 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
2000-03-28 01:24:44 +00:00
|
|
|
* 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
|
2010-12-11 05:14:53 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
2000-03-28 01:24:44 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* 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/>.
|
2000-03-28 01:24:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
2000-03-28 01:24:44 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Uninstalled header defining types and functions internal to GDK */
|
|
|
|
|
2008-02-16 04:33:48 +00:00
|
|
|
#ifndef __GDK_INTERNALS_H__
|
|
|
|
#define __GDK_INTERNALS_H__
|
|
|
|
|
2017-11-17 05:34:04 +00:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2020-08-14 01:47:54 +00:00
|
|
|
#include "gdkenumtypes.h"
|
2017-08-05 13:34:39 +00:00
|
|
|
#include "gdkeventsprivate.h"
|
2019-04-22 01:14:46 +00:00
|
|
|
#include "gdksurfaceprivate.h"
|
2018-07-02 11:39:09 +00:00
|
|
|
#include "gdkdragprivate.h"
|
2020-04-05 15:29:12 +00:00
|
|
|
#include "gdkkeysprivate.h"
|
2020-08-14 01:20:52 +00:00
|
|
|
#include "gdkdeviceprivate.h"
|
|
|
|
#include "gdkseatprivate.h"
|
2020-08-14 01:47:54 +00:00
|
|
|
#include "gdkdisplayprivate.h"
|
|
|
|
#include "gdkcairoprivate.h"
|
|
|
|
#include "gdkglcontextprivate.h"
|
|
|
|
#include "gdkdebug.h"
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
#endif /* __GDK_INTERNALS_H__ */
|