I have a “base” window which creates a “child” window which in turn creates
a “childofchild” window. The children are created via the window option in
the realize callback. Standard Phab stuff.
The “child” has “base” as its parent as I hoped. “childofchild” however also
has “base” as its parent not “child” as I had hoped even though it was
created by a window callback of “child”. I have verified this using the
debugger and can see it from the application because “child” can move in
front of “childofchild”.
Is this correct ?, if so does that mean any window created by a Phab window
callback (as opposed to in line code) will be a direct child of the original
base window ? or have I missed something.
Steve