summaryrefslogtreecommitdiff
path: root/tests/testcombochange.c
Commit message (Collapse)AuthorAgeFilesLines
* Drop most uses of GtkMisc in testsMatthias Clasen2014-05-131-27/+8
| | | | | | | Replace them by GtkWidget h/valign. The only remaining uses are those where a size group is involved; they can't be replaced until GtkLabel stops looking at GtkMisc alignment for size allocation.
* Remove most of the stock API usage from the testsWilliam Jon McCann2013-06-241-1/+1
| | | | With the exception of GtkActions and the tests for stock items.
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* tests: Make test_init() not check for gdk-pixbuf anymoreBenjamin Otte2011-03-291-6/+2
| | | | gdk-pixbuf is system-installed these days.
* Make tests compile without using GtkStyle apiMatthias Clasen2010-12-041-11/+16
|
* gtk: remove "gboolean homogeneous" from gtk_box_new()Michael Natterer2010-10-311-3/+3
| | | | Because it's FALSE in virtually all use cases.
* Use gtk_box_new() instead gtk_[v|h]box_new()Javier Jardón2010-10-301-3/+3
|
* Adapt tests to dialog api changeMatthias Clasen2010-09-021-1/+1
|
* Use accessor functions to access GtkDialogJavier Jardón2010-07-131-2/+5
|
* Some cleanups after the module cache file changeMatthias Clasen2010-05-181-2/+2
| | | | | | | | Bring the various 'run uninstalled' hacks in line with the new way of doing things, and fix make install for module cache files. Patch by Tadej Borovsak.
* Include "config.h" instead of <config.h> Command used: find -nameJohan Dahlin2008-06-221-1/+1
| | | | | | | | | | | | 2008-06-21 Johan Dahlin <jdahlin@async.com.br> * *.[ch]: Include "config.h" instead of <config.h> Command used: find -name \*.[ch]|xargs perl -p -i -e 's/^#include <config.h>/#include "config.h"/g' Rubberstamped by Mitch and Tim svn path=/trunk/; revision=20669
* Replace a lot of idle and timeout calls by the new gdk_threads api.Matthias Clasen2006-12-221-1/+1
| | | | | | | 2006-12-22 Matthias Clasen <mclasen@redhat.com> * *.c: Replace a lot of idle and timeout calls by the new gdk_threads api.
* Add Copyright/License information.Matthias Clasen2005-07-131-0/+20
|
* Fix many sparse warnings.Matthias Clasen2004-10-281-5/+5
|
* Fixes #136082 and #135265, patch by Morten Welinder.Federico Mena Quintero2004-03-061-0/+1
| | | | | | | | | | 2004-03-05 Federico Mena Quintero <federico@ximian.com> Fixes #136082 and #135265, patch by Morten Welinder. * configure.in: Use AC_SYS_LARGEFILE. * */*.c: #include <config.h>
* Add an animation mode, to test how the combobox behaves if the modelMatthias Clasen2004-03-021-2/+37
| | | | | | | | Wed Mar 3 00:28:59 2004 Matthias Clasen <maclas@gmx.de> * tests/testcombochange.c: Add an animation mode, to test how the combobox behaves if the model changes while it is popped up.
* gtk/gtktreestore.c (gtk_tree_store_reorder) Fix up the interpretation ofOwen Taylor2004-03-021-8/+6
| | | | | | | | | | | | | | | | | | Tue Mar 2 16:18:43 2004 Owen Taylor <otaylor@redhat.com> * gtk/gtktreestore.c (gtk_tree_store_reorder) * gtk/gtkliststore.c (gtk_list_store_reorder): Fix up the interpretation of new_order to match what it means elsewhere, document the meaning of new_order. * gtk/gtkcombobox.c (gtk_combo_box_model_rows_reordered): Fix interpretation of new_order. * tests/testcombochange.c (on_reorder): Fix interpretation of new_order. * tests/testcombochange.c (on_reorder): Fix hitting "reorder" with an empty list.
* If the model was empty before, select the first inserted item.Owen Taylor2004-03-021-0/+271
Tue Mar 2 14:38:23 2004 Owen Taylor <otaylor@redhat.com> * gtk/gtkcombobox.c (gtk_combo_box_model_row_inserted): If the model was empty before, select the first inserted item. * gtk/gtkcombobox.c (gtk_combo_box_model_row_deleted): Fix up the logic for the new row to select. * gtk/gtkcombobox.c (gtk_combo_box_class_init): Rename "appearance" property to "appears-as-list". * tests/testcombochange.c tests/Makefile.am: Test case for combos and dynamically changing models.