Method: Fox::FXWindow#each_child_recursive

Defined in:
lib/fox16/core.rb

#each_child_recursiveObject

Traverse the widget tree starting from this window using depth-first traversal.



314
315
316
317
318
319
320
321
# File 'lib/fox16/core.rb', line 314

def each_child_recursive # :yields: child
  each_child do |child|
    yield child
    child.each_child_recursive do |subchild|
      yield subchild
    end
  end
end