Support for true subwindows under Mac OS X (cont’d).

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10454 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2014-11-13 15:33:33 +00:00
parent d2072c818c
commit 43989ec606

View File

@ -2611,6 +2611,8 @@ static void set_subwindow_frame(Fl_Window *w) { // maps a subwindow at its corre
rp.size = NSMakeSize(w->w(), w->h());
if (!NSEqualRects(rp, [xid frame])) {
[xid setFrame:rp display:YES];
}
if (![xid parentWindow]) {
[pxid addChildWindow:xid ordered:NSWindowAbove]; // needs OS X 10.2
[xid orderWindow:NSWindowAbove relativeTo:[pxid windowNumber]]; // necessary under 10.3
}
@ -2913,7 +2915,7 @@ void Fl_Window::resize(int X,int Y,int W,int H) {
size_range(W, H, W, H);
}
Fl_Group::resize(X,Y,W,H);
if (parent()) set_subwindow_frame(this);
if ([i->xid parentWindow]) set_subwindow_frame(this);
// make sure that subwindows of this window don't leak out of their parent window
NSArray *children = [fl_xid(this) childWindows]; // 10.2
NSEnumerator *enumerator = [children objectEnumerator];