summaryrefslogtreecommitdiff
path: root/pidgin/pidginnotificationauthorizationrequest.c
Commit message (Collapse)AuthorAgeFilesLines
* Use gtk_widget_set_visible for everythingGary Kramlich2023-04-111-9/+9
| | | | | | | | | | | | | | gtk_widget_show and gtk_widget_hide are deprecated in GTK 4.10. However, gtk_widget_set_visible has been around forever so we just need to move to that. I didn't test all of these and there are probably some that can still be removed, but most of those are in code that is going to get refreshed in the future so I didn't bother for now. Testing Done: I tested the join chat, add chat, and add buddy dialogs, as well as the contact added notification. Reviewed at https://reviews.imfreedom.org/r/2430/
* Migrate away from AdwActionRow:icon-nameElliott Sales de Andrade2023-03-311-3/+7
| | | | | | | | | This is deprecated in Adwaita 1.3 Testing Done: Triggered connection error and buddy request in Demo protocol; not sure how to check authorization. Reviewed at https://reviews.imfreedom.org/r/2410/
* Port notifications to GTK4Elliott Sales de Andrade2022-08-221-11/+11
| | | | | | | Testing Done: Compiled, and opened notifications window, eventually. Reviewed at https://reviews.imfreedom.org/r/1622/
* Create PurpleAuthorizationRequest and use it for notifications.Gary Kramlich2022-08-221-0/+339
This replaces the old internal representation of authorization requests as well as the UI's implementation of their own objects. Everything is now controlled via PurpleAuthorizationRequest and the UI's display the notification for interaction. Testing Done: Verified the notification and actions work in both finch and pidgin. Reviewed at https://reviews.imfreedom.org/r/1613/