]> git.0d.be Git - empathy.git/blob - src/cc-empathy-accounts-page.h
Updated Polish translation
[empathy.git] / src / cc-empathy-accounts-page.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_PAGE_H
22 #define __CC_EMPATHY_ACCOUNTS_PAGE_H
23
24 #include <gtk/gtk.h>
25 #include <libgnome-control-center-extension/cc-page.h>
26
27 G_BEGIN_DECLS
28
29 #define CC_TYPE_EMPATHY_ACCOUNTS_PAGE         (cc_empathy_accounts_page_get_type ())
30 #define CC_EMPATHY_ACCOUNTS_PAGE(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), CC_TYPE_EMPATHY_ACCOUNTS_PAGE, CcEmpathyAccountsPage))
31 #define CC_EMPATHY_ACCOUNTS_PAGE_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), CC_TYPE_EMPATHY_ACCOUNTS_PAGE, CcEmpathyAccountsPageClass))
32 #define CC_IS_EMPATHY_ACCOUNTS_PAGE(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), CC_TYPE_EMPATHY_ACCOUNTS_PAGE))
33 #define CC_IS_EMPATHY_ACCOUNTS_PAGE_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), CC_TYPE_EMPATHY_ACCOUNTS_PAGE))
34 #define CC_EMPATHY_ACCOUNTS_PAGE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CC_TYPE_EMPATHY_ACCOUNTS_PAGE, CcEmpathyAccountsPageClass))
35
36 typedef struct CcEmpathyAccountsPagePrivate CcEmpathyAccountsPagePrivate;
37
38 typedef struct
39 {
40   CcPage parent;
41   CcEmpathyAccountsPagePrivate *priv;
42 } CcEmpathyAccountsPage;
43
44 typedef struct
45 {
46   CcPageClass parent_class;
47 } CcEmpathyAccountsPageClass;
48
49 GType   cc_empathy_accounts_page_get_type   (void);
50 CcPage* cc_empathy_accounts_page_new        (void);
51
52 G_END_DECLS
53
54 #endif /* __CC_EMPATHY_ACCOUNTS_PAGE_H */