~ubuntu-branches/ubuntu/precise/xfce4-panel/precise

« back to all changes in this revision

Viewing changes to plugins/windowlist/xfce4-popup-windowlist.c

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2010-12-04 15:45:53 UTC
  • mto: (4.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 50.
  • Revision ID: james.westby@ubuntu.com-20101204154553-f452gq02eiksf09f
Tags: upstream-4.7.5
ImportĀ upstreamĀ versionĀ 4.7.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*      $Id$
2
 
 
3
 
        This program is free software; you can redistribute it and/or modify
4
 
        it under the terms of the GNU General Public License as published by
5
 
        the Free Software Foundation; either version 2, or (at your option)
6
 
        any later version.
7
 
 
8
 
        This program is distributed in the hope that it will be useful,
9
 
        but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
        GNU General Public License for more details.
12
 
 
13
 
        You should have received a copy of the GNU General Public License
14
 
        along with this program; if not, write to the Free Software
15
 
        Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
 
 
17
 
        (c) 2006 Darren Salt
18
 
 
19
 
        Derived from xfdesktop's xfce4-popup-menu
20
 
        (c) 2002-2006 Olivier Fourdan
21
 
 
22
 
 */
23
 
 
24
 
#include <gtk/gtk.h>
25
 
#include <glib.h>
26
 
#include <gdk/gdkx.h>
27
 
#include <X11/Xlib.h>
28
 
 
29
 
#ifdef HAVE_CONFIG_H
30
 
#include <config.h>
31
 
#endif
32
 
 
33
 
#include <stdio.h>
34
 
#include "xfce4-popup-windowlist.h"
35
 
 
36
 
#ifdef HAVE_STRING_H
37
 
#include <string.h>
38
 
#endif
39
 
 
40
 
#ifdef HAVE_STDLIB_H
41
 
#include <stdlib.h>
42
 
#endif
43
 
 
44
 
static gboolean
45
 
xfce4_check_is_running (GtkWidget *widget, Window *xid)
46
 
{
47
 
    GdkScreen *gscreen;
48
 
    gchar selection_name[32];
49
 
    Atom selection_atom;
50
 
 
51
 
    gscreen = gtk_widget_get_screen (widget);
52
 
    g_snprintf (selection_name,
53
 
                sizeof (selection_name), 
54
 
                XFCE_WINDOW_LIST_SELECTION"%d",
55
 
                gdk_screen_get_number (gscreen));
56
 
    selection_atom = XInternAtom (GDK_DISPLAY (), selection_name, False);
57
 
 
58
 
    if ((*xid = XGetSelectionOwner (GDK_DISPLAY (), selection_atom)))
59
 
        return TRUE;
60
 
 
61
 
    return FALSE;
62
 
}
63
 
 
64
 
int main (int argc,
65
 
          char *argv[])
66
 
{
67
 
    GdkEventClient gev;
68
 
    GtkWidget *win;
69
 
    Window id;
70
 
    
71
 
    gtk_init (&argc, &argv);
72
 
    
73
 
    win = gtk_invisible_new();
74
 
    gtk_widget_realize(win);
75
 
    
76
 
    gev.type = GDK_CLIENT_EVENT;
77
 
    gev.window = win->window;
78
 
    gev.send_event = TRUE;
79
 
    gev.message_type = gdk_atom_intern ("STRING", FALSE);
80
 
    gev.data_format = 8;
81
 
    if (argc > 1 && !strcmp (argv[1], "-pointer"))
82
 
      strcpy(gev.data.b, XFCE_WINDOW_LIST_AT_POINTER_MESSAGE);
83
 
    else
84
 
      strcpy(gev.data.b, XFCE_WINDOW_LIST_MESSAGE);
85
 
    
86
 
    if (xfce4_check_is_running (win, &id))
87
 
        gdk_event_send_client_message ((GdkEvent *)&gev,
88
 
                                       (GdkNativeWindow)id);
89
 
    else
90
 
        g_warning ("Can't find the xfce4-panel window list to popup.\n");
91
 
    gdk_flush();
92
 
    
93
 
    gtk_widget_destroy (win);
94
 
    
95
 
    return 0;
96
 
}