/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2011 - 2014 Red Hat, Inc. */ #ifndef _APPLET_AGENT_H_ #define _APPLET_AGENT_H_ #include #include #define APPLET_TYPE_AGENT (applet_agent_get_type ()) #define APPLET_AGENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), APPLET_TYPE_AGENT, AppletAgent)) #define APPLET_AGENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), APPLET_TYPE_AGENT, AppletAgentClass)) #define APPLET_IS_AGENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), APPLET_TYPE_AGENT)) #define APPLET_IS_AGENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), APPLET_TYPE_AGENT)) #define APPLET_AGENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), APPLET_TYPE_AGENT, AppletAgentClass)) #define APPLET_AGENT_GET_SECRETS "get-secrets" #define APPLET_AGENT_CANCEL_SECRETS "cancel-secrets" typedef struct { NMSecretAgentOld parent; } AppletAgent; typedef void (*AppletAgentSecretsCallback) (AppletAgent *self, GVariant *secrets, GError *error, gpointer user_data); typedef struct { NMSecretAgentOldClass parent_class; void (*get_secrets) (AppletAgent *self, void *request_id, NMConnection *connection, const char *setting_name, const char **hints, guint32 flags, AppletAgentSecretsCallback callback, gpointer callback_data); void (*cancel_secrets) (AppletAgent *self, void *request_id); } AppletAgentClass; GType applet_agent_get_type (void) G_GNUC_CONST; AppletAgent *applet_agent_new (GError **error); void applet_agent_handle_vpn_only (AppletAgent *agent, gboolean vpn_only); #endif /* _APPLET_AGENT_H_ */