latest update
[hildon] / hildon-widgets / hildon-dialoghelp.c
1 /*
2  * This file is part of hildon-libs
3  *
4  * Copyright (C) 2005 Nokia Corporation.
5  *
6  * Contact: Luc Pionchon <luc.pionchon@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; either version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 /*
26  *  @file hildon-dialoghelp.c
27  *
28  *  This file provides API for the help dialog with
29  *  the optional icon.
30  *
31  */
32
33 #include <gdk/gdkx.h>
34 #include "hildon-dialoghelp.h"
35
36 static guint help_signal = 0;
37
38 static GdkFilterReturn
39 handle_xevent(GdkXEvent * xevent, GdkEvent * event, gpointer data)
40 {
41     XAnyEvent *eventti = xevent;
42
43     if (eventti->type == ClientMessage) {
44         Atom help_atom, wm_atom;
45         Display *disp;
46         XClientMessageEvent *cm;
47
48         disp = GDK_DISPLAY();
49         cm = xevent;
50
51         help_atom = XInternAtom(disp, "_NET_WM_CONTEXT_HELP", True);
52         wm_atom = XInternAtom(disp, "WM_PROTOCOLS", True);
53
54         if (cm->message_type == wm_atom && cm->data.l[0] == help_atom) {
55             /* XClientMessageEvent *cm = xevent; */
56             g_signal_emit(G_OBJECT(data), help_signal, 0);
57         }
58
59         return GDK_FILTER_REMOVE;       /* Event handled, don't process
60                                            further */
61     }
62
63     return GDK_FILTER_CONTINUE; /* Event not handled */
64 }
65
66 /**
67  * gtk_dialog_help_enable:
68  * @dialog: The dialog of which help is to be enabled.
69  *
70  * Enables context help button for given dialog. The signal "help" can be
71  * connected to handler by normal gtk methods. Note that this function
72  * has to be called before the dialog is shown.
73  **/
74 void gtk_dialog_help_enable(GtkDialog * dialog)
75 {
76     Atom help_atom;
77     Display *disp;
78     GdkWindow *window;
79
80     if (help_signal == 0) {
81         help_signal = g_signal_new("help", GTK_TYPE_DIALOG,
82                                    G_SIGNAL_ACTION, (guint) - 1, NULL,
83                                    NULL, g_cclosure_marshal_VOID__VOID,
84                                    G_TYPE_NONE, 0);
85     }
86
87     g_return_if_fail(GTK_IS_DIALOG(dialog));
88
89     gtk_widget_realize(GTK_WIDGET(dialog));
90     window = GTK_WIDGET(dialog)->window;
91     disp = GDK_WINDOW_XDISPLAY(window);
92
93     help_atom = XInternAtom(disp, "_NET_WM_CONTEXT_HELP", False);
94     XSetWMProtocols(disp, GDK_WINDOW_XID(window), &help_atom, 1);
95     gdk_window_add_filter(window, handle_xevent, dialog);
96 }