Hi,
Here is a patch to add support for the AuiFloatingFrame class.
This class isn't usefull in itself, but we may need it for identity purpose.
I have a situation where I must climb up the window parent relationship and I may end up in a AuiFloatingFrame as top
level window.
def find_top_level
top_level = self
top_level = top_level.get_parent until top_level.is_top_level
top_level
end
Regards,
Pascal |