up vote 0 down vote favorite
share [g+] share [fb]

I'm trying to send and receive a client-event using a GtkWidget on the win32 platform. The sending code looks like this:

GtkWidget *Wnd;
GdkNativeWindow Hnd =
#ifdef WIN32
    GDK_WINDOW_HWND(Wnd->window);
#else
    GDK_WINDOW_XWINDOW(Wnd->window);
#endif
GdkEvent *Event = gdk_event_new(GDK_CLIENT_EVENT);
// fill out Event params
gdk_event_send_client_message(Event, Hnd);

Receiving code looks like this:

static gboolean MyClientEvent(GtkWidget *widget, GdkEventClient *ev, MyWnd *Wnd)
{
    // breakpoint here...
    return TRUE;
}

GtkWidget *Wnd = gtk_window_new(GTK_WINDOW_TOPLEVEL);
g_signal_connect(   G_OBJECT(Wnd),
                    "client-event",
                    G_CALLBACK(MyClientEvent),
                    this);
gtk_widget_add_events(Wnd, GDK_ALL_EVENTS_MASK);

I used Spy++ to see the message getting sent, so I know the sending side is ok. The receiving side however doesn't get the client-event. I was expecting my breakpoint in the callback to trigger... but it doesn't.

I'm not even sure if a GtkWindow can receive a client-event... from past experience on X11 I thought it was pretty much the same as any other GtkWidget in that respect. Maybe on the win32 platform it's kinda different. But still I'd like to be able to get this working.

I would like this to work with asynchronously, and in a thread-safe fashion, so that I can send events from worker threads up to the GUI thread.

link|improve this question

Why are you sending the even through the native window instead of the GtkWindow? Newer versions of Gtk do not have a 1:1 correspondence between native windows and widgets, you probably ought to stick entirely to GdkWindows or even just GtkWidgets. The problem that may be biting you is that you expect all the events from the native window to be passed up the chain in GDK, but that doesn't happen anymore, see library.gnome.org/devel/gtk/stable/… – Spudd86 Jun 16 '10 at 20:41
Yeah I understand client side windows in concept, but how do I send a client message to a GtkWindow or GtkWidget? (as opposed to a GdkNativeWindow) – fret Jun 17 '10 at 7:27
I just noticed gtk_propagate_event... is that the right method to use? – fret Jun 17 '10 at 7:33
gtk_propagate_event does what I want, but it's synchronous. I'm hoping for a method that "posts" the event onto a queue (thread-safe!) and it gets delivered later. – fret Jun 17 '10 at 7:40
feedback

1 Answer

I have a solution that seems to work. It may not be optimal but it's in the ball park.

struct GlibEventParams
{
    GtkWidget *w;
    GdkEvent *e;
};

static gboolean 
GlibPostMessage(GlibEventParams *p)
{
    GDK_THREADS_ENTER ();
    gtk_propagate_event(p->w, p->e);
    gdk_event_free(p->e);
    delete p;
    GDK_THREADS_LEAVE ();

    return FALSE;
}

bool MySendEvent(GtkWidget *Wnd, GtkEvent *Event)
{
    bool Status = false;

    if (Event && Wnd)
    {
        GlibEventParams *p = new GlibEventParams;
        p->w = Wnd;
        p->e = gdk_event_new(GDK_CLIENT_EVENT);
        *p->e = *Event;
        Status = g_idle_add((GSourceFunc)GlibPostMessage, p) > 0;
    }
    else assert(!"No Event or Wnd");

    return Status;
}

If someone else has constructive comments I'll add/modify this as required.

link|improve this answer
gtk_main_do_event () library.gnome.org/devel/gtk/stable/… – Spudd86 Jun 18 '10 at 13:48
also see library.gnome.org/devel/gobject/stable/… – Spudd86 Jun 18 '10 at 13:59
Are you saying I should be calling gtk_main_do_event instead of gtk_propagate_event? That would mean I have to set the GtkWidget pointer instead the GtkEvent structure by hand... which I can do. Is that where gtk_main_do_event gets it's widget pointer from? – fret Jun 22 '10 at 1:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.