summaryrefslogtreecommitdiff
path: root/tests/testinhibitshortcuts.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: Stop using gtk_widget_show/hideMatthias Clasen2022-12-131-1/+1
|
* Clean up uses of gtk_toggle_button_get/set_activeMatthias Clasen2020-08-301-3/+3
| | | | | Replace all uses on check buttons by the corresponding check button api.
* *: Fix spelling mistakes found by codespellBjörn Daase2020-08-211-1/+1
|
* Replace most remaining uses of container apiMatthias Clasen2020-05-111-2/+2
| | | | These are all on GtkBox or enumerating children.
* 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.
* tests: Stop using gtk_get_current_ apisMatthias Clasen2020-04-111-3/+1
| | | | | Replace these by equivalent event controller apis where needed.
* gdk: Add gdk_toplevel_inhibit_system_shortcuts APIOlivier Fourdan2020-03-301-0/+107
With the removal of grabs from the public API, we need a replacement API to let applications bypass system keyboard shortcuts. A typical use case for this API is remote desktop or virtual machine viewers which need to inhibit the default system keyboard shortcuts so that the remote session or virtual host gets those instead of the local environment. Close: https://gitlab.gnome.org/GNOME/gtk/issues/982