python - PyGtk3 What is and what does the do_clicked method of Gtk.Button do? -
i want learn how gtk.button.do_clicked method works. please give me example learning this. thanks.
it's virtual method: http://lazka.github.io/pgi-docs/index.html#gtk-3.0/classes/button.html#virtual-methods
that means can override in subclass of gtk.button
, change behaviour of class. not meant call method directly.
Comments
Post a Comment