summaryrefslogtreecommitdiff
path: root/gdk/gdkevents.c
diff options
context:
space:
mode:
authorSven Herzberg <sven@imendio.com>2008-09-06 17:26:33 +0000
committerSven Herzberg <herzi@src.gnome.org>2008-09-06 17:26:33 +0000
commitad7880a590742646ecc1c870a9fc935318a9b174 (patch)
tree3084430f8149bd188d6e4b1c11a3ad69d3a1dce3 /gdk/gdkevents.c
parent9e90452bac5268aa1cf67265c2deb22b1d4c66da (diff)
downloadgtk+-ad7880a590742646ecc1c870a9fc935318a9b174.tar.gz
Bug 551063 – deprecated marking without a link to what new code should
2008-09-06 Sven Herzberg <sven@imendio.com> Bug 551063 – deprecated marking without a link to what new code should use * gdk/tmpl/input.sgml: dropped tmpl documentation for gdk_input_add() and gdk_input_add_full() * gdk/gdkevents.c: added inline documentation for gdk_input_add() and gdk_input_add_full(); added replacement hints into the deprecation message svn path=/trunk/; revision=21305
Diffstat (limited to 'gdk/gdkevents.c')
-rw-r--r--gdk/gdkevents.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/gdk/gdkevents.c b/gdk/gdkevents.c
index fde9ab125a..24a29a1fd9 100644
--- a/gdk/gdkevents.c
+++ b/gdk/gdkevents.c
@@ -1015,6 +1015,23 @@ gdk_io_invoke (GIOChannel *source,
return TRUE;
}
+/**
+ * gdk_input_add_full:
+ * @source: a file descriptor.
+ * @condition: the condition.
+ * @function: the callback function.
+ * @data: callback data passed to @function.
+ * @destroy: callback function to call with @data when the input
+ * handler is removed.
+ *
+ * Establish a callback when a condition becomes true on
+ * a file descriptor.
+ *
+ * Returns: a tag that can later be used as an argument to
+ * gdk_input_remove().
+ *
+ * Deprecated: Use g_io_add_watch_full() on a #GIOChannel
+ */
gint
gdk_input_add_full (gint source,
GdkInputCondition condition,
@@ -1048,6 +1065,21 @@ gdk_input_add_full (gint source,
return result;
}
+/**
+ * gdk_input_add:
+ * @source: a file descriptor.
+ * @condition: the condition.
+ * @function: the callback function.
+ * @data: callback data passed to @function.
+ *
+ * Establish a callback when a condition becomes true on
+ * a file descriptor.
+ *
+ * Returns: a tag that can later be used as an argument to
+ * gdk_input_remove().
+ *
+ * Deprecated: Use g_io_add_watch() on a #GIOChannel
+ */
gint
gdk_input_add (gint source,
GdkInputCondition condition,