summaryrefslogtreecommitdiff
path: root/configs/apps/gladevcp/simple-callback/simplecallback.py
blob: 4066d0a7bc9e147a9f8d7fb62a937d9065ac6c74 (plain)
1
2
3
4
5
6
7
8

nhits = 0

def on_button_press(gtkobj,data=None):
    global nhits
    nhits += 1
    print "on_button_press callback"
    gtkobj.set_label("hits: %d" % nhits)