Merge pull request #1336 from esdrubal/datatablereadxmlschema
[mono.git] / mcs / class / System.Design / System.ComponentModel.Design / DesignerActionMethodItem.cs
1 //
2 // System.ComponentModel.Design.DesignerActionMethodItem.cs
3 //
4 // Authors:
5 //      Miguel de Icaza (miguel@novell.com)
6 //
7 // Copyright 2006 Novell, Inc
8 //
9
10 //
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.
29 //
30 #if NET_2_0
31 using System.Windows.Forms;
32 using System.Collections;
33
34 namespace System.ComponentModel.Design
35 {
36         public class DesignerActionMethodItem : DesignerActionItem
37         {
38                 string member_name;
39                 bool designer_verb;
40                 IComponent related_component;
41                 DesignerActionList action_list;
42                 
43                 public DesignerActionMethodItem (DesignerActionList actionList, string memberName, string displayName)
44                         : this (actionList, memberName, displayName, null, false)
45                 {
46                 }
47                 
48                 public DesignerActionMethodItem (DesignerActionList actionList, string memberName,
49                                                  string displayName, bool includeAsDesignerVerb)
50                         : this (actionList, memberName, displayName, null, includeAsDesignerVerb)
51                 {
52                 }
53                 
54                 public DesignerActionMethodItem (DesignerActionList actionList, string memberName,
55                                                  string displayName, string category)
56                         : this (actionList, memberName, displayName, category, false)
57                 {
58                 }
59                 
60                 public DesignerActionMethodItem (DesignerActionList actionList, string memberName,
61                                                  string displayName, string category, bool includeAsDesignerVerb)
62                         : this (actionList, memberName, displayName, category, null, includeAsDesignerVerb)
63                 {
64                 }
65                 
66                 public DesignerActionMethodItem (DesignerActionList actionList, string memberName,
67                                                  string displayName, string category, string description)
68                         : this (actionList, memberName, displayName, category, description, false)
69                 {
70                 }
71                 
72                 public DesignerActionMethodItem (DesignerActionList actionList, string memberName,
73                                                  string displayName, string category, string description,
74                                                  bool includeAsDesignerVerb)
75                         : base (displayName, category, description)
76                 {
77                         this.action_list = actionList;
78                         this.member_name = memberName;
79                         this.designer_verb = includeAsDesignerVerb;
80                 }
81                 
82                 public virtual bool IncludeAsDesignerVerb {
83                         get {
84                                 return designer_verb;
85                         }
86                 }
87                 
88                 public virtual string MemberName {
89                         get {
90                                 return member_name;
91                         }
92                 }
93                 
94                 public IComponent RelatedComponent {
95                         get {
96                                 return related_component;
97                         }
98                         
99                         set {
100                                 related_component = value;
101                         }
102                 }
103
104                 //
105                 // I have no clue *where* this would look at to invoke the command
106                 //
107                 public virtual void Invoke ()
108                 {
109                         throw new NotImplementedException ();
110                 }
111         }
112 }
113 #endif