]> git.0d.be Git - empathy.git/blob - src/cc-empathy-accounts-panel.h
Updated Polish translation
[empathy.git] / src / cc-empathy-accounts-panel.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
2  *
3  * Copyright (C) 2010 Red Hat, Inc.
4  * Copyright (C) 2010 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20
21 #ifndef __CC_EMPATHY_ACCOUNTS_PANEL_H
22 #define __CC_EMPATHY_ACCOUNTS_PANEL_H
23
24 #include <gtk/gtk.h>
25 #include <libgnome-control-center-extension/cc-panel.h>
26
27 G_BEGIN_DECLS
28
29 #define CC_TYPE_EMPATHY_ACCOUNTS_PANEL         (cc_empathy_accounts_panel_get_type ())
30 #define CC_EMPATHY_ACCOUNTS_PANEL(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), CC_TYPE_EMPATHY_ACCOUNTS_PANEL, CcEmpathyAccountsPanel))
31 #define CC_EMPATHY_ACCOUNTS_PANEL_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), CC_TYPE_EMPATHY_ACCOUNTS_PANEL, CcEmpathyAccountsPanelClass))
32 #define CC_IS_EMPATHY_ACCOUNTS_PANEL(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), CC_TYPE_EMPATHY_ACCOUNTS_PANEL))
33 #define CC_IS_EMPATHY_ACCOUNTS_PANEL_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), CC_TYPE_EMPATHY_ACCOUNTS_PANEL))
34 #define CC_EMPATHY_ACCOUNTS_PANEL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CC_TYPE_EMPATHY_ACCOUNTS_PANEL, CcEmpathyAccountsPanelClass))
35
36 typedef struct CcEmpathyAccountsPanelPrivate CcEmpathyAccountsPanelPrivate;
37
38 typedef struct
39 {
40   CcPanel parent;
41   CcEmpathyAccountsPanelPrivate *priv;
42 } CcEmpathyAccountsPanel;
43
44 typedef struct
45 {
46   CcPanelClass parent_class;
47 } CcEmpathyAccountsPanelClass;
48
49 GType cc_empathy_accounts_panel_get_type (void);
50 void  cc_empathy_accounts_panel_register (GIOModule *module);
51
52 G_END_DECLS
53
54 #endif /* __CC_EMPATHY_ACCOUNTS_PANEL_H */