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 : : #pragma once
5 : :
6 : : #if !defined (VALENT_INSIDE) && !defined (VALENT_COMPILATION)
7 : : # error "Only <valent.h> can be included directly."
8 : : #endif
9 : :
10 : : #include "../core/valent-extension.h"
11 : :
12 : : G_BEGIN_DECLS
13 : :
14 : : #define VALENT_TYPE_SESSION_ADAPTER (valent_session_adapter_get_type())
15 : :
16 : : VALENT_AVAILABLE_IN_1_0
17 [ + - + - : 57 : G_DECLARE_DERIVABLE_TYPE (ValentSessionAdapter, valent_session_adapter, VALENT, SESSION_ADAPTER, ValentExtension)
+ - ]
18 : :
19 : : struct _ValentSessionAdapterClass
20 : : {
21 : : ValentExtensionClass parent_class;
22 : :
23 : : /* virtual functions */
24 : : gboolean (*get_active) (ValentSessionAdapter *adapter);
25 : : gboolean (*get_locked) (ValentSessionAdapter *adapter);
26 : : void (*set_locked) (ValentSessionAdapter *adapter,
27 : : gboolean state);
28 : :
29 : : /*< private >*/
30 : : gpointer padding[8];
31 : : };
32 : :
33 : : VALENT_AVAILABLE_IN_1_0
34 : : gboolean valent_session_adapter_get_active (ValentSessionAdapter *adapter);
35 : : VALENT_AVAILABLE_IN_1_0
36 : : gboolean valent_session_adapter_get_locked (ValentSessionAdapter *adapter);
37 : : VALENT_AVAILABLE_IN_1_0
38 : : void valent_session_adapter_set_locked (ValentSessionAdapter *adapter,
39 : : gboolean state);
40 : :
41 : : G_END_DECLS
42 : :
|