Link to home
Start Free TrialLog in
Avatar of jarnjar
jarnjar

asked on

C++ Windows Overlapping....

How can I tell whether or not some other random window is blocking part of mine?  This is needed so I can redraw my window when it, or part of it, is again visible.  You know what I am trying to say....
Avatar of brettmjohnson
brettmjohnson
Flag of United States of America image

This depends upon the operating system and window server you are programming to.
For instance, in my preferred development environments (NeXTstep, OpenStep, Mac OS X)
you would register a delegate of the Window that implements the windowDidExpose: and
windowDidResize: methods.

Avatar of jarnjar
jarnjar

ASKER

This is a windows program.
ASKER CERTIFIED SOLUTION
Avatar of cookre
cookre
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Did that work for you?