]> Pileus Git - ~andy/gtk/blobdiff - gdk/gdkcursor.h
Updated Belarusian Latin translation.
[~andy/gtk] / gdk / gdkcursor.h
index b3e37da260c662d9642dd2a492ed2352fb9c6fce..7eaa9cae6baa8f784b9e5af66fab7a8f120f699b 100644 (file)
@@ -1,12 +1,36 @@
+/* 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 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
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+/*
+ * Modified by the GTK+ Team and others 1997-2000.  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/. 
+ */
+
 #ifndef __GDK_CURSOR_H__
 #define __GDK_CURSOR_H__
 
 #include <gdk/gdktypes.h>
 #include <gdk-pixbuf/gdk-pixbuf.h>
 
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
+G_BEGIN_DECLS
 
 #define GDK_TYPE_CURSOR (gdk_cursor_get_type ())
 
@@ -98,6 +122,7 @@ typedef enum
 struct _GdkCursor
 {
   GdkCursorType type;
+  /*< private >*/
   guint ref_count;
 };
 
@@ -124,13 +149,14 @@ GdkCursor* gdk_cursor_new_from_pixbuf      (GdkDisplay      *display,
 GdkDisplay* gdk_cursor_get_display      (GdkCursor       *cursor);
 GdkCursor*  gdk_cursor_ref               (GdkCursor       *cursor);
 void        gdk_cursor_unref             (GdkCursor       *cursor);
+GdkCursor*  gdk_cursor_new_from_name    (GdkDisplay      *display,
+                                         const gchar     *name);
+GdkPixbuf*  gdk_cursor_get_image         (GdkCursor       *cursor);
 
 #ifndef GDK_DISABLE_DEPRECATED
 #define gdk_cursor_destroy             gdk_cursor_unref
 #endif /* GDK_DISABLE_DEPRECATED */
 
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
+G_END_DECLS
 
 #endif /* __GDK_CURSOR_H__ */