summaryrefslogtreecommitdiffstats
path: root/src/display/testnr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/display/testnr.cpp')
-rw-r--r--src/display/testnr.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/display/testnr.cpp b/src/display/testnr.cpp
new file mode 100644
index 000000000..3a3478d28
--- /dev/null
+++ b/src/display/testnr.cpp
@@ -0,0 +1,24 @@
+#include <gtk/gtk.h>
+#include "sp-arena.h"
+
+int
+main (int argc, char ** argv)
+{
+ GtkWidget * w, * c;
+
+ gtk_init (&argc, &argv);
+
+ w = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+
+ c = sp_arena_new ();
+ gtk_widget_show (c);
+
+ gtk_container_add (GTK_CONTAINER (w), c);
+
+ gtk_widget_show (w);
+
+ gtk_main ();
+
+ return 0;
+}
+