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 <gtk/gtk.h>
7 : : #include <libpeas.h>
8 : : #include <valent.h>
9 : :
10 : : #include "valent-gdk-clipboard.h"
11 : : #include "valent-gtk-notifications.h"
12 : :
13 : :
14 : : _VALENT_EXTERN void
15 : 2 : valent_gtk_plugin_register_types (PeasObjectModule *module)
16 : : {
17 : : /* These extensions inherently rely on GTK being initialized */
18 [ + - ]: 2 : if (gtk_is_initialized ())
19 : : {
20 : 2 : peas_object_module_register_extension_type (module,
21 : : VALENT_TYPE_CLIPBOARD_ADAPTER,
22 : : VALENT_TYPE_GDK_CLIPBOARD);
23 : 2 : peas_object_module_register_extension_type (module,
24 : : VALENT_TYPE_NOTIFICATIONS_ADAPTER,
25 : : VALENT_TYPE_GTK_NOTIFICATIONS);
26 : : }
27 : 2 : }
|