diff options
author | Sven Gothel <[email protected]> | 2015-09-25 09:43:21 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-09-25 09:43:21 +0200 |
commit | d3185d3c79f04012e604039f84466479bab755f9 (patch) | |
tree | 81938b1234e45a008550802935b16afa1d2e94ab /src/newt/native/NewtMacWindow.h | |
parent | b4e4cad809c1b03b6be9a703a403d28c00249e5e (diff) |
Bug 1214 - NEWT MacOSX: Detect auto-resize of Window when it is larger than screen
- On OSX (similar to X11) a created window with size > screen
will get resized to fit screen size implicitly.
- Fix detects insets, position and size after onscreen window creation.
- Patch also merges insets and size change java callback
Diffstat (limited to 'src/newt/native/NewtMacWindow.h')
-rw-r--r-- | src/newt/native/NewtMacWindow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/newt/native/NewtMacWindow.h b/src/newt/native/NewtMacWindow.h index 7dc5c6e19..151eb0797 100644 --- a/src/newt/native/NewtMacWindow.h +++ b/src/newt/native/NewtMacWindow.h @@ -165,6 +165,7 @@ CGDirectDisplayID NewtScreen_getCGDirectDisplayIDByNSScreen(NSScreen *screen); - (BOOL) isRealized; - (void) updateInsets: (JNIEnv*) env jwin: (jobject) javaWin; +- (void) updateSizePosInsets: (JNIEnv*) env jwin: (jobject) javaWin defer: (jboolean)defer; - (void) attachToParent: (NSWindow*) parent; - (void) detachFromParent: (NSWindow*) parent; |