1997-11-24 22:37:52 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library 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
|
1998-02-28 14:35:55 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
1997-11-24 22:37:52 +00:00
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Modified by the GTK+ Team and others 1997-1999. See the AUTHORS
|
|
|
|
* 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/.
|
|
|
|
*/
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
#ifndef __GDK_TYPES_H__
|
|
|
|
#define __GDK_TYPES_H__
|
|
|
|
|
|
|
|
/* GDK uses "glib". (And so does GTK).
|
|
|
|
*/
|
|
|
|
#include <glib.h>
|
|
|
|
|
1999-10-04 19:03:05 +00:00
|
|
|
#ifdef G_OS_WIN32
|
Merge in Win32 version: Define macro GDKVAR for declaring gdk variables
* gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
declaring gdk variables exported/imported from the DLL. New image
type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
GDK_DRAG_PROTO_OLE2.
* gdk/gdk.h: Merge in Win32 version: Two new functions,
gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
declared only for the Win32 version, but could be in the X11
version as well. (Needed for a Xlib-less gdk_imlib.)
gdk_color_hash should have only one parameter. Declare
gdk_threads_mutex with GDKVAR.
* gdk/gdkcolor.c (gdk_color_hash): As a hash function should have
just one parameter.
* gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
per pixel, not bits.
* gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
Fetch bpp (which means bits-per-pixel here) from another place on
Win32. Accept also depth==32 (which we might get on Win32) with
bpp==32.
* gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
in the backend-dependent directory, not in the common gdk
directory.
* gtk/testgtk.c: Ditto. Also, don't use ../gdk patchs to gdk
headers.
1999-03-17 23:02:10 +00:00
|
|
|
# ifdef GDK_COMPILATION
|
|
|
|
# define GDKVAR __declspec(dllexport)
|
|
|
|
# else
|
|
|
|
# define GDKVAR extern __declspec(dllimport)
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define GDKVAR extern
|
|
|
|
#endif
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1999-03-13 16:40:24 +00:00
|
|
|
/* The system specific file gdkconfig.h contains such configuration
|
|
|
|
* settings that are needed not only when compiling GDK (or GTK)
|
|
|
|
* itself, but also occasionally when compiling programs that use GDK
|
|
|
|
* (or GTK). One such setting is what windowing API backend is in use.
|
|
|
|
*/
|
|
|
|
#include <gdkconfig.h>
|
|
|
|
|
|
|
|
/* some common magic values */
|
1998-02-28 14:35:55 +00:00
|
|
|
#define GDK_NONE 0L
|
1997-11-24 22:37:52 +00:00
|
|
|
#define GDK_CURRENT_TIME 0L
|
|
|
|
#define GDK_PARENT_RELATIVE 1L
|
|
|
|
|
|
|
|
/* special deviceid for core pointer events */
|
|
|
|
#define GDK_CORE_POINTER 0xfedc
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
|
|
/* Type definitions for the basic structures.
|
|
|
|
*/
|
1998-02-28 14:35:55 +00:00
|
|
|
typedef struct _GdkPoint GdkPoint;
|
|
|
|
typedef struct _GdkRectangle GdkRectangle;
|
|
|
|
typedef struct _GdkSegment GdkSegment;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
typedef guint32 GdkWChar;
|
1999-10-01 23:18:30 +00:00
|
|
|
typedef gulong GdkAtom;
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
|
1999-10-01 23:18:30 +00:00
|
|
|
/* Forward declarations of commonly used types
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1999-10-01 23:18:30 +00:00
|
|
|
typedef struct _GdkColor GdkColor;
|
|
|
|
typedef struct _GdkColormap GdkColormap;
|
|
|
|
typedef struct _GdkCursor GdkCursor;
|
|
|
|
typedef struct _GdkFont GdkFont;
|
|
|
|
typedef struct _GdkGC GdkGC;
|
|
|
|
typedef struct _GdkImage GdkImage;
|
|
|
|
typedef struct _GdkRegion GdkRegion;
|
|
|
|
typedef struct _GdkVisual GdkVisual;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1999-10-03 22:12:41 +00:00
|
|
|
typedef struct _GdkDrawable GdkDrawable;
|
|
|
|
typedef struct _GdkDrawable GdkBitmap;
|
|
|
|
typedef struct _GdkDrawable GdkPixmap;
|
|
|
|
typedef struct _GdkDrawable GdkWindow;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-05-27 02:01:40 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
1999-10-01 23:18:30 +00:00
|
|
|
GDK_LSB_FIRST,
|
|
|
|
GDK_MSB_FIRST
|
|
|
|
} GdkByteOrder;
|
1998-05-27 02:01:40 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
/* Types of modifiers.
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
1998-06-15 21:27:17 +00:00
|
|
|
GDK_SHIFT_MASK = 1 << 0,
|
|
|
|
GDK_LOCK_MASK = 1 << 1,
|
|
|
|
GDK_CONTROL_MASK = 1 << 2,
|
|
|
|
GDK_MOD1_MASK = 1 << 3,
|
|
|
|
GDK_MOD2_MASK = 1 << 4,
|
|
|
|
GDK_MOD3_MASK = 1 << 5,
|
|
|
|
GDK_MOD4_MASK = 1 << 6,
|
|
|
|
GDK_MOD5_MASK = 1 << 7,
|
|
|
|
GDK_BUTTON1_MASK = 1 << 8,
|
|
|
|
GDK_BUTTON2_MASK = 1 << 9,
|
|
|
|
GDK_BUTTON3_MASK = 1 << 10,
|
|
|
|
GDK_BUTTON4_MASK = 1 << 11,
|
|
|
|
GDK_BUTTON5_MASK = 1 << 12,
|
1998-06-30 08:02:53 +00:00
|
|
|
GDK_RELEASE_MASK = 1 << 13,
|
|
|
|
GDK_MODIFIER_MASK = 0x3fff
|
1998-06-15 21:27:17 +00:00
|
|
|
} GdkModifierType;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
1998-06-15 21:27:17 +00:00
|
|
|
GDK_INPUT_READ = 1 << 0,
|
|
|
|
GDK_INPUT_WRITE = 1 << 1,
|
|
|
|
GDK_INPUT_EXCEPTION = 1 << 2
|
|
|
|
} GdkInputCondition;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
1998-06-15 21:27:17 +00:00
|
|
|
GDK_OK = 0,
|
|
|
|
GDK_ERROR = -1,
|
|
|
|
GDK_ERROR_PARAM = -2,
|
|
|
|
GDK_ERROR_FILE = -3,
|
|
|
|
GDK_ERROR_MEM = -4
|
|
|
|
} GdkStatus;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-02-28 14:35:55 +00:00
|
|
|
typedef void (*GdkInputFunction) (gpointer data,
|
|
|
|
gint source,
|
1997-11-24 22:37:52 +00:00
|
|
|
GdkInputCondition condition);
|
|
|
|
|
1997-12-18 02:17:14 +00:00
|
|
|
typedef void (*GdkDestroyNotify) (gpointer data);
|
1997-12-17 00:14:36 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
struct _GdkPoint
|
|
|
|
{
|
|
|
|
gint16 x;
|
|
|
|
gint16 y;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GdkRectangle
|
|
|
|
{
|
|
|
|
gint16 x;
|
|
|
|
gint16 y;
|
|
|
|
guint16 width;
|
|
|
|
guint16 height;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GdkSegment
|
|
|
|
{
|
|
|
|
gint16 x1;
|
|
|
|
gint16 y1;
|
|
|
|
gint16 x2;
|
|
|
|
gint16 y2;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GDK_TYPES_H__ */
|