jdk/src/java.desktop/macosx/native/libawt_lwawt/awt/CTrayIcon.m
author anashaty
Tue, 20 Jan 2015 19:26:14 +0300
changeset 28990 2656e19f0cd6
parent 26751 70bac69b37c9
child 32872 abca6234313d
permissions -rw-r--r--
8068283: Mac OS Incompatibility between JDK 6 and 8 regarding input method handling Reviewed-by: ant, kizune
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     1
/*
23268
2cdb715ff32d 8029868: Fix KSS issues in sun.lwawt.macosx
pchelko
parents: 15322
diff changeset
     2
 * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     4
 *
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    10
 *
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    15
 * accompanied this code).
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    16
 *
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    20
 *
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    23
 * questions.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    24
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    25
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    26
#import <AppKit/AppKit.h>
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    27
#import <JavaNativeFoundation/JavaNativeFoundation.h>
24555
42926c558bc8 8042752: [macosx] NSEvent instances leak throw JNI local references
pchelko
parents: 23328
diff changeset
    28
#import "jni_util.h"
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    29
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    30
#import "CTrayIcon.h"
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    31
#import "ThreadUtilities.h"
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    32
#include "GeomUtilities.h"
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
    33
#import "LWCToolkit.h"
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    34
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    35
#define kImageInset 4.0
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    36
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    37
/**
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    38
 * If the image of the specified size won't fit into the status bar,
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    39
 * then scale it down proprtionally. Otherwise, leave it as is.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    40
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    41
static NSSize ScaledImageSizeForStatusBar(NSSize imageSize) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    42
    NSRect imageRect = NSMakeRect(0.0, 0.0, imageSize.width, imageSize.height);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    43
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    44
    // There is a black line at the bottom of the status bar
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    45
    // that we don't want to cover with image pixels.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    46
    CGFloat desiredHeight = [[NSStatusBar systemStatusBar] thickness] - 1.0;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    47
    CGFloat scaleFactor = MIN(1.0, desiredHeight/imageSize.height);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    48
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    49
    imageRect.size.width *= scaleFactor;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    50
    imageRect.size.height *= scaleFactor;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    51
    imageRect = NSIntegralRect(imageRect);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    52
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    53
    return imageRect.size;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    54
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    55
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    56
@implementation AWTTrayIcon
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    57
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    58
- (id) initWithPeer:(jobject)thePeer {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    59
    if (!(self = [super init])) return nil;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    60
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    61
    peer = thePeer;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    62
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    63
    theItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    64
    [theItem retain];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    65
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    66
    view = [[AWTTrayIconView alloc] initWithTrayIcon:self];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    67
    [theItem setView:view];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    68
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    69
    return self;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    70
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    71
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    72
-(void) dealloc {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    73
    JNIEnv *env = [ThreadUtilities getJNIEnvUncached];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    74
    JNFDeleteGlobalRef(env, peer);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    75
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    76
    [[NSStatusBar systemStatusBar] removeStatusItem: theItem];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    77
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    78
    // Its a bad idea to force the item to release our view by setting
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    79
    // the item's view to nil: it can lead to a crash in some scenarios.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    80
    // The item will release the view later on, so just set the view's image
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
    81
    // and tray icon to nil since we are done with it.
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    82
    [view setImage: nil];
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
    83
    [view setTrayIcon: nil];
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    84
    [view release];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    85
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    86
    [theItem release];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    87
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    88
    [super dealloc];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    89
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    90
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    91
- (void) setTooltip:(NSString *) tooltip{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    92
    [view setToolTip:tooltip];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    93
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    94
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    95
-(NSStatusItem *) theItem{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    96
    return theItem;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    97
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    98
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    99
- (jobject) peer{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   100
    return peer;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   101
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   102
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   103
- (void) setImage:(NSImage *) imagePtr sizing:(BOOL)autosize{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   104
    NSSize imageSize = [imagePtr size];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   105
    NSSize scaledSize = ScaledImageSizeForStatusBar(imageSize);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   106
    if (imageSize.width != scaledSize.width ||
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   107
        imageSize.height != scaledSize.height) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   108
        [imagePtr setSize: scaledSize];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   109
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   110
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   111
    CGFloat itemLength = scaledSize.width + 2.0*kImageInset;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   112
    [theItem setLength:itemLength];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   113
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   114
    [view setImage:imagePtr];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   115
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   116
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   117
- (NSPoint) getLocationOnScreen {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   118
    return [[view window] convertBaseToScreen: NSZeroPoint];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   119
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   120
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   121
-(void) deliverJavaMouseEvent: (NSEvent *) event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   122
    [AWTToolkit eventCountPlusPlus];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   123
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   124
    JNIEnv *env = [ThreadUtilities getJNIEnv];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   125
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   126
    NSPoint eventLocation = [event locationInWindow];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   127
    NSPoint localPoint = [view convertPoint: eventLocation fromView: nil];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   128
    localPoint.y = [view bounds].size.height - localPoint.y;
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   129
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   130
    NSPoint absP = [NSEvent mouseLocation];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   131
    NSEventType type = [event type];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   132
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   133
    NSRect screenRect = [[NSScreen mainScreen] frame];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   134
    absP.y = screenRect.size.height - absP.y;
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   135
    jint clickCount;
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   136
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   137
    clickCount = [event clickCount];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   138
23268
2cdb715ff32d 8029868: Fix KSS issues in sun.lwawt.macosx
pchelko
parents: 15322
diff changeset
   139
    static JNF_CLASS_CACHE(jc_NSEvent, "sun/lwawt/macosx/NSEvent");
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   140
    static JNF_CTOR_CACHE(jctor_NSEvent, jc_NSEvent, "(IIIIIIIIDD)V");
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   141
    jobject jEvent = JNFNewObject(env, jctor_NSEvent,
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   142
                                  [event type],
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   143
                                  [event modifierFlags],
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   144
                                  clickCount,
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   145
                                  [event buttonNumber],
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   146
                                  (jint)localPoint.x, (jint)localPoint.y,
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   147
                                  (jint)absP.x, (jint)absP.y,
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   148
                                  [event deltaY],
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   149
                                  [event deltaX]);
24555
42926c558bc8 8042752: [macosx] NSEvent instances leak throw JNI local references
pchelko
parents: 23328
diff changeset
   150
    CHECK_NULL(jEvent);
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   151
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   152
    static JNF_CLASS_CACHE(jc_TrayIcon, "sun/lwawt/macosx/CTrayIcon");
23268
2cdb715ff32d 8029868: Fix KSS issues in sun.lwawt.macosx
pchelko
parents: 15322
diff changeset
   153
    static JNF_MEMBER_CACHE(jm_handleMouseEvent, jc_TrayIcon, "handleMouseEvent", "(Lsun/lwawt/macosx/NSEvent;)V");
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   154
    JNFCallVoidMethod(env, peer, jm_handleMouseEvent, jEvent);
24555
42926c558bc8 8042752: [macosx] NSEvent instances leak throw JNI local references
pchelko
parents: 23328
diff changeset
   155
    (*env)->DeleteLocalRef(env, jEvent);
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   156
}
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   157
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   158
@end //AWTTrayIcon
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   159
//================================================
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   160
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   161
@implementation AWTTrayIconView
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   162
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   163
-(id)initWithTrayIcon:(AWTTrayIcon *)theTrayIcon {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   164
    self = [super initWithFrame:NSMakeRect(0, 0, 1, 1)];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   165
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   166
    [self setTrayIcon: theTrayIcon];
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   167
    isHighlighted = NO;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   168
    image = nil;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   169
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   170
    return self;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   171
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   172
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   173
-(void) dealloc {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   174
    [image release];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   175
    [super dealloc];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   176
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   177
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   178
- (void)setHighlighted:(BOOL)aFlag
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   179
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   180
    if (isHighlighted != aFlag) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   181
        isHighlighted = aFlag;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   182
        [self setNeedsDisplay:YES];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   183
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   184
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   185
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   186
- (void)setImage:(NSImage*)anImage {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   187
    [anImage retain];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   188
    [image release];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   189
    image = anImage;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   190
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   191
    if (image != nil) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   192
        [self setNeedsDisplay:YES];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   193
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   194
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   195
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   196
-(void)setTrayIcon:(AWTTrayIcon*)theTrayIcon {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   197
    trayIcon = theTrayIcon;
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   198
}
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   199
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   200
- (void)menuWillOpen:(NSMenu *)menu
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   201
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   202
    [self setHighlighted:YES];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   203
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   204
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   205
- (void)menuDidClose:(NSMenu *)menu
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   206
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   207
    [menu setDelegate:nil];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   208
    [self setHighlighted:NO];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   209
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   210
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   211
- (void)drawRect:(NSRect)dirtyRect
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   212
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   213
    if (image == nil) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   214
        return;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   215
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   216
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   217
    NSRect bounds = [self bounds];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   218
    NSSize imageSize = [image size];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   219
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   220
    NSRect drawRect = {{ (bounds.size.width - imageSize.width) / 2.0,
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   221
        (bounds.size.height - imageSize.height) / 2.0 }, imageSize};
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   222
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   223
    // don't cover bottom pixels of the status bar with the image
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   224
    if (drawRect.origin.y < 1.0) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   225
        drawRect.origin.y = 1.0;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   226
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   227
    drawRect = NSIntegralRect(drawRect);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   228
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   229
    [trayIcon.theItem drawStatusBarBackgroundInRect:bounds
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   230
                                withHighlight:isHighlighted];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   231
    [image drawInRect:drawRect
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   232
             fromRect:NSZeroRect
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   233
            operation:NSCompositeSourceOver
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   234
             fraction:1.0
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   235
     ];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   236
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   237
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   238
- (void)mouseDown:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   239
    [trayIcon deliverJavaMouseEvent: event];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   240
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   241
    // don't show the menu on ctrl+click: it triggers ACTION event, like right click
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   242
    if (([event modifierFlags] & NSControlKeyMask) == 0) {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   243
        //find CTrayIcon.getPopupMenuModel method and call it to get popup menu ptr.
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   244
        JNIEnv *env = [ThreadUtilities getJNIEnv];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   245
        static JNF_CLASS_CACHE(jc_CTrayIcon, "sun/lwawt/macosx/CTrayIcon");
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   246
        static JNF_MEMBER_CACHE(jm_getPopupMenuModel, jc_CTrayIcon, "getPopupMenuModel", "()J");
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   247
        jlong res = JNFCallLongMethod(env, trayIcon.peer, jm_getPopupMenuModel);
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   248
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   249
        if (res != 0) {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   250
            CPopupMenu *cmenu = jlong_to_ptr(res);
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   251
            NSMenu* menu = [cmenu menu];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   252
            [menu setDelegate:self];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   253
            [trayIcon.theItem popUpStatusItemMenu:menu];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   254
            [self setNeedsDisplay:YES];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   255
        }
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   256
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   257
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   258
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   259
- (void) mouseUp:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   260
    [trayIcon deliverJavaMouseEvent: event];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   261
}
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   262
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   263
- (void) mouseDragged:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   264
    [trayIcon deliverJavaMouseEvent: event];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   265
}
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   266
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   267
- (void) rightMouseDown:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   268
    [trayIcon deliverJavaMouseEvent: event];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   269
}
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   270
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   271
- (void) rightMouseUp:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   272
    [trayIcon deliverJavaMouseEvent: event];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   273
}
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   274
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   275
- (void) rightMouseDragged:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   276
    [trayIcon deliverJavaMouseEvent: event];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   277
}
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   278
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   279
- (void) otherMouseDown:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   280
    [trayIcon deliverJavaMouseEvent: event];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   281
}
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   282
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   283
- (void) otherMouseUp:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   284
    [trayIcon deliverJavaMouseEvent: event];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   285
}
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   286
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   287
- (void) otherMouseDragged:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   288
    [trayIcon deliverJavaMouseEvent: event];
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   289
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   290
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   291
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   292
@end //AWTTrayIconView
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   293
//================================================
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   294
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   295
/*
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   296
 * Class:     sun_lwawt_macosx_CTrayIcon
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   297
 * Method:    nativeCreate
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   298
 * Signature: ()J
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   299
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   300
JNIEXPORT jlong JNICALL Java_sun_lwawt_macosx_CTrayIcon_nativeCreate
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   301
(JNIEnv *env, jobject peer) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   302
    __block AWTTrayIcon *trayIcon = nil;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   303
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   304
JNF_COCOA_ENTER(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   305
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   306
    jobject thePeer = JNFNewGlobalRef(env, peer);
15322
3638f33225ec 7179050: [macosx] Make LWAWT be able to run on AppKit thread
serb
parents: 14157
diff changeset
   307
    [ThreadUtilities performOnMainThreadWaiting:YES block:^(){
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   308
        trayIcon = [[AWTTrayIcon alloc] initWithPeer:thePeer];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   309
    }];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   310
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   311
JNF_COCOA_EXIT(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   312
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   313
    return ptr_to_jlong(trayIcon);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   314
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   315
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   316
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   317
/*
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   318
 * Class: java_awt_TrayIcon
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   319
 * Method: initIDs
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   320
 * Signature: ()V
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   321
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   322
JNIEXPORT void JNICALL Java_java_awt_TrayIcon_initIDs
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   323
(JNIEnv *env, jclass cls) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   324
    //Do nothing.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   325
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   326
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   327
/*
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   328
 * Class:     sun_lwawt_macosx_CTrayIcon
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   329
 * Method:    nativeSetToolTip
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   330
 * Signature: (JLjava/lang/String;)V
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   331
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   332
JNIEXPORT void JNICALL Java_sun_lwawt_macosx_CTrayIcon_nativeSetToolTip
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   333
(JNIEnv *env, jobject self, jlong model, jstring jtooltip) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   334
JNF_COCOA_ENTER(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   335
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   336
    AWTTrayIcon *icon = jlong_to_ptr(model);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   337
    NSString *tooltip = JNFJavaToNSString(env, jtooltip);
15322
3638f33225ec 7179050: [macosx] Make LWAWT be able to run on AppKit thread
serb
parents: 14157
diff changeset
   338
    [ThreadUtilities performOnMainThreadWaiting:NO block:^(){
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   339
        [icon setTooltip:tooltip];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   340
    }];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   341
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   342
JNF_COCOA_EXIT(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   343
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   344
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   345
/*
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   346
 * Class:     sun_lwawt_macosx_CTrayIcon
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   347
 * Method:    setNativeImage
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   348
 * Signature: (JJZ)V
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   349
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   350
JNIEXPORT void JNICALL Java_sun_lwawt_macosx_CTrayIcon_setNativeImage
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   351
(JNIEnv *env, jobject self, jlong model, jlong imagePtr, jboolean autosize) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   352
JNF_COCOA_ENTER(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   353
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   354
    AWTTrayIcon *icon = jlong_to_ptr(model);
15322
3638f33225ec 7179050: [macosx] Make LWAWT be able to run on AppKit thread
serb
parents: 14157
diff changeset
   355
    [ThreadUtilities performOnMainThreadWaiting:YES block:^(){
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   356
        [icon setImage:jlong_to_ptr(imagePtr) sizing:autosize];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   357
    }];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   358
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   359
JNF_COCOA_EXIT(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   360
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   361
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   362
JNIEXPORT jobject JNICALL
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   363
Java_sun_lwawt_macosx_CTrayIcon_nativeGetIconLocation
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   364
(JNIEnv *env, jobject self, jlong model) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   365
    jobject jpt = NULL;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   366
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   367
JNF_COCOA_ENTER(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   368
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   369
    __block NSPoint pt = NSZeroPoint;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   370
    AWTTrayIcon *icon = jlong_to_ptr(model);
15322
3638f33225ec 7179050: [macosx] Make LWAWT be able to run on AppKit thread
serb
parents: 14157
diff changeset
   371
    [ThreadUtilities performOnMainThreadWaiting:YES block:^(){
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   372
        NSPoint loc = [icon getLocationOnScreen];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   373
        pt = ConvertNSScreenPoint(env, loc);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   374
    }];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   375
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   376
    jpt = NSToJavaPoint(env, pt);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   377
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   378
JNF_COCOA_EXIT(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   379
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   380
    return jpt;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   381
}