Files @ b9aec3be2b8c
Branch filter:

Location: light9/bin/gtk_dnd_demo.py

drewp@bigasterisk.com
hw sliders send events in a way that piles up and we get big delays. this is a simple throttle that stops the pileup but interactivity is still bumpy
Ignore-this: a755c0611adee694bffc6fb08d3f767b
#!bin/python
import run_local
import gtk
import sys
sys.path.append(".")
from rdflib import URIRef
from light9.editchoicegtk import EditChoice, Local
from light9.observable import Observable
from light9.rdfdb.syncedgraph import SyncedGraph

win = gtk.Window()

graph = SyncedGraph("gtkdnddemo")

r1 = URIRef("http://example.com/interestingThing")
v = Observable(r1)
win.add(EditChoice(graph, v))
win.show_all()
gtk.main()