Displaying 2 results from an estimated 2 matches for "fxmdichild".
2007 May 17
2
FXMDIChild shrinkwrap to content
How can I get a FXMDIChild to shrinkwrap to its content?
Here''s what I''m doing now:
def create(*)
self.height = maxChildHeight + 30
self.width = maxChildWidth + 10
super
end
This works, but I''m not crazy about manually adjusting for (apparently)
frame and title bar sizes....
2007 Apr 27
2
mdiclient windows do not always activate on click
I just noticed that MDIClient windows do not automatically become
current when they receive a mouse click, but only do so if the click
happens inside of an enabled widget. This may very well be correct, but
if so then what is the right way to handle it, if you want a more
familiar window-manager behavior (click to focus)?
For example, if you change the mditest.rb example like so...
---