summaryrefslogtreecommitdiff
path: root/tests/testimage.c
Commit message (Collapse)AuthorAgeFilesLines
* Test size constraintsMatthias Clasen2014-03-141-0/+9
| | | | This adds some min/max size hints to testimage.
* Deprecate GtkIconFactory, GtkIconSet, GtkIconSourceWilliam Jon McCann2013-06-261-1/+1
| | | | | We want to use GtkIconTheme instead. It is worth noting that the parts that remain undeprecated are GtkIconSize and gtk_icon_size_lookup.
* tests: Ignore deprecation warningsBenjamin Otte2013-06-261-0/+2
|
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* Use G_SOURCE_CONTINUE/REMOVEMatthias Clasen2012-01-301-1/+1
| | | | | Now that GLib provides these macros, we should use them to make the code more readable.
* tests: Convert testimage example from GtkTable to GtkGridBenjamin Otte2011-09-281-21/+19
|
* tests: Use accessor functions to access GtkSelectionDataJavier Jardón2010-12-151-1/+1
|
* tests: Connect to draw signal in testimageBenjamin Otte2010-09-261-6/+6
|
* Bug 522084 – GIcon support for GtkIconTheme & GtkImageMatthias Clasen2008-05-291-0/+17
| | | | | | | | | | | | | | 2008-05-27 Matthias Clasen <mclasen@redhat.com> Bug 522084 – GIcon support for GtkIconTheme & GtkImage * gtk/gtkicontheme.[hc]: Add support for GIcon based lookups. * gtk/gtkimage.[hc]: Allow setting an image from a GIcon. * gtk/gtk.symbols: Additions * tests/testimage.c: Add a GIcon test svn path=/trunk/; revision=20236
* call gtk_window_process_updates() so the animation keeps running even ifMichael Natterer2005-11-161-3/+45
| | | | | | | | | | | | | | | | 2005-11-16 Michael Natterer <mitch@imendio.com> * gtk/gtkimage.c (animation_timeout): call gtk_window_process_updates() so the animation keeps running even if the main loop is busy with sources that eat a lot of cpu with high priority. Fixes bug #321444. (gtk_image_new_from_animation): document the fact that the animation will stop running if the main loop is busy with sources that have priorities higher than G_PRIORITY_DEFAULT. * tests/testimage.c: added test case that shows an animation even though a cpu-eating idle function is running.
* Add a new type GTK_IMAGE_ICON_NAME for named icons, update the size andMatthias Clasen2004-10-251-0/+153
2004-10-25 Matthias Clasen <mclasen@redhat.com> * gtk/gtkimage.h: * gtk/gtkimage.c (gtk_image_new_from_icon_name) (gtk_image_set_from_icon_name, gtk_image_get_icon_name) (gtk_image_set_pixel_size, gtk_image_get_pixel_size): Add a new type GTK_IMAGE_ICON_NAME for named icons, update the size and content of stock, icon set and named icon images upon style changes, and allow to set a fixed pixel size for named icon images. (#155688, James Henstridge) * tests/testimage.c: Test application for theming behaviour of different image types and for image dnd.