* Makefile.am:
[monodevelop.git] / main / src / addins / MonoDevelop.DesignerSupport / MonoDevelop.DesignerSupport.Projects / WorkspaceItemDescriptor.cs
blobdb9cc90ed7e1e81bce513c0e5cb2cdcae1103e07
1 // WorkspaceItemDescriptor.cs
2 //
3 // Author:
4 // Lluis Sanchez Gual <lluis@novell.com>
5 //
6 // Copyright (c) 2008 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 public class WorkspaceItemDescriptor: CustomDescriptor
36 WorkspaceItem item;
38 public WorkspaceItemDescriptor (WorkspaceItem item)
40 this.item = item;
43 [LocalizedCategory ("Misc")]
44 [LocalizedDisplayName ("Name")]
45 [LocalizedDescription ("Name of the item.")]
46 public string Name {
47 get { return item.Name; }
48 set { item.Name = value; }
51 [LocalizedCategory ("Misc")]
52 [LocalizedDisplayName ("File Path")]
53 [LocalizedDescription ("File path of the item.")]
54 public string FilePath {
55 get {
56 return item.FileName;
60 [LocalizedCategory ("Misc")]
61 [LocalizedDisplayName ("Root Directory")]
62 [LocalizedDescription ("Root directory of source files and projects. File paths will be shown relative to this directory.")]
63 public string RootDirectory {
64 get {
65 return item.BaseDirectory;
67 set {
68 if (string.IsNullOrEmpty (value) || System.IO.Directory.Exists (value))
69 item.BaseDirectory = value;
73 [LocalizedCategory ("Misc")]
74 [LocalizedDisplayName ("File Format")]
75 [LocalizedDescription ("File format of the project file.")]
76 public string FileFormat {
77 get {
78 return item.FileFormat.Name;