summaryrefslogtreecommitdiff
path: root/tests/testspinbutton.c
Commit message (Collapse)AuthorAgeFilesLines
* Replace "gint" with "int"Benjamin Otte2020-07-251-1/+1
|
* Replace most remaining uses of container apiMatthias Clasen2020-05-111-3/+3
| | | | These are all on GtkBox or enumerating children.
* Use gtk_window_set_child throughoutMatthias Clasen2020-05-041-1/+1
| | | | | Replace all uses of gtk_container_add on windows by gtk_window_set_child.
* window: Remove type argument from gtk_window_new()Benjamin Otte2020-02-141-1/+1
|
* Stop using gtk_main and gtk_main_quitMatthias Clasen2020-02-091-2/+8
| | | | Replace these calls with direct use of GMainContext api.
* Stop using gtk_box_pack_endTimm Bäder2019-01-231-1/+1
| | | | It might soon go away!
* testspinbutton: Add button to toggle wrap on SpinsDaniel Boles2018-03-141-1/+6
| | | | | | | I found myself wanting to test this for something else, so let's test it. It revealed a bug immediately! https://gitlab.gnome.org/GNOME/gtk/issues/88
* testspinbutton: Orient box orthogonally to SpinsDaniel Boles2018-03-141-1/+1
| | | | This makes better use of space.
* Replace all remaining uses of delete-eventMatthias Clasen2018-01-161-4/+2
|
* box: Remove fill child propertyTimm Bäder2017-04-251-1/+1
| | | | GtkWidget:halign and GtkWidget:valign are sufficient
* box: Remove expand child propertyTimm Bäder2017-04-251-1/+1
| | | | GtkWidget already has hexpand/vexpand properties.
* Remove gtk_widget_show_allTimm Bäder2017-01-201-1/+1
|
* Update callersMatthias Clasen2017-01-191-1/+1
| | | | Adapt all our tests and examples to the new initialization api.
* box: Remove 'padding' child propertyTimm Bäder2016-10-161-2/+2
|
* Make spinbutton orientablePaolo Borelli2012-09-031-27/+46
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=683168
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* gtk: remove "gboolean homogeneous" from gtk_box_new()Michael Natterer2010-11-021-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-2/+2
|
* Remove unneded castsJavier Jardón2010-09-291-7/+6
| | | | | | As gtk_adjustment_new() returns a GtkAdjustment* now https://bugzilla.gnome.org/show_bug.cgi?id=630731
* 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
* Add Copyright/License information.Matthias Clasen2005-07-131-0/+19
|
* Add new testspinbutton.cMorten Welinder2004-03-121-0/+44
2004-03-12 Morten Welinder <terra@gnome.org> * tests/Makefile.am: Add new testspinbutton.c