jdk/src/solaris/classes/sun/awt/X11/XSystemTrayPeer.java
author dcherepanov
Wed, 30 Sep 2009 13:21:51 +0400
changeset 3968 7f37f405ff5a
parent 439 3488710b02f8
child 3938 ef327bd847c0
permissions -rw-r--r--
6853592: VM test nsk.regression.b4261880 fails with "X Error of failed request: BadWindow" inconsistently. Reviewed-by: art, anthony
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
     2
 * Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.awt.X11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.peer.SystemTrayPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.logging.Logger;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.lang.reflect.Method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.lang.reflect.InvocationTargetException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import sun.awt.SunToolkit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.awt.AppContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
public class XSystemTrayPeer implements SystemTrayPeer, XMSelectionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
    private static final Logger log = Logger.getLogger("sun.awt.X11.XSystemTrayPeer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    SystemTray target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    static XSystemTrayPeer peerInstance; // there is only one SystemTray peer per application
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    private volatile boolean available;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private final XMSelection selection = new XMSelection("_NET_SYSTEM_TRAY");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    private static final Method firePropertyChangeMethod =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        XToolkit.getMethod(SystemTray.class, "firePropertyChange", new Class[] {String.class, Object.class, Object.class});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private static final Method addNotifyMethod = XToolkit.getMethod(TrayIcon.class, "addNotify", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private static final Method removeNotifyMethod = XToolkit.getMethod(TrayIcon.class, "removeNotify", null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private static final int SCREEN = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    private static final String SYSTEM_TRAY_PROPERTY_NAME = "systemTray";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    private static final XAtom _NET_SYSTEM_TRAY = XAtom.get("_NET_SYSTEM_TRAY_S" + SCREEN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    private static final XAtom _XEMBED_INFO = XAtom.get("_XEMBED_INFO");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    private static final XAtom _NET_SYSTEM_TRAY_OPCODE = XAtom.get("_NET_SYSTEM_TRAY_OPCODE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    private static final XAtom _NET_WM_ICON = XAtom.get("_NET_WM_ICON");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    private static final long SYSTEM_TRAY_REQUEST_DOCK = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    XSystemTrayPeer(SystemTray target) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        this.target = target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        peerInstance = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        selection.addSelectionListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        long selection_owner = selection.getOwner(SCREEN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        available = (selection_owner != XConstants.None);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        log.fine(" check if system tray is available. selection owner: " + selection_owner);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    public void ownerChanged(int screen, XMSelection sel, long newOwner, long data, long timestamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        if (screen != SCREEN) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        if (!available) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            available = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            firePropertyChange(SYSTEM_TRAY_PROPERTY_NAME, null, target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            removeTrayPeers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        createTrayPeers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    public void ownerDeath(int screen, XMSelection sel, long deadOwner) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        if (screen != SCREEN) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        if (available) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            available = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            firePropertyChange(SYSTEM_TRAY_PROPERTY_NAME, target, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            removeTrayPeers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    public void selectionChanged(int screen, XMSelection sel, long owner, XPropertyEvent event) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    public Dimension getTrayIconSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        return new Dimension(XTrayIconPeer.TRAY_ICON_HEIGHT, XTrayIconPeer.TRAY_ICON_WIDTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    boolean isAvailable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        return available;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    void dispose() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        selection.removeSelectionListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    // ***********************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    // ***********************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    void addTrayIcon(XTrayIconPeer tiPeer) throws AWTException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        long selection_owner = selection.getOwner(SCREEN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        log.fine(" send SYSTEM_TRAY_REQUEST_DOCK message to owner: " + selection_owner);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        if (selection_owner == XConstants.None) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            throw new AWTException("TrayIcon couldn't be displayed.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        long tray_window = tiPeer.getWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        long data[] = new long[] {XEmbedHelper.XEMBED_VERSION, XEmbedHelper.XEMBED_MAPPED};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        long data_ptr = Native.card32ToData(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        _XEMBED_INFO.setAtomData(tray_window, data_ptr, data.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        sendMessage(selection_owner, SYSTEM_TRAY_REQUEST_DOCK, tray_window, 0, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    void sendMessage(long win, long msg, long data1, long data2, long data3) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        XClientMessageEvent xev = new XClientMessageEvent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        try {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   134
            xev.set_type(XConstants.ClientMessage);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            xev.set_window(win);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            xev.set_format(32);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            xev.set_message_type(_NET_SYSTEM_TRAY_OPCODE.getAtom());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            xev.set_data(0, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            xev.set_data(1, msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            xev.set_data(2, data1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            xev.set_data(3, data2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            xev.set_data(4, data3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                XlibWrapper.XSendEvent(XToolkit.getDisplay(), win, false,
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   147
                                       XConstants.NoEventMask, xev.pData);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            xev.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    static XSystemTrayPeer getPeerInstance() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        return peerInstance;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    private void firePropertyChange(final String propertyName, final Object oldValue, final Object newValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        Runnable runnable = new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                    Object[] args = new Object[] {propertyName, oldValue, newValue};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                    invokeMethod(firePropertyChangeMethod, target, args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        invokeOnEachAppContext(runnable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    private void createTrayPeers() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        invokeOnEachTrayIcon(addNotifyMethod);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    private void removeTrayPeers() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        invokeOnEachTrayIcon(removeNotifyMethod);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    private void invokeOnEachTrayIcon(final Method method) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        Runnable runnable = new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                    TrayIcon[] icons = target.getTrayIcons();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                    for (TrayIcon ti : icons) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                        invokeMethod(method, ti, (Object[]) null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        invokeOnEachAppContext(runnable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    private void invokeMethod(Method method, Object obj, Object[] args) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        try{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            method.invoke(obj, args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        } catch (InvocationTargetException e){
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        } catch (IllegalAccessException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    private void invokeOnEachAppContext(Runnable runnable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        for (AppContext appContext : AppContext.getAppContexts()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            SunToolkit.invokeLaterOnAppContext(appContext, runnable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
}