]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-geometry.h
Updated Czech translation
[empathy.git] / libempathy-gtk / empathy-geometry.h
index b7bd86bc2e69ba917016e421f895557bd8d0c519..e1412ab8a23e4afe4cdbc5331911ee62351c5599 100644 (file)
@@ -1,4 +1,3 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
 /*
  * Copyright (C) 2006-2007 Imendio AB
  * Copyright (C) 2007-2008 Collabora Ltd.
 #ifndef __EMPATHY_GEOMETRY_H__
 #define __EMPATHY_GEOMETRY_H__
 
-#include <glib.h>
+#include <gtk/gtk.h>
 
 G_BEGIN_DECLS
 
-void empathy_geometry_save (const gchar *name,
-                          gint         x,
-                          gint         y,
-                          gint         w,
-                          gint         h);
-void empathy_geometry_load (const gchar *name,
-                          gint        *x,
-                          gint        *y,
-                          gint        *w,
-                          gint        *h);
+void empathy_geometry_bind (GtkWindow *window,
+    const gchar *name);
+
+void empathy_geometry_unbind (GtkWindow *window,
+    const gchar *name);
+
+void empathy_geometry_save_values (GtkWindow *window,
+    gint x,
+    gint y,
+    gint w,
+    gint h,
+    gboolean maximized);
 
 G_END_DECLS