summaryrefslogtreecommitdiff
path: root/tests/testaccel.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: Stop using gtk_widget_show/hideMatthias Clasen2022-12-131-1/+1
|
* tests: Ignore deprecationsMatthias Clasen2022-10-111-0/+2
| | | | Eventually, most of these tests should be dropped.
* Replace "gchar" with "char"Benjamin Otte2020-07-251-1/+1
|
* Replace "gint" with "int"Benjamin Otte2020-07-251-4/+4
|
* 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-2/+2
| | | | These are all on GtkBox or enumerating children.
* tests: Stop explicitly showing widgetsAlexander Mikhaylenko2020-05-111-2/+0
|
* tests: Fix testaccel layoutAlexander Mikhaylenko2020-05-111-1/+1
| | | | hexpand doesn't matter there, set vexpand instead.
* tests: Fix testaccel indentationAlexander Mikhaylenko2020-05-111-60/+61
|
* 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-1/+2
| | | | 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!
* 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/+2
| | | | 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-4/+4
|
* testaccel: Add another focus locationMatthias Clasen2014-09-061-4/+10
| | | | | | It turns out GtkCellRendererAccel does not deal well with focus being elsewhere. Adding an entry here makes this much easier to reproduce.
* testaccel: Handle accel-clearedMatthias Clasen2014-09-061-0/+18
|
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* tests: Store keycode in tree for testaccelBastien Nocera2011-10-261-1/+3
| | | | Useful for testing keys without a keysym.
* Renamed GtkCellRendererKeys to GtkCellRendererAccel to be consistent withMichael Natterer2005-09-221-3/+3
| | | | | | | | | | | | | | | | | | 2005-09-22 Michael Natterer <mitch@imendio.com> Renamed GtkCellRendererKeys to GtkCellRendererAccel to be consistent with GTK+ terminology: * gtk/gtkcellrendererkeys.[ch] * tests/testkeys.c: removed... * gtk/gtkcellrendereraccel.[ch] * tests/testaccel.c: ...and added. * gtk/Makefile.am * gtk/gtk.h * gtk/gtk.symbols * tests/Makefile.am: changed accordingly.
* Add a cell renderer for displaying and editing accelerators, a port ofMatthias Clasen2005-09-101-0/+109
2005-09-09 Matthias Clasen <mclasen@redhat.com> * gtk/gtkcellrendererkeys.h: * gtk/gtkcellrendererkeys.c: Add a cell renderer for displaying and editing accelerators, a port of EggCellRendererKeys . * gtk/gtk.symbols: * gtk/gtk.h: * gtk/Makefile.am: Add the keys cell renderer. * tests/Makefile.am: * tests/testkeys.c: Test GtkCellRendererKeys