]> git.0d.be Git - empathy.git/blob - src/empathy-accounts-dialog.h
Update Simplified Chinese help translation.
[empathy.git] / src / empathy-accounts-dialog.h
1 /*
2  * Copyright (C) 2005-2007 Imendio AB
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA  02110-1301  USA
19  *
20  * Authors: Martyn Russell <martyn@imendio.com>
21  *          Xavier Claessens <xclaesse@gmail.com>
22  */
23
24 #ifndef __EMPATHY_ACCOUNTS_DIALOG_H__
25 #define __EMPATHY_ACCOUNTS_DIALOG_H__
26
27 #include <gtk/gtk.h>
28
29 #include <telepathy-glib/account.h>
30
31 G_BEGIN_DECLS
32
33 #define EMPATHY_TYPE_ACCOUNTS_DIALOG empathy_accounts_dialog_get_type()
34 #define EMPATHY_ACCOUNTS_DIALOG(obj) \
35   (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_ACCOUNTS_DIALOG, EmpathyAccountsDialog))
36 #define EMPATHY_ACCOUNTS_DIALOG_CLASS(klass) \
37   (G_TYPE_CHECK_CLASS_CAST ((klass), EMPATHY_TYPE_ACCOUNTS_DIALOG, EmpathyAccountsDialogClass))
38 #define EMPATHY_IS_ACCOUNTS_DIALOG(obj) \
39   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_ACCOUNTS_DIALOG))
40 #define EMPATHY_IS_ACCOUNTS_DIALOG_CLASS(klass) \
41   (G_TYPE_CHECK_CLASS_TYPE ((klass), EMPATHY_TYPE_ACCOUNTS_DIALOG))
42 #define EMPATHY_ACCOUNTS_DIALOG_GET_CLASS(obj) \
43   (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_ACCOUNTS_DIALOG, EmpathyAccountsDialogClass))
44
45 typedef struct {
46   GtkDialog parent;
47
48   /* private */
49   gpointer priv;
50 } EmpathyAccountsDialog;
51
52 typedef struct {
53   GtkDialogClass parent_class;
54 } EmpathyAccountsDialogClass;
55
56 GType empathy_accounts_dialog_get_type (void);
57 GtkWidget *empathy_accounts_dialog_show (GtkWindow *parent,
58     TpAccount *selected_account);
59
60 void empathy_account_dialog_cancel (EmpathyAccountsDialog *dialog);
61 gboolean empathy_accounts_dialog_is_creating (EmpathyAccountsDialog *dialog);
62
63 void empathy_accounts_dialog_show_application (GdkScreen *screen,
64     TpAccount *selected_account,
65     gboolean if_needed,
66     gboolean hidden);
67
68 G_END_DECLS
69
70 #endif /* __EMPATHY_ACCOUNTS_DIALOG_H__ */