Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-3.0-or-later
2 : : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
3 : :
4 : : #include "config.h"
5 : :
6 : : #include <libpeas.h>
7 : : #include <libportal/portal.h>
8 : : #ifdef HAVE_LIBPORTAL_GTK4
9 : : #include <libportal-gtk4/portal-gtk4.h>
10 : : #endif /* HAVE_LIBPORTAL_GTK4 */
11 : : #include <valent.h>
12 : :
13 : : #include "valent-xdp-background.h"
14 : : #include "valent-xdp-input.h"
15 : : #include "valent-xdp-session.h"
16 : :
17 : :
18 : : _VALENT_EXTERN void
19 : 0 : valent_xdp_plugin_register_types (PeasObjectModule *module)
20 : : {
21 : 0 : peas_object_module_register_extension_type (module,
22 : : VALENT_TYPE_INPUT_ADAPTER,
23 : : VALENT_TYPE_XDP_INPUT);
24 : :
25 : : /* These extensions only makes sense in a sandbox environment. */
26 : 0 : if (xdp_portal_running_under_sandbox ())
27 : : {
28 : : #ifdef HAVE_LIBPORTAL_GTK4
29 : 0 : peas_object_module_register_extension_type (module,
30 : : VALENT_TYPE_APPLICATION_PLUGIN,
31 : : VALENT_TYPE_XDP_BACKGROUND);
32 : : #endif /* HAVE_LIBPORTAL_GTK4 */
33 : 0 : peas_object_module_register_extension_type (module,
34 : : VALENT_TYPE_SESSION_ADAPTER,
35 : : VALENT_TYPE_XDP_SESSION);
36 : : }
37 : 0 : }
38 : :
|