< prev index next >

src/java.desktop/macosx/native/libosxapp/NSApplicationAWT.h

Print this page




  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 
  26 /*
  27  * Must include this before JavaNativeFoundation.h to get jni.h from build
  28  */
  29 #include "jni.h"
  30 #include "jni_util.h"
  31 
  32 #import <Cocoa/Cocoa.h>
  33 #import <JavaNativeFoundation/JavaNativeFoundation.h>
  34 
  35 @interface NSApplicationAWT : NSApplication <NSUserNotificationCenterDelegate> {
  36     NSString *fApplicationName;
  37     NSWindow *eventTransparentWindow;
  38     NSTimeInterval dummyEventTimestamp;
  39     NSConditionLock* seenDummyEventLock;
  40 }
  41 
  42 - (void) finishLaunching;
  43 - (void) registerWithProcessManager;
  44 - (void) setDockIconWithEnv:(JNIEnv *)env;
  45 - (void) postDummyEvent:(bool) useCocoa;
  46 - (void) postRunnableEvent:(void (^)())block;
  47 - (void) waitForDummyEvent:(double) timeout;
  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 
  60 void OSXAPP_SetApplicationDelegate(id <NSApplicationDelegate> delegate);
  61 


  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 
  26 /*
  27  * Must include this before JavaNativeFoundation.h to get jni.h from build
  28  */
  29 #include "jni.h"
  30 #include "jni_util.h"
  31 
  32 #import <Cocoa/Cocoa.h>
  33 #import <JavaNativeFoundation/JavaNativeFoundation.h>
  34 
  35 JNIEXPORT @interface NSApplicationAWT : NSApplication <NSUserNotificationCenterDelegate> {
  36     NSString *fApplicationName;
  37     NSWindow *eventTransparentWindow;
  38     NSTimeInterval dummyEventTimestamp;
  39     NSConditionLock* seenDummyEventLock;
  40 }
  41 
  42 - (void) finishLaunching;
  43 - (void) registerWithProcessManager;
  44 - (void) setDockIconWithEnv:(JNIEnv *)env;
  45 - (void) postDummyEvent:(bool) useCocoa;
  46 - (void) postRunnableEvent:(void (^)())block;
  47 - (void) waitForDummyEvent:(double) timeout;
  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 
  60 JNIEXPORT void OSXAPP_SetApplicationDelegate(id <NSApplicationDelegate> delegate);
  61 
< prev index next >