How do I iterate through all Gtk children in PyGtk recursively?

纵然是瞬间 提交于 2019-12-02 07:30:36

问题


I would like to get a recursive list of all Gtk children object of the main window with pygtk. How do I do that?


回答1:


Noting these:

  • Python GTK+ widget name
  • Python recursion and return statements

... here is a function, which is a port of a PHP one from Getting a descendant (child) widget by name | PHP-GTK Community:

# http://cdn.php-gtk.eu/cdn/farfuture/riUt0TzlozMVQuwGBNNJsaPujRQ4uIYXc8SWdgbgiYY/mtime:1368022411/sites/php-gtk.eu/files/gtk-php-get-child-widget-by-name.php__0.txt
# note get_name() vs gtk.Buildable.get_name(): https://stackoverflow.com/questions/3489520/python-gtk-widget-name
def get_descendant(widget, child_name, level, doPrint=False):
  if widget is not None:
    if doPrint: print("-"*level + gtk.Buildable.get_name(widget) + " :: " + widget.get_name())
  else:
    if doPrint:  print("-"*level + "None")
    return None
  #/*** If it is what we are looking for ***/
  if(gtk.Buildable.get_name(widget) == child_name): # not widget.get_name() !
    return widget;
  #/*** If this widget has one child only search its child ***/
  if (hasattr(widget, 'get_child') and callable(getattr(widget, 'get_child')) and child_name != ""):
    child = widget.get_child()
    if child is not None:
      return get_descendant(child, child_name,level+1,doPrint)
  # /*** Ity might have many children, so search them ***/
  elif (hasattr(widget, 'get_children') and callable(getattr(widget, 'get_children')) and child_name !=""):
    children = widget.get_children()
    # /*** For each child ***/
    found = None
    for child in children:
      if child is not None:
        found = get_descendant(child, child_name,level+1,doPrint) # //search the child
        if found: return found

if (window):
  window.connect("destroy", gtk.main_quit)
  #pprint(inspect.getmembers(window.get_children()[0]))
  print "E: " + str( get_descendant(window, "nofind", level=0, doPrint=True) )

Usage:

print "E: " + str( get_descendant(window, "nofind", level=0, doPrint=True) )
# output:

# window1 :: GtkWindow
# -scrolledwindow1 :: GtkScrolledWindow
# --viewport1 :: GtkViewport
# ---vbox1 :: GtkVBox
# ----handlebox1 :: GtkHandleBox
# -----drawingarea1 :: GtkDrawingArea
# ----handlebox2 :: GtkHandleBox
# ----handlebox3 :: GtkHandleBox
# E: None

print "E: " + str( get_descendant(window, "viewport1", level=0, doPrint=True) )
# output:

# window1 :: GtkWindow
# -scrolledwindow1 :: GtkScrolledWindow
# --viewport1 :: GtkViewport
# E: <gtk.Viewport object at 0x96cadc4 (GtkViewport at 0x95278d0)>


来源:https://stackoverflow.com/questions/20461464/how-do-i-iterate-through-all-gtk-children-in-pygtk-recursively

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!