123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- class TestNode : GFlow.SimpleNode {
- public GFlow.SimpleSource source1;
- public GFlow.SimpleSource source2;
- public GFlow.SimpleSink sink1;
- public TestNode(string name) {
- this.name = name;
- try {
- this.source1 = new GFlow.SimpleSource(typeof(int));
- this.source1.name = "%s quelle 1".printf(name);
- this.add_source(source1);
- this.source2 = new GFlow.SimpleSource(typeof(int));
- this.source2.name = "%s quelle 2".printf(name);
- this.add_source(source2);
- this.sink1 = new GFlow.SimpleSink(1);
- this.sink1.name = "%s abfluss 2".printf(name);
- this.add_sink(sink1);
- this.sink1.max_sources = 10;
- } catch (GFlow.NodeError e) {
- warning("Couldn't build node");
- }
- }
- public void register_colors(GtkFlow.NodeView nv) {
- var src_widget1 = nv.retrieve_dock(this.source1);
- var src_widget2 = nv.retrieve_dock(this.source2);
- var snk_widget1 = nv.retrieve_dock(this.sink1);
- src_widget1.resolve_color.connect_after((d,v)=>{ return {1.0f,0.0f,0.0f,1.0f};});
- src_widget2.resolve_color.connect_after((d,v)=>{ return {0.0f,1.0f,0.0f,1.0f};});
- snk_widget1.resolve_color.connect_after((d,v)=>{ return {0.0f,0.0f,1.0f,1.0f};});
- }
- }
- int main (string[] args) {
- var app = new Gtk.Application(
- "de.grindhold.GtkFlow4Example",
- ApplicationFlags.FLAGS_NONE
- );
- app.activate.connect(() => {
- var win = new Gtk.ApplicationWindow(app);
- var btn = new Gtk.Button.with_label("Spawn Node");
- var box = new Gtk.Box(Gtk.Orientation.VERTICAL, 0);
- var sw = new Gtk.ScrolledWindow();
- var nv = new GtkFlow.NodeView();
- var mm = new GtkFlow.Minimap();
- sw.child=nv;
- sw.vexpand=true;
- mm.nodeview = nv;
- btn.clicked.connect(()=>{
- var node = new TestNode("TestNode");
- nv.add(new GtkFlow.Node(node));
- });
- var n1 = new TestNode("foo");
- var n2 = new TestNode("bar");
- var gn1 = new GtkFlow.Node(n1);
- gn1.add_child(new Gtk.Button.with_label("EEEEEE!"));
- nv.add(gn1);
- n1.register_colors(nv);
- nv.add(new GtkFlow.Node(n2));
- n2.register_colors(nv);
- try {
- n1.source1.link(n2.sink1);
- } catch (Error e) {
- warning("could not link nodees:"+ e.message);
- }
- win.child = box;
- box.append(btn);
- box.append(mm);
- box.append(sw);
- win.present();
- });
- return app.run(args);
- }
|