tests/plugindialog.vala
[app.Builder.js] / tests / plugindialog.vala
1
2 public Project.Project proj;
3
4 int main (string[] args) {
5         Gtk.init (ref args);
6         GtkClutter.init (ref args);
7         new JsRender.Lang_Class();
8         GLib.Log.set_always_fatal(LogLevelFlags.LEVEL_ERROR | LogLevelFlags.LEVEL_CRITICAL); 
9         Project.Project.loadAll();
10         proj = Project.Project.getProject("Builder4");
11         
12         proj.scanDirs();
13         //
14         //loadit("ProjectSettings");
15         var iter = proj.sortedFiles().list_iterator();
16         while (iter.next()) {  loadit(iter.get().name); }
17         //loadit("WindowLeftProps");
18         //loadit("EditProject");
19         //loadit("Editor");
20         //loadit("MainWindow");
21         Gtk.main();
22     
23         
24         return 0;
25 }