Implement new method -setPartentWindow:forChildWindow: for X and

Windows.

Adjust y coordinate of point in compositeGState:... for cairo. This
solves bug #24709. 


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@27718 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2009-01-29 09:32:32 +00:00
parent d9f8287ba9
commit f99e97c43e
4 changed files with 49 additions and 9 deletions

View file

@ -1563,6 +1563,11 @@ NSLog(@"Callback");
SetCursor((HCURSOR)cid);
}
- (void) setPartentWindow: (int)partentWin
forChildWindow: (int)childWin
{
SetParent((HWND)childWin, (HWND)partentWin);
}
@end