Changelog:
r43078 | compyx | 2023-02-07 21:59:16 +0000 (Tue, 07 Feb 2023) | 3 lines
Gtk3: uimedia: swapped signals can be connected without locking
------------------------------------------------------------------------
r43077 | compyx | 2023-02-07 21:58:37 +0000 (Tue, 07 Feb 2023) | 3 lines
Gtk3: Fix invalid param name in g_signal_connect_swapped_unlocked()
------------------------------------------------------------------------
r43076 | compyx | 2023-02-07 21:42:53 +0000 (Tue, 07 Feb 2023) | 7 lines
Gtk3: Implement locking version of g_signal_connect_swapped()
Implement override of `g_signal_signal_connect_swapped()` that obtains the VICE
lock before calling the handler and release the lock afterwards.
The non-locking (GLib) version can used as `g_signal_connect_swapped_unlocked()`.
------------------------------------------------------------------------
r43075 | compyx | 2023-02-07 19:00:35 +0000 (Tue, 07 Feb 2023) | 5 lines
Gtk3: media recording dialog: replace magic numbers with symbolic constants
Use symbolic constants from gfxoutput.h for the screenshot options.
------------------------------------------------------------------------
r43074 | compyx | 2023-02-07 11:50:14 +0000 (Tue, 07 Feb 2023) | 9 lines
Gtk3: Resource-bound combo boxes: remove combo box with custom entry, remove _get() methods
The resource combo box with a custom text entry isn't used anywhere, so rather
than refactoring it to use the resource mediator it is new deleted.
Remove the _get() methods: it is not clear from looking at the method name if
it gets the resource value or the widget value, and they weren't used anywhere
in the code. They can be reimplemented as two separate methods if required.
------------------------------------------------------------------------