jdk/src/solaris/classes/sun/awt/X11/XSystemTrayPeer.java
author darcy
Thu, 13 Mar 2014 12:40:27 -0700
changeset 23647 41d22f2dbeb5
parent 23010 6dadb192ad81
permissions -rw-r--r--
8033712: Fix more serial lint warnings in sun.awt Reviewed-by: alanb, serb, prr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 18178
diff changeset
     2
 * Copyright (c) 2005, 2013, Oracle and/or its affiliates. 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
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3938
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3938
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
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
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3938
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3938
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3938
diff changeset
    23
 * questions.
2
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 sun.awt.SunToolkit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import sun.awt.AppContext;
13604
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
    32
import sun.awt.AWTAccessor;
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 439
diff changeset
    33
import sun.util.logging.PlatformLogger;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
public class XSystemTrayPeer implements SystemTrayPeer, XMSelectionListener {
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 439
diff changeset
    36
    private static final PlatformLogger log = PlatformLogger.getLogger("sun.awt.X11.XSystemTrayPeer");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    SystemTray target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    static XSystemTrayPeer peerInstance; // there is only one SystemTray peer per application
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    private volatile boolean available;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    private final XMSelection selection = new XMSelection("_NET_SYSTEM_TRAY");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    private static final int SCREEN = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    private static final String SYSTEM_TRAY_PROPERTY_NAME = "systemTray";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    private static final XAtom _NET_SYSTEM_TRAY = XAtom.get("_NET_SYSTEM_TRAY_S" + SCREEN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private static final XAtom _XEMBED_INFO = XAtom.get("_XEMBED_INFO");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private static final XAtom _NET_SYSTEM_TRAY_OPCODE = XAtom.get("_NET_SYSTEM_TRAY_OPCODE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private static final XAtom _NET_WM_ICON = XAtom.get("_NET_WM_ICON");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private static final long SYSTEM_TRAY_REQUEST_DOCK = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    XSystemTrayPeer(SystemTray target) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        this.target = target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        peerInstance = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        selection.addSelectionListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        long selection_owner = selection.getOwner(SCREEN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        available = (selection_owner != XConstants.None);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16839
diff changeset
    61
        if (log.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13604
diff changeset
    62
            log.fine(" check if system tray is available. selection owner: " + selection_owner);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13604
diff changeset
    63
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    public void ownerChanged(int screen, XMSelection sel, long newOwner, long data, long timestamp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        if (screen != SCREEN) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        if (!available) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            available = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            firePropertyChange(SYSTEM_TRAY_PROPERTY_NAME, null, target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            removeTrayPeers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        createTrayPeers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    public void ownerDeath(int screen, XMSelection sel, long deadOwner) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        if (screen != SCREEN) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        if (available) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            available = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            firePropertyChange(SYSTEM_TRAY_PROPERTY_NAME, target, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            removeTrayPeers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    public void selectionChanged(int screen, XMSelection sel, long owner, XPropertyEvent event) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    public Dimension getTrayIconSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        return new Dimension(XTrayIconPeer.TRAY_ICON_HEIGHT, XTrayIconPeer.TRAY_ICON_WIDTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    boolean isAvailable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        return available;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    void dispose() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        selection.removeSelectionListener(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    // ***********************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    // ***********************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    void addTrayIcon(XTrayIconPeer tiPeer) throws AWTException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        long selection_owner = selection.getOwner(SCREEN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16839
diff changeset
   111
        if (log.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13604
diff changeset
   112
            log.fine(" send SYSTEM_TRAY_REQUEST_DOCK message to owner: " + selection_owner);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13604
diff changeset
   113
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        if (selection_owner == XConstants.None) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            throw new AWTException("TrayIcon couldn't be displayed.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        long tray_window = tiPeer.getWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        long data[] = new long[] {XEmbedHelper.XEMBED_VERSION, XEmbedHelper.XEMBED_MAPPED};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        long data_ptr = Native.card32ToData(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        _XEMBED_INFO.setAtomData(tray_window, data_ptr, data.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        sendMessage(selection_owner, SYSTEM_TRAY_REQUEST_DOCK, tray_window, 0, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    void sendMessage(long win, long msg, long data1, long data2, long data3) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        XClientMessageEvent xev = new XClientMessageEvent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        try {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   132
            xev.set_type(XConstants.ClientMessage);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            xev.set_window(win);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            xev.set_format(32);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            xev.set_message_type(_NET_SYSTEM_TRAY_OPCODE.getAtom());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            xev.set_data(0, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            xev.set_data(1, msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            xev.set_data(2, data1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            xev.set_data(3, data2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            xev.set_data(4, data3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                XlibWrapper.XSendEvent(XToolkit.getDisplay(), win, false,
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 2
diff changeset
   145
                                       XConstants.NoEventMask, xev.pData);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            xev.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    static XSystemTrayPeer getPeerInstance() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        return peerInstance;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
13604
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   158
    private void firePropertyChange(final String propertyName,
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   159
                                    final Object oldValue,
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   160
                                    final Object newValue) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        Runnable runnable = new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                public void run() {
13604
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   163
                    AWTAccessor.getSystemTrayAccessor()
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   164
                        .firePropertyChange(target, propertyName, oldValue, newValue);
2
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
        Runnable runnable = new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                    TrayIcon[] icons = target.getTrayIcons();
13604
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   174
                    try {
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   175
                        for (TrayIcon ti : icons) {
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   176
                            AWTAccessor.getTrayIconAccessor().addNotify(ti);
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   177
                        }
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   178
                    } catch (AWTException e) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        invokeOnEachAppContext(runnable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
13604
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   185
    private void removeTrayPeers() {
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   186
        Runnable runnable = new Runnable() {
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   187
                public void run() {
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   188
                    TrayIcon[] icons = target.getTrayIcons();
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   189
                    for (TrayIcon ti : icons) {
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   190
                        AWTAccessor.getTrayIconAccessor().removeNotify(ti);
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   191
                    }
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   192
                }
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   193
            };
31089af1a447 7163201: Simplify toolkit internals references
bagiras
parents: 5506
diff changeset
   194
        invokeOnEachAppContext(runnable);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    private void invokeOnEachAppContext(Runnable runnable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        for (AppContext appContext : AppContext.getAppContexts()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            SunToolkit.invokeLaterOnAppContext(appContext, runnable);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
}