summaryrefslogtreecommitdiff
path: root/tests/syncscroll.c
Commit message (Collapse)AuthorAgeFilesLines
* Replace most remaining uses of container apiMatthias Clasen2020-05-111-4/+4
| | | | These are all on GtkBox or enumerating children.
* tests: Fix syncscrollAlexander Mikhaylenko2020-05-111-0/+3
| | | | Set expand for the scrolled windows.
* 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.
* Use gtk_scrolled_window_set_child throughoutMatthias Clasen2020-05-041-3/+3
| | | | | Replace all uses of gtk_container_add on popovers by gtk_scrolled_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-1/+2
| | | | Replace these calls with direct use of GMainContext api.
* Stop using gtk_box_pack_endTimm Bäder2019-01-231-3/+3
| | | | It might soon go away!
* box: Remove fill child propertyTimm Bäder2017-04-251-3/+3
| | | | GtkWidget:halign and GtkWidget:valign are sufficient
* box: Remove expand child propertyTimm Bäder2017-04-251-3/+3
| | | | 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-3/+3
|
* Add an example for synchronized scrollingMatthias Clasen2014-10-091-0/+69
This example uses GTK_POLICY_EXTERNAL to share a scrollbar among multiple scrolled windows.