summaryrefslogtreecommitdiff
path: root/tests/testexpand.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: Stop using gtk_widget_show/hideMatthias Clasen2022-12-131-2/+2
|
* Replace most remaining uses of container apiMatthias Clasen2020-05-111-10/+10
| | | | These are all on GtkBox or enumerating children.
* Use gtk_window_set_child throughoutMatthias Clasen2020-05-041-2/+2
| | | | | Replace all uses of gtk_container_add on windows by gtk_window_set_child.
* Use gtk_frame_set_child throughoutMatthias Clasen2020-05-041-4/+4
| | | | | Replace all uses of gtk_container_add for frames with gtk_frame_set_child.
* Drop the margin propertyMatthias Clasen2020-02-251-4/+16
| | | | Replace it with margin-start, -end, -top, -bottom throughout.
* window: Remove type argument from gtk_window_new()Benjamin Otte2020-02-141-2/+2
|
* Stop using gtk_main and gtk_main_quitMatthias Clasen2020-02-091-1/+2
| | | | Replace these calls with direct use of GMainContext api.
* Stop using gtk_box_pack_endTimm Bäder2019-01-231-13/+13
| | | | It might soon go away!
* box: Remove fill child propertyTimm Bäder2017-04-251-18/+10
| | | | GtkWidget:halign and GtkWidget:valign are sufficient
* box: Remove expand child propertyTimm Bäder2017-04-251-10/+10
| | | | GtkWidget already has hexpand/vexpand properties.
* Remove gtk_widget_show_allTimm Bäder2017-01-201-2/+2
|
* 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-10/+10
|
* tests: Update testexpand example for deprecationsBenjamin Otte2014-10-121-16/+4
|
* tests: Stop using GtkAlignmentMatthias Clasen2014-05-231-46/+24
| | | | Fix up all other tests to not use GtkAlignment anymore.
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* tests: Convert testexpand from GtkTable to GtkGridBenjamin Otte2011-09-281-32/+26
|
* Make GtkWidget::halign RTL-saveMatthias Clasen2011-03-301-0/+3
| | | | | | | | | | | | This commit makes GTK_ALIGN_START/_END pay attention to the text direction when used in horizontal context. This is how similar parameters in GtkMisc and GtkAlignment work, and is generally expected of GTK+ positioning parameters. And this is new GTK+ 3 api, so it is basically still unused at this point. If explicit right/left turn out to be needed at some point, we can expand the enumeration with new values.
* Silence more compiler warningsMatthias Clasen2011-02-121-10/+0
|
* Make tests compile without using GtkStyle apiMatthias Clasen2010-12-041-10/+10
|
* gtk: remove "gboolean homogeneous" from gtk_box_new()Michael Natterer2010-10-311-3/+3
| | | | Because it's FALSE in virtually all use cases.
* Add a GtkTable testcaseMatthias Clasen2010-10-131-14/+81
|
* add tests/testexpand.c used to test the expand props on GtkWidgetHavoc Pennington2010-10-131-0/+152
There are two colored boxes with toggle buttons nested inside several GtkBox. Toggling these to expand mode should automatically propagate expansion up through the several GtkBox such that resizing the window results in resizing the colored boxes. https://bugzilla.gnome.org/show_bug.cgi?id=628902