jdk/src/java.desktop/macosx/native/libawt_lwawt/awt/CTrayIcon.m
author serb
Sat, 26 Sep 2015 22:38:36 +0300
changeset 32872 abca6234313d
parent 26751 70bac69b37c9
child 37559 09143ccbfc6e
permissions -rw-r--r--
8079965: Stop ignoring warnings for libawt_lwawt Reviewed-by: prr, ihse
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
/*
32872
abca6234313d 8079965: Stop ignoring warnings for libawt_lwawt
serb
parents: 26751
diff changeset
     2
 * Copyright (c) 2011, 2015, 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
32872
abca6234313d 8079965: Stop ignoring warnings for libawt_lwawt
serb
parents: 26751
diff changeset
    26
#import "jni_util.h"
abca6234313d 8079965: Stop ignoring warnings for libawt_lwawt
serb
parents: 26751
diff changeset
    27
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    28
#import <AppKit/AppKit.h>
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    29
#import <JavaNativeFoundation/JavaNativeFoundation.h>
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    30
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    31
#import "CTrayIcon.h"
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    32
#import "ThreadUtilities.h"
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    33
#include "GeomUtilities.h"
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
    34
#import "LWCToolkit.h"
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    35
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    36
#define kImageInset 4.0
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
/**
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    39
 * 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
    40
 * then scale it down proprtionally. Otherwise, leave it as is.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    41
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    42
static NSSize ScaledImageSizeForStatusBar(NSSize imageSize) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    43
    NSRect imageRect = NSMakeRect(0.0, 0.0, imageSize.width, imageSize.height);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    44
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    45
    // 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
    46
    // that we don't want to cover with image pixels.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    47
    CGFloat desiredHeight = [[NSStatusBar systemStatusBar] thickness] - 1.0;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    48
    CGFloat scaleFactor = MIN(1.0, desiredHeight/imageSize.height);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    49
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    50
    imageRect.size.width *= scaleFactor;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    51
    imageRect.size.height *= scaleFactor;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    52
    imageRect = NSIntegralRect(imageRect);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    53
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    54
    return imageRect.size;
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    57
@implementation AWTTrayIcon
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    58
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    59
- (id) initWithPeer:(jobject)thePeer {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    60
    if (!(self = [super init])) return nil;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    61
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    62
    peer = thePeer;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    63
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    64
    theItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    65
    [theItem retain];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    66
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    67
    view = [[AWTTrayIconView alloc] initWithTrayIcon:self];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    68
    [theItem setView:view];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    69
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    70
    return self;
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    73
-(void) dealloc {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    74
    JNIEnv *env = [ThreadUtilities getJNIEnvUncached];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    75
    JNFDeleteGlobalRef(env, peer);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    76
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    77
    [[NSStatusBar systemStatusBar] removeStatusItem: theItem];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    78
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    79
    // 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
    80
    // 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
    81
    // 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
    82
    // 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
    83
    [view setImage: nil];
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
    84
    [view setTrayIcon: nil];
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    85
    [view release];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    86
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    87
    [theItem release];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    88
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    89
    [super dealloc];
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    92
- (void) setTooltip:(NSString *) tooltip{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    93
    [view setToolTip:tooltip];
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    96
-(NSStatusItem *) theItem{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    97
    return theItem;
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   100
- (jobject) peer{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   101
    return peer;
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   104
- (void) setImage:(NSImage *) imagePtr sizing:(BOOL)autosize{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   105
    NSSize imageSize = [imagePtr size];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   106
    NSSize scaledSize = ScaledImageSizeForStatusBar(imageSize);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   107
    if (imageSize.width != scaledSize.width ||
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   108
        imageSize.height != scaledSize.height) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   109
        [imagePtr setSize: scaledSize];
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   112
    CGFloat itemLength = scaledSize.width + 2.0*kImageInset;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   113
    [theItem setLength:itemLength];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   114
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   115
    [view setImage:imagePtr];
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   118
- (NSPoint) getLocationOnScreen {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   119
    return [[view window] convertBaseToScreen: NSZeroPoint];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   120
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   121
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   122
-(void) deliverJavaMouseEvent: (NSEvent *) event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   123
    [AWTToolkit eventCountPlusPlus];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   124
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   125
    JNIEnv *env = [ThreadUtilities getJNIEnv];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   126
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   127
    NSPoint eventLocation = [event locationInWindow];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   128
    NSPoint localPoint = [view convertPoint: eventLocation fromView: nil];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   129
    localPoint.y = [view bounds].size.height - localPoint.y;
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   130
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   131
    NSPoint absP = [NSEvent mouseLocation];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   132
    NSEventType type = [event type];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   133
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   134
    NSRect screenRect = [[NSScreen mainScreen] frame];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   135
    absP.y = screenRect.size.height - absP.y;
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   136
    jint clickCount;
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   137
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   138
    clickCount = [event clickCount];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   139
23268
2cdb715ff32d 8029868: Fix KSS issues in sun.lwawt.macosx
pchelko
parents: 15322
diff changeset
   140
    static JNF_CLASS_CACHE(jc_NSEvent, "sun/lwawt/macosx/NSEvent");
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   141
    static JNF_CTOR_CACHE(jctor_NSEvent, jc_NSEvent, "(IIIIIIIIDD)V");
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   142
    jobject jEvent = JNFNewObject(env, jctor_NSEvent,
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   143
                                  [event type],
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   144
                                  [event modifierFlags],
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   145
                                  clickCount,
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   146
                                  [event buttonNumber],
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   147
                                  (jint)localPoint.x, (jint)localPoint.y,
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   148
                                  (jint)absP.x, (jint)absP.y,
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   149
                                  [event deltaY],
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   150
                                  [event deltaX]);
24555
42926c558bc8 8042752: [macosx] NSEvent instances leak throw JNI local references
pchelko
parents: 23328
diff changeset
   151
    CHECK_NULL(jEvent);
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   152
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   153
    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
   154
    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
   155
    JNFCallVoidMethod(env, peer, jm_handleMouseEvent, jEvent);
24555
42926c558bc8 8042752: [macosx] NSEvent instances leak throw JNI local references
pchelko
parents: 23328
diff changeset
   156
    (*env)->DeleteLocalRef(env, jEvent);
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   157
}
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   158
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   159
@end //AWTTrayIcon
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   162
@implementation AWTTrayIconView
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   163
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   164
-(id)initWithTrayIcon:(AWTTrayIcon *)theTrayIcon {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   165
    self = [super initWithFrame:NSMakeRect(0, 0, 1, 1)];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   166
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   167
    [self setTrayIcon: theTrayIcon];
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   168
    isHighlighted = NO;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   169
    image = nil;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   170
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   171
    return self;
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   174
-(void) dealloc {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   175
    [image release];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   176
    [super dealloc];
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   179
- (void)setHighlighted:(BOOL)aFlag
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   180
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   181
    if (isHighlighted != aFlag) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   182
        isHighlighted = aFlag;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   183
        [self setNeedsDisplay:YES];
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   187
- (void)setImage:(NSImage*)anImage {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   188
    [anImage retain];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   189
    [image release];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   190
    image = anImage;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   191
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   192
    if (image != nil) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   193
        [self setNeedsDisplay:YES];
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
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   196
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   197
-(void)setTrayIcon:(AWTTrayIcon*)theTrayIcon {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   198
    trayIcon = theTrayIcon;
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   199
}
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   200
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   201
- (void)menuWillOpen:(NSMenu *)menu
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   202
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   203
    [self setHighlighted:YES];
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   206
- (void)menuDidClose:(NSMenu *)menu
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   207
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   208
    [menu setDelegate:nil];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   209
    [self setHighlighted:NO];
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   212
- (void)drawRect:(NSRect)dirtyRect
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   213
{
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   214
    if (image == nil) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   215
        return;
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   218
    NSRect bounds = [self bounds];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   219
    NSSize imageSize = [image size];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   220
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   221
    NSRect drawRect = {{ (bounds.size.width - imageSize.width) / 2.0,
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   222
        (bounds.size.height - imageSize.height) / 2.0 }, imageSize};
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   223
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   224
    // 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
   225
    if (drawRect.origin.y < 1.0) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   226
        drawRect.origin.y = 1.0;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   227
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   228
    drawRect = NSIntegralRect(drawRect);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   229
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   230
    [trayIcon.theItem drawStatusBarBackgroundInRect:bounds
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   231
                                withHighlight:isHighlighted];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   232
    [image drawInRect:drawRect
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   233
             fromRect:NSZeroRect
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   234
            operation:NSCompositeSourceOver
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   235
             fraction:1.0
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
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   238
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   239
- (void)mouseDown:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   240
    [trayIcon deliverJavaMouseEvent: event];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   241
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   242
    // 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
   243
    if (([event modifierFlags] & NSControlKeyMask) == 0) {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   244
        //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
   245
        JNIEnv *env = [ThreadUtilities getJNIEnv];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   246
        static JNF_CLASS_CACHE(jc_CTrayIcon, "sun/lwawt/macosx/CTrayIcon");
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   247
        static JNF_MEMBER_CACHE(jm_getPopupMenuModel, jc_CTrayIcon, "getPopupMenuModel", "()J");
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   248
        jlong res = JNFCallLongMethod(env, trayIcon.peer, jm_getPopupMenuModel);
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   249
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   250
        if (res != 0) {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   251
            CPopupMenu *cmenu = jlong_to_ptr(res);
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   252
            NSMenu* menu = [cmenu menu];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   253
            [menu setDelegate:self];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   254
            [trayIcon.theItem popUpStatusItemMenu:menu];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   255
            [self setNeedsDisplay:YES];
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   256
        }
12047
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
}
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   259
14157
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   260
- (void) mouseUp:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   261
    [trayIcon deliverJavaMouseEvent: event];
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
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   264
- (void) mouseDragged:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   265
    [trayIcon deliverJavaMouseEvent: event];
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
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   268
- (void) rightMouseDown:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   269
    [trayIcon deliverJavaMouseEvent: event];
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
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   272
- (void) rightMouseUp:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   273
    [trayIcon deliverJavaMouseEvent: event];
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
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   276
- (void) rightMouseDragged:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   277
    [trayIcon deliverJavaMouseEvent: event];
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
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   280
- (void) otherMouseDown:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   281
    [trayIcon deliverJavaMouseEvent: event];
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
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   284
- (void) otherMouseUp:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   285
    [trayIcon deliverJavaMouseEvent: event];
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
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   288
- (void) otherMouseDragged:(NSEvent *)event {
5d50d32dd770 7124321: [macosx] TrayIcon MouseListener is never triggered
leonidr
parents: 12047
diff changeset
   289
    [trayIcon deliverJavaMouseEvent: event];
12047
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   293
@end //AWTTrayIconView
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
/*
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   297
 * Class:     sun_lwawt_macosx_CTrayIcon
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   298
 * Method:    nativeCreate
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   299
 * Signature: ()J
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   300
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   301
JNIEXPORT jlong JNICALL Java_sun_lwawt_macosx_CTrayIcon_nativeCreate
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   302
(JNIEnv *env, jobject peer) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   303
    __block AWTTrayIcon *trayIcon = nil;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   304
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   305
JNF_COCOA_ENTER(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   306
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   307
    jobject thePeer = JNFNewGlobalRef(env, peer);
15322
3638f33225ec 7179050: [macosx] Make LWAWT be able to run on AppKit thread
serb
parents: 14157
diff changeset
   308
    [ThreadUtilities performOnMainThreadWaiting:YES block:^(){
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   309
        trayIcon = [[AWTTrayIcon alloc] initWithPeer:thePeer];
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   312
JNF_COCOA_EXIT(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   313
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   314
    return ptr_to_jlong(trayIcon);
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
/*
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   319
 * Class: java_awt_TrayIcon
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   320
 * Method: initIDs
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   321
 * Signature: ()V
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   322
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   323
JNIEXPORT void JNICALL Java_java_awt_TrayIcon_initIDs
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   324
(JNIEnv *env, jclass cls) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   325
    //Do nothing.
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
/*
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   329
 * Class:     sun_lwawt_macosx_CTrayIcon
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   330
 * Method:    nativeSetToolTip
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   331
 * Signature: (JLjava/lang/String;)V
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   332
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   333
JNIEXPORT void JNICALL Java_sun_lwawt_macosx_CTrayIcon_nativeSetToolTip
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   334
(JNIEnv *env, jobject self, jlong model, jstring jtooltip) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   335
JNF_COCOA_ENTER(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   336
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   337
    AWTTrayIcon *icon = jlong_to_ptr(model);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   338
    NSString *tooltip = JNFJavaToNSString(env, jtooltip);
15322
3638f33225ec 7179050: [macosx] Make LWAWT be able to run on AppKit thread
serb
parents: 14157
diff changeset
   339
    [ThreadUtilities performOnMainThreadWaiting:NO block:^(){
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   340
        [icon setTooltip:tooltip];
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   343
JNF_COCOA_EXIT(env);
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
/*
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   347
 * Class:     sun_lwawt_macosx_CTrayIcon
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   348
 * Method:    setNativeImage
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   349
 * Signature: (JJZ)V
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   350
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   351
JNIEXPORT void JNICALL Java_sun_lwawt_macosx_CTrayIcon_setNativeImage
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   352
(JNIEnv *env, jobject self, jlong model, jlong imagePtr, jboolean autosize) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   353
JNF_COCOA_ENTER(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   354
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   355
    AWTTrayIcon *icon = jlong_to_ptr(model);
15322
3638f33225ec 7179050: [macosx] Make LWAWT be able to run on AppKit thread
serb
parents: 14157
diff changeset
   356
    [ThreadUtilities performOnMainThreadWaiting:YES block:^(){
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   357
        [icon setImage:jlong_to_ptr(imagePtr) sizing:autosize];
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   360
JNF_COCOA_EXIT(env);
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   363
JNIEXPORT jobject JNICALL
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   364
Java_sun_lwawt_macosx_CTrayIcon_nativeGetIconLocation
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   365
(JNIEnv *env, jobject self, jlong model) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   366
    jobject jpt = NULL;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   367
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   368
JNF_COCOA_ENTER(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   369
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   370
    __block NSPoint pt = NSZeroPoint;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   371
    AWTTrayIcon *icon = jlong_to_ptr(model);
15322
3638f33225ec 7179050: [macosx] Make LWAWT be able to run on AppKit thread
serb
parents: 14157
diff changeset
   372
    [ThreadUtilities performOnMainThreadWaiting:YES block:^(){
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   373
        NSPoint loc = [icon getLocationOnScreen];
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   374
        pt = ConvertNSScreenPoint(env, loc);
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
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   377
    jpt = NSToJavaPoint(env, pt);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   378
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   379
JNF_COCOA_EXIT(env);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   380
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   381
    return jpt;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   382
}