author | phh |
Sat, 30 Nov 2019 14:33:05 -0800 | |
changeset 59330 | 5b96c12f909d |
parent 51855 | 8bbb5cbac92c |
permissions | -rw-r--r-- |
12047 | 1 |
/* |
47508
33da1153954c
8187639: TrayIcon is not properly supported on macOS in multi-screen environment
serb
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved. |
12047 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
25 |
||
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32293
diff
changeset
|
26 |
/* |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32293
diff
changeset
|
27 |
* Must include this before JavaNativeFoundation.h to get jni.h from build |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32293
diff
changeset
|
28 |
*/ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32293
diff
changeset
|
29 |
#include "jni.h" |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32293
diff
changeset
|
30 |
#include "jni_util.h" |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32293
diff
changeset
|
31 |
|
12047 | 32 |
#import <Cocoa/Cocoa.h> |
33 |
#import <JavaNativeFoundation/JavaNativeFoundation.h> |
|
34 |
||
51855 | 35 |
JNIEXPORT @interface NSApplicationAWT : NSApplication <NSUserNotificationCenterDelegate> { |
12047 | 36 |
NSString *fApplicationName; |
37 |
NSWindow *eventTransparentWindow; |
|
13991
e62879b84a14
7124239: [macosx] sun.awt.SunToolkit.InfiniteLoop exception in realSync called from SwingTestHelper
leonidr
parents:
13539
diff
changeset
|
38 |
NSTimeInterval dummyEventTimestamp; |
e62879b84a14
7124239: [macosx] sun.awt.SunToolkit.InfiniteLoop exception in realSync called from SwingTestHelper
leonidr
parents:
13539
diff
changeset
|
39 |
NSConditionLock* seenDummyEventLock; |
12047 | 40 |
} |
41 |
||
42 |
- (void) finishLaunching; |
|
43 |
- (void) registerWithProcessManager; |
|
44 |
- (void) setDockIconWithEnv:(JNIEnv *)env; |
|
32293 | 45 |
- (void) postDummyEvent:(bool) useCocoa; |
31170
4d414cfb92cc
8068886: IDEA IntelliJ crashes in objc_msgSend when an accessibility tool is enabled
anashaty
parents:
25859
diff
changeset
|
46 |
- (void) postRunnableEvent:(void (^)())block; |
32293 | 47 |
- (void) waitForDummyEvent:(double) timeout; |
12047 | 48 |
|
49 |
+ (void) runAWTLoopWithApp:(NSApplication*)app; |
|
50 |
||
51 |
@end |
|
52 |
||
53 |
@interface NSApplication (CustomNIBAdditions) |
|
54 |
||
55 |
// Returns whether or not application is using its default NIB |
|
56 |
- (BOOL)usingDefaultNib; |
|
57 |
||
58 |
@end |
|
59 |
||
51855 | 60 |
JNIEXPORT void OSXAPP_SetApplicationDelegate(id <NSApplicationDelegate> delegate); |
12047 | 61 |