]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-account-widget.h
debug-window: fix typo
[empathy.git] / libempathy-gtk / empathy-account-widget.h
index 75214fac8db5931b1e7348a830bc84da0bd05ea7..2f7d54431ae7e73e6e48052b45e9556cec037bda 100644 (file)
@@ -42,25 +42,23 @@ G_BEGIN_DECLS
 #define EMPATHY_ACCOUNT_WIDGET_GET_CLASS(obj) \
   (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_ACCOUNT_WIDGET, EmpathyAccountWidgetClass))
 
+typedef struct _EmpathyAccountWidgetPriv EmpathyAccountWidgetPriv;
 typedef struct _EmpathyAccountWidgetUIDetails EmpathyAccountWidgetUIDetails;
 
 typedef struct {
-  GObject parent;
+  GtkBox parent;
 
   EmpathyAccountWidgetUIDetails *ui_details;
 
-  /* private */
-  gpointer priv;
+  EmpathyAccountWidgetPriv *priv;
 } EmpathyAccountWidget;
 
 typedef struct {
-  GObjectClass parent_class;
+  GtkBoxClass parent_class;
 } EmpathyAccountWidgetClass;
 
 GType empathy_account_widget_get_type (void);
 
-GtkWidget *empathy_account_widget_get_widget (EmpathyAccountWidget *widget);
-
 EmpathyAccountWidget * empathy_account_widget_new_for_protocol (
     EmpathyAccountSettings *settings,
     gboolean simple);
@@ -70,6 +68,28 @@ gboolean empathy_account_widget_contains_pending_changes
 void empathy_account_widget_discard_pending_changes
     (EmpathyAccountWidget *widget);
 
+gchar * empathy_account_widget_get_default_display_name (
+    EmpathyAccountWidget *widget);
+
+void empathy_account_widget_set_account_param (EmpathyAccountWidget *widget,
+    const gchar *account);
+
+void empathy_account_widget_set_password_param (EmpathyAccountWidget *self,
+    const gchar *password);
+
+void empathy_account_widget_set_other_accounts_exist (
+    EmpathyAccountWidget *self, gboolean others_exist);
+
+void empathy_account_widget_hide_buttons (EmpathyAccountWidget *self);
+
+void empathy_account_widget_apply_and_log_in (EmpathyAccountWidget *self);
+
+/* protected methods */
+void empathy_account_widget_changed (EmpathyAccountWidget *widget);
+
+EmpathyAccountSettings * empathy_account_widget_get_settings (
+    EmpathyAccountWidget *self);
+
 G_END_DECLS
 
 #endif /* __EMPATHY_ACCOUNT_WIDGET_H__ */