summaryrefslogtreecommitdiff
path: root/tests/testlogout.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: Stop using gtk_widget_show/hideMatthias Clasen2022-12-131-1/+1
|
* Change button hierarchyTimm Bäder2020-08-291-4/+4
| | | | | | | | | | | | | | | A radiobutton without indicator is really just a togglebutton with a group. A radiobutton with indicator is really just a checkbutton with a group. Make checkbutton its own widget not inheriting from GtkButton. GtkRadioButton could be removed but it stays for now. Radiobutton && !draw-indicator => Togglebutton Checkbutton && !draw-indicator => Togglebutton Radiobutton && draw-indicator => CheckButton + group
* Replace "gchar" with "char"Benjamin Otte2020-07-251-2/+2
|
* Replace most remaining uses of container apiMatthias Clasen2020-05-111-2/+2
| | | | These are all on GtkBox or enumerating children.
* tests: Fix testlogoutAlexander Mikhaylenko2020-05-111-10/+0
| | | | Stop using GtkApplication::quit signal.
* 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.
* Drop the margin propertyMatthias Clasen2020-02-251-1/+4
| | | | Replace it with margin-start, -end, -top, -bottom throughout.
* window: Remove type argument from gtk_window_new()Benjamin Otte2020-02-141-1/+1
|
* Stop using gtk_widget_get_toplevelMatthias Clasen2019-05-281-1/+1
| | | | All uses of it can be replaced by gtk_widget_get_root.
* entry, spin button: Drop redundant APIMatthias Clasen2019-02-281-1/+1
| | | | Avoid duplicating GtkEditable APIs. Port existing users.
* Remove gtk_widget_show_allTimm Bäder2017-01-201-1/+1
|
* GtkApplication: remove end session APIRyan Lortie2012-02-211-45/+0
| | | | | | | | This seems a bit "too powerful" and unlikely to be used by most applications. Remove it from now, until someone comes up with a strong desire for it. https://bugzilla.gnome.org/show_bug.cgi?id=670485
* testlogout: actually quit if told toDan Winship2012-01-111-1/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=667705
* Fix some missing renames of GtkApplicationEndStyleRico Tzschichholz2012-01-111-1/+1
|
* Simplify logout notification apiMatthias Clasen2012-01-101-55/+0
| | | | | | | | | We don't expose ::quit-requested as API anymore. Instead, we expect users to register inhibitors when needed. Without quit-requested, there is no need for ::quit-cancelled and gtk_application_quit_response anymore. We still emit ::quit when the application is about to quit.
* Add a test for the new session apiMatthias Clasen2012-01-081-0/+255