]> git.0d.be Git - empathy.git/blobdiff - src/empathy-debug-window.h
remove released flag
[empathy.git] / src / empathy-debug-window.h
index 22eec3f6fd3e495058489c3fc4c40b17308c2b04..c8944bf03007b43cb872ba39fa1bd61f7983217c 100644 (file)
 #ifndef __EMPATHY_DEBUG_WINDOW_H__
 #define __EMPATHY_DEBUG_WINDOW_H__
 
-G_BEGIN_DECLS
-
-#include <glib-object.h>
 #include <gtk/gtk.h>
 
+G_BEGIN_DECLS
+
 #define EMPATHY_TYPE_DEBUG_WINDOW (empathy_debug_window_get_type ())
 #define EMPATHY_DEBUG_WINDOW(object) (G_TYPE_CHECK_INSTANCE_CAST \
         ((object), EMPATHY_TYPE_DEBUG_WINDOW, EmpathyDebugWindow))
@@ -42,11 +41,12 @@ G_BEGIN_DECLS
 
 typedef struct _EmpathyDebugWindow EmpathyDebugWindow;
 typedef struct _EmpathyDebugWindowClass EmpathyDebugWindowClass;
+typedef struct _EmpathyDebugWindowPriv EmpathyDebugWindowPriv;
 
 struct _EmpathyDebugWindow
 {
   GtkWindow parent;
-  gpointer priv;
+  EmpathyDebugWindowPriv *priv;
 };
 
 struct _EmpathyDebugWindowClass
@@ -58,6 +58,9 @@ GType empathy_debug_window_get_type (void) G_GNUC_CONST;
 
 GtkWidget * empathy_debug_window_new (GtkWindow *parent);
 
+void empathy_debug_window_show (EmpathyDebugWindow *self,
+  const gchar *name);
+
 G_END_DECLS
 
 #endif /* __EMPATHY_DEBUG_WINDOW_H__ */