]> git.0d.be Git - empathy.git/blobdiff - src/empathy-accounts-dialog.h
Updated Greek translation
[empathy.git] / src / empathy-accounts-dialog.h
index aa8f7c06b2e0cee1d55ff0f884e9d3f1618ebed8..070cd02e90f2360027441f02bb9bfb903beda985 100644 (file)
@@ -25,8 +25,7 @@
 #define __EMPATHY_ACCOUNTS_DIALOG_H__
 
 #include <gtk/gtk.h>
-
-#include <libempathy/empathy-account.h>
+#include <telepathy-glib/telepathy-glib.h>
 
 G_BEGIN_DECLS
 
@@ -43,19 +42,27 @@ G_BEGIN_DECLS
   (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_ACCOUNTS_DIALOG, EmpathyAccountsDialogClass))
 
 typedef struct {
-  GObject parent;
+  GtkDialog parent;
 
   /* private */
   gpointer priv;
 } EmpathyAccountsDialog;
 
 typedef struct {
-  GObjectClass parent_class;
+  GtkDialogClass parent_class;
 } EmpathyAccountsDialogClass;
 
 GType empathy_accounts_dialog_get_type (void);
 GtkWidget *empathy_accounts_dialog_show (GtkWindow *parent,
-    EmpathyAccount *selected_account);
+    TpAccount *selected_account);
+
+void empathy_account_dialog_cancel (EmpathyAccountsDialog *dialog);
+gboolean empathy_accounts_dialog_is_creating (EmpathyAccountsDialog *dialog);
+
+void empathy_accounts_dialog_show_application (GdkScreen *screen,
+    TpAccount *selected_account,
+    gboolean if_needed,
+    gboolean hidden);
 
 G_END_DECLS