add support for icons and desktop file - precursor to removing autotools build
[roobuilder] / src / JsRender / Dir.vala
1 /**
2         represents a directory (cant be edited?)
3         
4 **/
5
6 namespace JsRender {
7         int did = 1;
8         
9         public  class Dir : JsRender
10         {  
11                 //Gee.ArrayList<Dir> subdirs;
12                 public Dir(Project.Project project, string path) {
13             
14                 base( project, path);
15                 this.xtype = "Dir";
16                 this.language = "";
17                 
18                 
19                 this.id = "dir-%d".printf(did++);
20                 this.name = this.relpath;
21                 if (this.name == "") {
22                         this.name = "/";
23                 }
24                 //console.dump(this);
25                 // various loader methods..
26
27                 // Class = list of arguments ... and which property to use as a value.
28            
29
30                 
31                 
32             }
33             public override void save() {}
34                 public override void saveHTML(string html) {}
35                 public override string toSource() { return ""; }
36                 public override string toSourceCode() {return "";} // used by commandline tester..
37                 public override void setSource(string str) {}
38                 public override string toSourcePreview()   {return "";}
39                 public override void removeFiles() {}
40                 public override void  findTransStrings(Node? node ) {}
41                 public override string toGlade()  {return "";}
42                 public override string targetName()  {return "";}
43                 public override void loadItems() throws GLib.Error {}
44                 public override string language_id() { return ""; }
45     }
46     
47     
48     
49 }