Files @ 8152b1dd8a2f
Branch filter:

Location: light9/bin/gtk_dnd_demo.py - annotation

drewp@bigasterisk.com
focus on a subterm expression, and we'll bring any curves it mentions up to the top of the curvesetview
Ignore-this: f1a6456ed67a46cfdc7e0b8ba3f6fce7
#!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()