diff options
Diffstat (limited to 'src/ganv_test.py')
-rwxr-xr-x | src/ganv_test.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/ganv_test.py b/src/ganv_test.py deleted file mode 100755 index 1ea53c2..0000000 --- a/src/ganv_test.py +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python - -from gi.repository import Ganv, Gtk - -win = Gtk.Window() -win.set_title("Ganv Python Test") -win.connect("destroy", lambda obj: Gtk.main_quit()) - -canvas = Ganv.Canvas.new(1024, 768) -module = Ganv.Module(canvas=canvas, - label="Test") -# iport = Ganv.Port(module=module, -# is_input=True, -# label="In") -# oport = Ganv.Port(module=module, -# is_input=False, -# label="In") - -win.add(canvas) -win.show_all() -win.present() -Gtk.main() |