<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
<META NAME="GENERATOR" CONTENT="GtkHTML/3.24.1.1">
</HEAD>
<BODY>
I have a function that is fired off when the clipboard owner changes.<BR>
<BR>
I need to know which application changed the clipboard.<BR>
<BR>
The event structure that is accessible within the function includes 'window' that is 'the window which received the event'.<BR>
Hopefully this is the window from where the change happened.<BR>
<BR>
typedef struct {
<PRE>
GdkEventType type;
GdkWindow *window;
gint8 send_event;
GdkNativeWindow owner;
GdkOwnerChange reason;
GdkAtom selection;
guint32 time;
guint32 selection_time;
} GdkEventOwnerChange;
The trouble is I can't find any way of getting the title of the GdkWindow from the doco (and googling) ...
</PRE>
<A HREF="http://library.gnome.org/devel/gdk/stable/gdk-Windows.html#GdkWindowTypeHint">http://library.gnome.org/devel/gdk/stable/gdk-Windows.html#GdkWindowTypeHint</A><BR>
<BR>
Do any of you know how to get the title of a GdkWindow?<BR>
<BR>
</BODY>
</HTML>