summaryrefslogtreecommitdiff
path: root/tests/testlist2.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: Stop using gtk_widget_show/hideMatthias Clasen2022-12-131-1/+1
|
* Replace "gchar" with "char"Benjamin Otte2020-07-251-3/+3
|
* Replace "gint" with "int"Benjamin Otte2020-07-251-2/+2
|
* scrolledwindow: Don't take adjustments in new()Matthias Clasen2020-06-241-1/+1
| | | | | | | In 99.9% of all cases, these are just NULL, NULL. So just do away with these arguments, people can use the setters for the rare cases where they want the scrolled window to use a different adjustment.
* Replace most remaining uses of container apiMatthias Clasen2020-05-111-6/+7
| | | | These are all on GtkBox or enumerating children.
* Don't use container api on GtkListBoxMatthias Clasen2020-05-111-1/+1
|
* Replace gtk_widget_destroy everywhereMatthias Clasen2020-05-111-1/+1
| | | | | Replace all remaining uses of gtk_widget_destroy by gtk_container_remove or g_object_unref.
* tests: Stop explicitly showing widgetsAlexander Mikhaylenko2020-05-111-1/+0
|
* Use gtk_revealer_set_child throughoutMatthias Clasen2020-05-041-4/+4
| | | | | Replace all uses of gtk_container_add on revealers with gtk_revealer_set_child.
* 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-1/+1
| | | | | 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-2/+15
| | | | Replace these calls with direct use of GMainContext api.
* testlist2: quit on window closeTimm Bäder2019-09-091-0/+1
|
* Remove gtk_widget_show_allTimm Bäder2017-01-201-2/+1
|
* Update callersMatthias Clasen2017-01-191-1/+1
| | | | Adapt all our tests and examples to the new initialization api.
* widget: Remove gtk_widget_reparentTimm Bäder2016-10-181-3/+4
|
* tests: Adapt to gtk_widget_reparent deprecationsMatthias Clasen2014-05-221-0/+2
|
* Add a test for animated row insertion/removalMatthias Clasen2013-08-261-0/+126
This is just a crude example for how to use revealers to animate insertion and removal of rows in a listbox.