]> git.0d.be Git - empathy.git/blob - goa-mc-plugin/mcp-account-manager-goa.h
account-settings: allow to change the service
[empathy.git] / goa-mc-plugin / mcp-account-manager-goa.h
1 /*
2  * mcp-account-manager-goa.h
3  *
4  * McpAccountManagerGoa - a Mission Control plugin to expose GNOME Online
5  * Accounts with chat capabilities (e.g. Facebook) to Mission Control
6  *
7  * Copyright (C) 2010-2011 Collabora Ltd.
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * Authors:
23  *    Danielle Madeley <danielle.madeley@collabora.co.uk>
24  */
25
26 #include <mission-control-plugins/mission-control-plugins.h>
27
28 #ifndef __MCP_ACCOUNT_MANAGER_GOA_H__
29 #define __MCP_ACCOUNT_MANAGER_GOA_H__
30
31 G_BEGIN_DECLS
32
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))
39
40 typedef struct _McpAccountManagerGoa McpAccountManagerGoa;
41 typedef struct _McpAccountManagerGoaClass McpAccountManagerGoaClass;
42 typedef struct _McpAccountManagerGoaPrivate McpAccountManagerGoaPrivate;
43
44 struct _McpAccountManagerGoa
45 {
46   GObject parent;
47
48   McpAccountManagerGoaPrivate *priv;
49 };
50
51 struct _McpAccountManagerGoaClass
52 {
53   GObjectClass parent_class;
54 };
55
56 GType mcp_account_manager_goa_get_type (void);
57
58 G_END_DECLS
59
60 #endif