Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace most remaining uses of container api | Matthias Clasen | 2020-05-11 | 1 | -10/+10 |
| | | | | These are all on GtkBox or enumerating children. | ||||
* | Use gtk_window_set_child throughout | Matthias Clasen | 2020-05-04 | 1 | -2/+2 |
| | | | | | Replace all uses of gtk_container_add on windows by gtk_window_set_child. | ||||
* | Use gtk_frame_set_child throughout | Matthias Clasen | 2020-05-04 | 1 | -4/+4 |
| | | | | | Replace all uses of gtk_container_add for frames with gtk_frame_set_child. | ||||
* | Drop the margin property | Matthias Clasen | 2020-02-25 | 1 | -4/+16 |
| | | | | Replace it with margin-start, -end, -top, -bottom throughout. | ||||
* | window: Remove type argument from gtk_window_new() | Benjamin Otte | 2020-02-14 | 1 | -2/+2 |
| | |||||
* | Stop using gtk_main and gtk_main_quit | Matthias Clasen | 2020-02-09 | 1 | -1/+2 |
| | | | | Replace these calls with direct use of GMainContext api. | ||||
* | Stop using gtk_box_pack_end | Timm Bäder | 2019-01-23 | 1 | -13/+13 |
| | | | | It might soon go away! | ||||
* | box: Remove fill child property | Timm Bäder | 2017-04-25 | 1 | -18/+10 |
| | | | | GtkWidget:halign and GtkWidget:valign are sufficient | ||||
* | box: Remove expand child property | Timm Bäder | 2017-04-25 | 1 | -10/+10 |
| | | | | GtkWidget already has hexpand/vexpand properties. | ||||
* | Remove gtk_widget_show_all | Timm Bäder | 2017-01-20 | 1 | -2/+2 |
| | |||||
* | Update callers | Matthias Clasen | 2017-01-19 | 1 | -1/+1 |
| | | | | Adapt all our tests and examples to the new initialization api. | ||||
* | box: Remove 'padding' child property | Timm Bäder | 2016-10-16 | 1 | -10/+10 |
| | |||||
* | tests: Update testexpand example for deprecations | Benjamin Otte | 2014-10-12 | 1 | -16/+4 |
| | |||||
* | tests: Stop using GtkAlignment | Matthias Clasen | 2014-05-23 | 1 | -46/+24 |
| | | | | Fix up all other tests to not use GtkAlignment anymore. | ||||
* | Change FSF Address | Javier Jardón | 2012-02-27 | 1 | -3/+1 |
| | |||||
* | tests: Convert testexpand from GtkTable to GtkGrid | Benjamin Otte | 2011-09-28 | 1 | -32/+26 |
| | |||||
* | Make GtkWidget::halign RTL-save | Matthias Clasen | 2011-03-30 | 1 | -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 warnings | Matthias Clasen | 2011-02-12 | 1 | -10/+0 |
| | |||||
* | Make tests compile without using GtkStyle api | Matthias Clasen | 2010-12-04 | 1 | -10/+10 |
| | |||||
* | gtk: remove "gboolean homogeneous" from gtk_box_new() | Michael Natterer | 2010-10-31 | 1 | -3/+3 |
| | | | | Because it's FALSE in virtually all use cases. | ||||
* | Add a GtkTable testcase | Matthias Clasen | 2010-10-13 | 1 | -14/+81 |
| | |||||
* | add tests/testexpand.c used to test the expand props on GtkWidget | Havoc Pennington | 2010-10-13 | 1 | -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 |