summaryrefslogtreecommitdiff
path: root/plugins/gtkui/test.vala
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-05-30 21:31:31 +0200
committerGravatar waker <wakeroid@gmail.com>2012-05-30 21:31:31 +0200
commit64be2fcd81d26135f6b3e6bbbdf8c6785e6e9c0f (patch)
tree08067b103f92288623e279faa1176b5c0e4ecfd0 /plugins/gtkui/test.vala
parentcf4d96bb59878c3406ece5d9d6110b35f6c4f15c (diff)
removed vala files
Diffstat (limited to 'plugins/gtkui/test.vala')
-rw-r--r--plugins/gtkui/test.vala30
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/gtkui/test.vala b/plugins/gtkui/test.vala
deleted file mode 100644
index 9a50c952..00000000
--- a/plugins/gtkui/test.vala
+++ /dev/null
@@ -1,30 +0,0 @@
-using Deadbeef;
-
-Graphic gr = null;
-
-public static bool
-redraw ()
-{
- gr.queue_draw ();
- return true;
-}
-
-public static int
-main (string[] args)
-{
- Gtk.init (ref args);
- var wnd = new Gtk.Window (Gtk.WindowType.TOPLEVEL);
- wnd.destroy.connect (Gtk.main_quit);
-
- gr = new Graphic ();
- Graphic.inst = gr;
- wnd.add (gr);
- gr.show();
- wnd.show();
-
- Timeout.add (50, redraw);
-
- Gtk.main();
- return 0;
-}
-