2 * empathy-new-account-dialog.h - Source for EmpathyNewAccountDialog
4 * Copyright (C) 2011 - Collabora Ltd.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library 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 GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with This library. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef ___EMPATHY_NEW_ACCOUNT_DIALOG_H__
21 #define ___EMPATHY_NEW_ACCOUNT_DIALOG_H__
24 #include <tp-account-widgets/tpaw-account-settings.h>
28 #define EMPATHY_TYPE_NEW_ACCOUNT_DIALOG (empathy_new_account_dialog_get_type ())
29 #define EMPATHY_NEW_ACCOUNT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_NEW_ACCOUNT_DIALOG, EmpathyNewAccountDialog))
30 #define EMPATHY_NEW_ACCOUNT_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EMPATHY_TYPE_NEW_ACCOUNT_DIALOG, EmpathyNewAccountDialogClass))
31 #define EMPATHY_IS_NEW_ACCOUNT_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_NEW_ACCOUNT_DIALOG))
32 #define EMPATHY_IS_NEW_ACCOUNT_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EMPATHY_TYPE_NEW_ACCOUNT_DIALOG))
33 #define EMPATHY_NEW_ACCOUNT_DIALOG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_NEW_ACCOUNT_DIALOG, EmpathyNewAccountDialogClass))
35 typedef struct _EmpathyNewAccountDialog EmpathyNewAccountDialog
;
36 typedef struct _EmpathyNewAccountDialogClass EmpathyNewAccountDialogClass
;
37 typedef struct _EmpathyNewAccountDialogPrivate EmpathyNewAccountDialogPrivate
;
39 struct _EmpathyNewAccountDialog
{
42 EmpathyNewAccountDialogPrivate
*priv
;
45 struct _EmpathyNewAccountDialogClass
{
46 GtkDialogClass parent_class
;
49 GType
empathy_new_account_dialog_get_type (void) G_GNUC_CONST
;
51 GtkWidget
* empathy_new_account_dialog_new (GtkWindow
*parent
);
53 TpawAccountSettings
* empathy_new_account_dialog_get_settings (
54 EmpathyNewAccountDialog
*self
);
58 #endif /* ___EMPATHY_NEW_ACCOUNT_DIALOG_H__ */