I tried enumerating "evince.View()" via the following code, but did not seemingly find any useful signal/method.Hi all.Is there a signal which is emitted, when an evince-view finishes loading (in GTK2)?
######################################################################
def dump(obj):
for attr in dir(obj):
print "obj.%s = %s" % (attr, getattr(obj, attr))
import evince
dump(evince.View())
######################################################################Will be grateful for any pointers :)
Regards,
Ajay