2 * DefaultEditor.cs - The default visual 'editor' for types we don't have
5 * Part of PropertyGrid - A Gtk# widget that displays and allows
6 * editing of all of an object's public properties
9 * Michael Hutchinson <m.j.hutchinson@gmail.com>
12 * Copyright (C) 2005 Michael Hutchinson
14 * This sourcecode is licenced under The MIT License:
16 * Permission is hereby granted, free of charge, to any person obtaining
17 * a copy of this software and associated documentation files (the
18 * "Software"), to deal in the Software without restriction, including
19 * without limitation the rights to use, copy, modify, merge, publish,
20 * distribute, sublicense, and/or sell copies of the Software, and to permit
21 * persons to whom the Software is furnished to do so, subject to the
22 * following conditions:
24 * The above copyright notice and this permission notice shall be included in
25 * all copies or substantial portions of the Software.
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
28 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
30 * NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
31 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
32 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
33 * USE OR OTHER DEALINGS IN THE SOFTWARE.
38 using System
.ComponentModel
;
40 namespace MonoDevelop
.DesignerSupport
.PropertyGrid
.PropertyEditors
42 public class DefaultEditor
: PropertyEditorCell
44 protected override string GetValueMarkup ()
46 return "<span foreground=\"grey\"><" + Property
.PropertyType
.ToString() + "></span>";