(svn r7618) -Feature: Add support for a parent<>child relationship in Window terms. A child

is a window whose parent pointer is non-null. Deleting the parent cascades deleting
 the children as well; children first.
This commit is contained in:
Darkvater
2006-12-29 17:07:41 +00:00
parent 664f1d1fa0
commit 49eb2a91ab
2 changed files with 22 additions and 0 deletions

View File

@@ -335,6 +335,7 @@ struct Window {
uint32 desc_flags;
WindowMessage message;
Window *parent;
byte custom[WINDOW_CUSTOM_SIZE];
};