* Makefile.am:
[monodevelop.git] / main / src / addins / MonoDevelop.DesignerSupport / MonoDevelop.DesignerSupport.Projects / SolutionItemDescriptor.cs
blob8f08be4d4eef126e3bb2d9a9ce0c499e5207c857
1 // SolutionItemDescriptor.cs
2 //
3 //Author:
4 // Lluis Sanchez Gual
5 //
6 //Copyright (c) 2007 Novell, Inc (http://www.novell.com)
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining a copy
9 // of this software and associated documentation files (the "Software"), to deal
10 // in the Software without restriction, including without limitation the rights
11 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 // copies of the Software, and to permit persons to whom the Software is
13 // furnished to do so, subject to the following conditions:
15 // The above copyright notice and this permission notice shall be included in
16 // all copies or substantial portions of the Software.
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 // THE SOFTWARE.
28 using System;
29 using MonoDevelop.Projects;
30 using MonoDevelop.Core;
32 namespace MonoDevelop.DesignerSupport.Projects
34 class SolutionItemDescriptor: CustomDescriptor
36 SolutionItem entry;
38 public SolutionItemDescriptor (SolutionItem entry)
40 this.entry = entry;
43 [LocalizedCategory ("Misc")]
44 [LocalizedDisplayName ("Name")]
45 [LocalizedDescription ("Name of the solution item.")]
46 public string Name {
47 get { return entry.Name; }
48 set { entry.Name = value; }
51 [LocalizedCategory ("Misc")]
52 [LocalizedDisplayName ("File Path")]
53 [LocalizedDescription ("File path of the solution item.")]
54 public string FilePath {
55 get {
56 if (entry is SolutionEntityItem)
57 return ((SolutionEntityItem) entry).FileName;
58 else
59 return "";
63 [LocalizedCategory ("Misc")]
64 [LocalizedDisplayName ("Root Directory")]
65 [LocalizedDescription ("Root directory of source files and projects. File paths will be shown relative to this directory.")]
66 public string RootDirectory {
67 get {
68 return entry.BaseDirectory;
70 set {
71 if (string.IsNullOrEmpty (value) || System.IO.Directory.Exists (value))
72 entry.BaseDirectory = value;