**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Design / System.ComponentModel.Design / ObjectSelectorEditor.cs
blob447bd43dcf8550daaea67692493f59a770322f6e
1 //
2 // System.ComponentModel.Design.ObjectSelectorEditor
3 //
4 // Authors:
5 // Gert Driesen (drieseng@users.sourceforge.net)
6 //
7 // (C) 2004 Novell
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System.Drawing.Design;
32 using System.Windows.Forms;
33 using System.Windows.Forms.Design;
35 namespace System.ComponentModel.Design
37 public abstract class ObjectSelectorEditor : UITypeEditor
39 public ObjectSelectorEditor ()
43 public ObjectSelectorEditor (bool subObjectSelector)
45 SubObjectSelector = subObjectSelector;
48 [MonoTODO]
49 public override object EditValue (ITypeDescriptorContext context, IServiceProvider provider, object value)
51 throw new NotImplementedException ();
54 public bool EqualsToValue (object value)
56 return (currValue == value);
59 [MonoTODO]
60 protected virtual void FillTreeWithData (Selector selector, ITypeDescriptorContext context, IServiceProvider provider)
62 throw new NotImplementedException ();
65 public override UITypeEditorEditStyle GetEditStyle (ITypeDescriptorContext context)
67 return UITypeEditorEditStyle.DropDown;
70 public virtual void SetValue (object value)
72 currValue = value;
75 protected object currValue;
76 protected object prevValue;
77 public bool SubObjectSelector;
79 public class Selector : TreeView
81 [MonoTODO]
82 public Selector (ObjectSelectorEditor editor)
84 throw new NotImplementedException ();
87 [MonoTODO]
88 public SelectorNode AddNode (string label, object value, SelectorNode parent)
90 throw new NotImplementedException ();
93 [MonoTODO]
94 public void Clear ()
96 throw new NotImplementedException ();
99 [MonoTODO]
100 protected void OnAfterSelect (object sender, TreeViewEventArgs e)
102 throw new NotImplementedException ();
105 [MonoTODO]
106 protected override void OnKeyDown (KeyEventArgs e)
108 throw new NotImplementedException ();
111 [MonoTODO]
112 protected override void OnKeyPress (KeyPressEventArgs e)
114 throw new NotImplementedException ();
117 [MonoTODO]
118 public bool SetSelection (object value, TreeNodeCollection nodes)
120 throw new NotImplementedException ();
123 [MonoTODO]
124 public void Start (IWindowsFormsEditorService edSvc, object value)
126 throw new NotImplementedException ();
129 [MonoTODO]
130 public void Stop ()
132 throw new NotImplementedException ();
135 [MonoTODO]
136 protected override void WndProc (ref Message m)
138 throw new NotImplementedException ();
141 [MonoTODO]
142 public bool clickSeen;
145 public class SelectorNode : TreeNode
147 public SelectorNode (string label, object value) : base (label)
149 this.value = value;
152 public object value;