2 * mcp-account-manager-goa.h
4 * McpAccountManagerGoa - a Mission Control plugin to expose GNOME Online
5 * Accounts with chat capabilities (e.g. Facebook) to Mission Control
7 * Copyright (C) 2010-2011 Collabora Ltd.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
23 * Danielle Madeley <danielle.madeley@collabora.co.uk>
26 #include <mission-control-plugins/mission-control-plugins.h>
28 #ifndef __MCP_ACCOUNT_MANAGER_GOA_H__
29 #define __MCP_ACCOUNT_MANAGER_GOA_H__
33 #define MCP_TYPE_ACCOUNT_MANAGER_GOA (mcp_account_manager_goa_get_type ())
34 #define MCP_ACCOUNT_MANAGER_GOA(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MCP_TYPE_ACCOUNT_MANAGER_GOA, McpAccountManagerGoa))
35 #define MCP_ACCOUNT_MANAGER_GOA_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), MCP_TYPE_ACCOUNT_MANAGER_GOA, McpAccountManagerGoaClass))
36 #define MCP_IS_ACCOUNT_MANAGER_GOA(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MCP_TYPE_ACCOUNT_MANAGER_GOA))
37 #define MCP_IS_ACCOUNT_MANAGER_GOA_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((obj), MCP_TYPE_ACCOUNT_MANAGER_GOA))
38 #define MCP_ACCOUNT_MANAGER_GOA_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MCP_TYPE_ACCOUNT_MANAGER_GOA, McpAccountManagerGoaClass))
40 typedef struct _McpAccountManagerGoa McpAccountManagerGoa
;
41 typedef struct _McpAccountManagerGoaClass McpAccountManagerGoaClass
;
42 typedef struct _McpAccountManagerGoaPrivate McpAccountManagerGoaPrivate
;
44 struct _McpAccountManagerGoa
48 McpAccountManagerGoaPrivate
*priv
;
51 struct _McpAccountManagerGoaClass
53 GObjectClass parent_class
;
56 GType
mcp_account_manager_goa_get_type (void);