From e62e7f76c91f186054fc5714800f6d0b67c89f65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Fri, 18 Dec 2009 01:59:21 +0100 Subject: Move documentation to inline comments: GtkImage https://bugzilla.gnome.org/show_bug.cgi?id=597865 --- docs/reference/gtk/tmpl/gtkimage.sgml | 518 ---------------------------------- gtk/gtkimage.c | 110 ++++++++ gtk/gtkimage.h | 28 ++ 3 files changed, 138 insertions(+), 518 deletions(-) delete mode 100644 docs/reference/gtk/tmpl/gtkimage.sgml diff --git a/docs/reference/gtk/tmpl/gtkimage.sgml b/docs/reference/gtk/tmpl/gtkimage.sgml deleted file mode 100644 index be25e081a..000000000 --- a/docs/reference/gtk/tmpl/gtkimage.sgml +++ /dev/null @@ -1,518 +0,0 @@ - -GtkImage - - -A widget displaying an image - - - -The #GtkImage widget displays an image. Various kinds of object -can be displayed as an image; most typically, you would load a -#GdkPixbuf ("pixel buffer") from a file, and then display that. -There's a convenience function to do this, gtk_image_new_from_file(), -used as follows: - - GtkWidget *image; - image = gtk_image_new_from_file ("myfile.png"); - -If the file isn't loaded successfully, the image will contain a -"broken image" icon similar to that used in many web browsers. -If you want to handle errors in loading the file yourself, -for example by displaying an error message, then load the image with -gdk_pixbuf_new_from_file(), then create the #GtkImage with -gtk_image_new_from_pixbuf(). - - -The image file may contain an animation, if so the #GtkImage will -display an animation (#GdkPixbufAnimation) instead of a static image. - - -#GtkImage is a subclass of #GtkMisc, which implies that you can -align it (center, left, right) and add padding to it, using -#GtkMisc methods. - - -#GtkImage is a "no window" widget (has no #GdkWindow of its own), -so by default does not receive events. If you want to receive events -on the image, such as button clicks, place the image inside a -#GtkEventBox, then connect to the event signals on the event box. - -Handling button press events on a -<structname>GtkImage</structname>. - - static gboolean - button_press_callback (GtkWidget *event_box, - GdkEventButton *event, - gpointer data) - { - g_print ("Event box clicked at coordinates %f,%f\n", - event->x, event->y); - - /* Returning TRUE means we handled the event, so the signal - * emission should be stopped (don't call any further - * callbacks that may be connected). Return FALSE - * to continue invoking callbacks. - */ - return TRUE; - } - - static GtkWidget* - create_image (void) - { - GtkWidget *image; - GtkWidget *event_box; - - image = gtk_image_new_from_file ("myfile.png"); - - event_box = gtk_event_box_new (); - - gtk_container_add (GTK_CONTAINER (event_box), image); - - g_signal_connect (G_OBJECT (event_box), - "button_press_event", - G_CALLBACK (button_press_callback), - image); - - return image; - } - - - - -When handling events on the event box, keep in mind that coordinates -in the image may be different from event box coordinates due to -the alignment and padding settings on the image (see #GtkMisc). -The simplest way to solve this is to set the alignment to 0.0 -(left/top), and set the padding to zero. Then the origin of -the image will be the same as the origin of the event box. - - - -Sometimes an application will want to avoid depending on external data -files, such as image files. GTK+ comes with a program to avoid this, -called gdk-pixbuf-csource. This program -allows you to convert an image into a C variable declaration, which -can then be loaded into a #GdkPixbuf using -gdk_pixbuf_new_from_inline(). - - - - -#GdkPixbuf - - - - - - - -This struct contain private data only and should be accessed by the functions -below. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Describes the image data representation used by a #GtkImage. If you -want to get the image from the widget, you can only get the -currently-stored representation. e.g. if the -gtk_image_get_storage_type() returns #GTK_IMAGE_PIXBUF, then you can -call gtk_image_get_pixbuf() but not gtk_image_get_stock(). For empty -images, you can request any storage type (call any of the "get" -functions), but they will all return %NULL values. - - -@GTK_IMAGE_EMPTY: there is no image displayed by the widget -@GTK_IMAGE_PIXMAP: the widget contains a #GdkPixmap -@GTK_IMAGE_IMAGE: the widget contains a #GdkImage -@GTK_IMAGE_PIXBUF: the widget contains a #GdkPixbuf -@GTK_IMAGE_STOCK: the widget contains a stock icon name (see ) -@GTK_IMAGE_ICON_SET: the widget contains a #GtkIconSet -@GTK_IMAGE_ANIMATION: the widget contains a #GdkPixbufAnimation -@GTK_IMAGE_ICON_NAME: the widget contains a named icon. - This image type was added in GTK+ 2.6 -@GTK_IMAGE_GICON: the widget contains a #GIcon. - This image type was added in GTK+ 2.14 - - - - - - -@image: -@icon_set: -@size: - - - - - - - -@image: -@gdk_image: -@mask: - - - - - - - -@image: -@Returns: - - - - - - - -@image: -@pixmap: -@mask: - - - - - - - -@image: -@stock_id: -@size: - - - - - - - -@image: -@Returns: - - - - - - - -@image: -@icon_name: -@size: - - - - - - - -@image: -@gicon: -@size: - - - - - - - -@image: -@Returns: - - - - - - - -@filename: -@Returns: - - - - - - - -@icon_set: -@size: -@Returns: - - - - - - - -@image: -@mask: -@Returns: - - - - - - - -@pixbuf: -@Returns: - - - - - - - -@pixmap: -@mask: -@Returns: - - - - - - - -@stock_id: -@size: -@Returns: - - - - - - - -@animation: -@Returns: - - - - - - - -@icon_name: -@size: -@Returns: - - - - - - - -@icon: -@size: -@Returns: - - - - - - - -@image: -@filename: - - - - - - - -@image: -@icon_set: -@size: - - - - - - - -@image: -@gdk_image: -@mask: - - - - - - - -@image: -@pixbuf: - - - - - - - -@image: -@pixmap: -@mask: - - - - - - - -@image: -@stock_id: -@size: - - - - - - - -@image: -@animation: - - - - - - - -@image: -@icon_name: -@size: - - - - - - - -@image: -@icon: -@size: - - - - - - - -@image: - - - - - - - -@Returns: the #GtkImage - -@mask: a #GdkBitmap that indicates which parts of the image should be transparent. - - - - -Sets the #GtkImage. - - -@image: a #GtkImage -@val: a #GdkImage -@mask: a #GdkBitmap that indicates which parts of the image should be transparent. - - - - -Gets the #GtkImage. - - -@image: a #GtkImage -@val: return location for a #GdkImage -@mask: a #GdkBitmap that indicates which parts of the image should be transparent. - - - - - - - -@image: -@pixel_size: - - - - - - - -@image: -@Returns: - - diff --git a/gtk/gtkimage.c b/gtk/gtkimage.c index 01e293f0e..bcd0a0afc 100644 --- a/gtk/gtkimage.c +++ b/gtk/gtkimage.c @@ -37,6 +37,96 @@ #include "gtkprivate.h" #include "gtkalias.h" +/** + * SECTION:gtkimage + * @Short_description: A widget displaying an image + * @Title: GtkImage + * @See_also:#GdkPixbuf + * + * The #GtkImage widget displays an image. Various kinds of object + * can be displayed as an image; most typically, you would load a + * #GdkPixbuf ("pixel buffer") from a file, and then display that. + * There's a convenience function to do this, gtk_image_new_from_file(), + * used as follows: + * + * GtkWidget *image; + * image = gtk_image_new_from_file ("myfile.png"); + * + * If the file isn't loaded successfully, the image will contain a + * "broken image" icon similar to that used in many web browsers. + * If you want to handle errors in loading the file yourself, + * for example by displaying an error message, then load the image with + * gdk_pixbuf_new_from_file(), then create the #GtkImage with + * gtk_image_new_from_pixbuf(). + * + * The image file may contain an animation, if so the #GtkImage will + * display an animation (#GdkPixbufAnimation) instead of a static image. + * + * #GtkImage is a subclass of #GtkMisc, which implies that you can + * align it (center, left, right) and add padding to it, using + * #GtkMisc methods. + * + * #GtkImage is a "no window" widget (has no #GdkWindow of its own), + * so by default does not receive events. If you want to receive events + * on the image, such as button clicks, place the image inside a + * #GtkEventBox, then connect to the event signals on the event box. + * + * Handling button press events on a + * <structname>GtkImage</structname>. + * + * static gboolean + * button_press_callback (GtkWidget *event_box, + * GdkEventButton *event, + * gpointer data) + * { + * g_print ("Event box clicked at coordinates %f,%f\n", + * event->x, event->y); + * + * /* Returning TRUE means we handled the event, so the signal + * * emission should be stopped (don't call any further + * * callbacks that may be connected). Return FALSE + * * to continue invoking callbacks. + * */ + * return TRUE; + * } + * + * static GtkWidget* + * create_image (void) + * { + * GtkWidget *image; + * GtkWidget *event_box; + * + * image = gtk_image_new_from_file ("myfile.png"); + * + * event_box = gtk_event_box_new (); + * + * gtk_container_add (GTK_CONTAINER (event_box), image); + * + * g_signal_connect (G_OBJECT (event_box), + * "button_press_event", + * G_CALLBACK (button_press_callback), + * image); + * + * return image; + * } + * + * + * + * When handling events on the event box, keep in mind that coordinates + * in the image may be different from event box coordinates due to + * the alignment and padding settings on the image (see #GtkMisc). + * The simplest way to solve this is to set the alignment to 0.0 + * (left/top), and set the padding to zero. Then the origin of + * the image will be the same as the origin of the event box. + * + * Sometimes an application will want to avoid depending on external data + * files, such as image files. GTK+ comes with a program to avoid this, + * called gdk-pixbuf-csource. This program + * allows you to convert an image into a C variable declaration, which + * can then be loaded into a #GdkPixbuf using + * gdk_pixbuf_new_from_inline(). + */ + typedef struct _GtkImagePrivate GtkImagePrivate; struct _GtkImagePrivate @@ -1431,6 +1521,16 @@ gtk_image_new (void) return g_object_new (GTK_TYPE_IMAGE, NULL); } +/** + * gtk_image_set: + * @image: a #GtkImage + * @val: a #GdkImage + * @mask: a #GdkBitmap that indicates which parts of the image should be transparent. + * + * Sets the #GtkImage. + * + * Deprecated: 2.0: Use gtk_image_set_from_image() instead. + */ void gtk_image_set (GtkImage *image, GdkImage *val, @@ -1441,6 +1541,16 @@ gtk_image_set (GtkImage *image, gtk_image_set_from_image (image, val, mask); } +/** + * gtk_image_get: + * @image: a #GtkImage + * @val: return location for a #GdkImage + * @mask: a #GdkBitmap that indicates which parts of the image should be transparent. + * + * Gets the #GtkImage. + * + * Deprecated: 2.0: Use gtk_image_get_image() instead. + */ void gtk_image_get (GtkImage *image, GdkImage **val, diff --git a/gtk/gtkimage.h b/gtk/gtkimage.h index 8c5e77b21..dd6153c44 100644 --- a/gtk/gtkimage.h +++ b/gtk/gtkimage.h @@ -104,6 +104,28 @@ struct _GtkImageGIconData guint theme_change_id; }; +/** + * GtkImageType: + * @GTK_IMAGE_EMPTY: there is no image displayed by the widget + * @GTK_IMAGE_PIXMAP: the widget contains a #GdkPixmap + * @GTK_IMAGE_IMAGE: the widget contains a #GdkImage + * @GTK_IMAGE_PIXBUF: the widget contains a #GdkPixbuf + * @GTK_IMAGE_STOCK: the widget contains a stock icon name (see ) + * @GTK_IMAGE_ICON_SET: the widget contains a #GtkIconSet + * @GTK_IMAGE_ANIMATION: the widget contains a #GdkPixbufAnimation + * @GTK_IMAGE_ICON_NAME: the widget contains a named icon. + * This image type was added in GTK+ 2.6 + * @GTK_IMAGE_GICON: the widget contains a #GIcon. + * This image type was added in GTK+ 2.14 + * + * Describes the image data representation used by a #GtkImage. If you + * want to get the image from the widget, you can only get the + * currently-stored representation. e.g. if the + * gtk_image_get_storage_type() returns #GTK_IMAGE_PIXBUF, then you can + * call gtk_image_get_pixbuf() but not gtk_image_get_stock(). For empty + * images, you can request any storage type (call any of the "get" + * functions), but they will all return %NULL values. + */ typedef enum { GTK_IMAGE_EMPTY, @@ -117,6 +139,12 @@ typedef enum GTK_IMAGE_GICON } GtkImageType; +/** + * GtkImage: + * + * This struct contain private data only and should be accessed by the functions + * below. + */ struct _GtkImage { GtkMisc misc; -- cgit v1.2.1