Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <m.j.hutchinson@gmail.com>2011-06-08 14:28:41 +0400
committerMichael Hutchinson <m.j.hutchinson@gmail.com>2011-06-08 14:30:00 +0400
commit6958bd804c2a12c9fecae8325b6aa6588a7cbb17 (patch)
tree88b886f8d431ac281fbc110324a89728bae29588 /main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors
parentf8a44ba88a329c0f2df44233d3d896797bfa80a0 (diff)
[Ide] Added a FilePath property editor
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/FilePathEditor.cs62
1 files changed, 62 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/FilePathEditor.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/FilePathEditor.cs
new file mode 100644
index 0000000000..23df98afc8
--- /dev/null
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.PropertyGrid.Editors/FilePathEditor.cs
@@ -0,0 +1,62 @@
+//
+// FilePathEditorCell.cs
+//
+// Author:
+// Michael Hutchinson <m.j.hutchinson@gmail.com>
+//
+// Copyright (c) 2011 Michael Hutchinson
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+
+using System;
+using System.Linq;
+using Gtk;
+using MonoDevelop.Core;
+
+namespace MonoDevelop.Components.PropertyGrid.PropertyEditors
+{
+ [PropertyEditorType (typeof (MonoDevelop.Core.FilePath))]
+ public class FilePathEditor : PropertyEditorCell
+ {
+ public override bool DialogueEdit {
+ get { return true; }
+ }
+
+ public override void LaunchDialogue ()
+ {
+ var kindAtt = this.Property.Attributes.OfType<FilePathIsFolderAttribute> ().FirstOrDefault ();
+ FileChooserAction action;
+ string title;
+ if (kindAtt == null) {
+ action = FileChooserAction.Open;
+ title = GettextCatalog.GetString ("Select File...");
+ } else {
+ action = FileChooserAction.SelectFolder;
+ title = GettextCatalog.GetString ("Select Folder...");
+ }
+ var fs = new MonoDevelop.Components.SelectFileDialog (title, action);
+ if (fs.Run ())
+ Property.SetValue (Instance, fs.SelectedFile);
+ }
+ }
+
+ public class FilePathIsFolderAttribute : Attribute
+ {
+ }
+} \ No newline at end of file