]> git.0d.be Git - empathy.git/blobdiff - src/empathy-status-icon.h
Merge branch 'gnome-3-8'
[empathy.git] / src / empathy-status-icon.h
index a7ca3c395e693e44c15fb45f136a5ad638e5bc0e..586e651e2928587c66c4a06f0596b270e1d8c9d0 100644 (file)
@@ -1,6 +1,6 @@
 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
 /*
- * Copyright (C) 2007 Collabora Ltd.
+ * Copyright (C) 2007-2008 Collabora Ltd.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -22,7 +22,7 @@
 #ifndef __EMPATHY_STATUS_ICON_H__
 #define __EMPATHY_STATUS_ICON_H__
 
-#include <glib.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 
@@ -35,10 +35,10 @@ G_BEGIN_DECLS
 
 typedef struct _EmpathyStatusIcon      EmpathyStatusIcon;
 typedef struct _EmpathyStatusIconClass EmpathyStatusIconClass;
-typedef struct _EmpathyStatusIconPriv  EmpathyStatusIconPriv;
 
 struct _EmpathyStatusIcon {
-       GObject      parent;
+       GObject parent;
+       gpointer priv;
 };
 
 struct _EmpathyStatusIconClass {
@@ -46,7 +46,8 @@ struct _EmpathyStatusIconClass {
 };
 
 GType              empathy_status_icon_get_type (void) G_GNUC_CONST;
-EmpathyStatusIcon *empathy_status_icon_new      (GtkWindow *window);
+EmpathyStatusIcon *empathy_status_icon_new      (GtkWindow *window,
+                                                gboolean   hide_contact_list);
 
 G_END_DECLS