about summary refs log tree commit diff
path: root/libnm-glib/nm-settings-system-interface.h
blob: d01655612318e8fde8f982d59168bfaff2adb287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
/* NetworkManager -- Network link manager
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301 USA.
 *
 * Copyright (C) 2007 - 2008 Novell, Inc.
 * Copyright (C) 2007 - 2009 Red Hat, Inc.
 */

#ifndef NM_SETTINGS_SYSTEM_INTERFACE_H
#define NM_SETTINGS_SYSTEM_INTERFACE_H

#include <glib-object.h>

#include "NetworkManager.h"

G_BEGIN_DECLS

typedef enum {
	NM_SETTINGS_SYSTEM_PERMISSION_NONE = 0x0,
	NM_SETTINGS_SYSTEM_PERMISSION_CONNECTION_MODIFY = 0x1,
	NM_SETTINGS_SYSTEM_PERMISSION_WIFI_SHARE_PROTECTED = 0x2,
	NM_SETTINGS_SYSTEM_PERMISSION_WIFI_SHARE_OPEN = 0x4,
	NM_SETTINGS_SYSTEM_PERMISSION_HOSTNAME_MODIFY = 0x8
} NMSettingsSystemPermissions;

#define NM_TYPE_SETTINGS_SYSTEM_INTERFACE               (nm_settings_system_interface_get_type ())
#define NM_SETTINGS_SYSTEM_INTERFACE(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_SETTINGS_SYSTEM_INTERFACE, NMSettingsSystemInterface))
#define NM_IS_SETTINGS_SYSTEM_INTERFACE(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_SETTINGS_SYSTEM_INTERFACE))
#define NM_SETTINGS_SYSTEM_INTERFACE_GET_INTERFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), NM_TYPE_SETTINGS_SYSTEM_INTERFACE, NMSettingsSystemInterface))

#define NM_SETTINGS_SYSTEM_INTERFACE_HOSTNAME          "hostname"
#define NM_SETTINGS_SYSTEM_INTERFACE_CAN_MODIFY        "can-modify"

#define NM_SETTINGS_SYSTEM_INTERFACE_CHECK_PERMISSIONS "check-permissions"

typedef enum {
	NM_SETTINGS_SYSTEM_INTERFACE_PROP_FIRST = 0x1000,

	NM_SETTINGS_SYSTEM_INTERFACE_PROP_HOSTNAME = NM_SETTINGS_SYSTEM_INTERFACE_PROP_FIRST,
	NM_SETTINGS_SYSTEM_INTERFACE_PROP_CAN_MODIFY
} NMSettingsSystemInterfaceProp;


typedef struct _NMSettingsSystemInterface NMSettingsSystemInterface;


typedef void (*NMSettingsSystemSaveHostnameFunc) (NMSettingsSystemInterface *settings,
                                                  GError *error,
                                                  gpointer user_data);

typedef void (*NMSettingsSystemGetPermissionsFunc) (NMSettingsSystemInterface *settings,
                                                    NMSettingsSystemPermissions permissions,
                                                    GError *error,
                                                    gpointer user_data);

struct _NMSettingsSystemInterface {
	GTypeInterface g_iface;

	/* Methods */
	gboolean (*save_hostname) (NMSettingsSystemInterface *settings,
	                           const char *hostname,
	                           NMSettingsSystemSaveHostnameFunc callback,
	                           gpointer user_data);

	gboolean (*get_permissions) (NMSettingsSystemInterface *settings,
	                             NMSettingsSystemGetPermissionsFunc callback,
	                             gpointer user_data);

	/* Signals */
	void (*check_permissions) (NMSettingsSystemInterface *settings);

	/* Padding for future expansion */
	void (*_reserved1) (void);
	void (*_reserved2) (void);
	void (*_reserved3) (void);
	void (*_reserved4) (void);
	void (*_reserved5) (void);
	void (*_reserved6) (void);
};

GType nm_settings_system_interface_get_type (void);

gboolean nm_settings_system_interface_save_hostname (NMSettingsSystemInterface *settings,
                                                     const char *hostname,
                                                     NMSettingsSystemSaveHostnameFunc callback,
                                                     gpointer user_data);

gboolean nm_settings_system_interface_get_permissions (NMSettingsSystemInterface *settings,
                                                       NMSettingsSystemGetPermissionsFunc callback,
                                                       gpointer user_data);

G_END_DECLS

#endif /* NM_SETTINGS_SYSTEM_INTERFACE_H */