This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / MainMenu.cs
1 //
2 // System.Windows.Forms.MainMenu.cs
3 //
4 // Author:
5 //   stubbed out by Paul Osman (paul.osman@sympatico.ca)
6 //      Dennis Hayes (dennish@raytek.com)
7 //      Alexandre Pigolkine (pigolkine@gmx.de)
8 //
9 // (C) 2002 Ximian, Inc
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33
34 using System;
35 using System.Reflection;
36 using System.Globalization;
37 //using System.Windows.Forms.AccessibleObject.IAccessible;
38 using System.Drawing;
39 using System.Runtime.Remoting;
40 using System.ComponentModel;
41 namespace System.Windows.Forms {
42
43         /// <summary>
44         /// </summary>
45
46         public class MainMenu : Menu  {
47                 Form form_;
48                 //
49                 //  --- Constructors
50                 //
51
52                 [MonoTODO]
53                 public MainMenu() : base(null)
54                 {
55                 }
56
57                 [MonoTODO]
58                 public MainMenu(MenuItem[] items) : base(items)
59                 {
60                 }
61
62                 //
63                 //  --- Public Methods
64                 //
65
66                 [MonoTODO]
67                 public virtual MainMenu CloneMenu()
68                 {
69                         throw new NotImplementedException();
70                 }
71
72                 [MonoTODO]
73                 public Form GetForm()
74                 {
75                         return form_;
76                 }
77
78                 [MonoTODO]
79                 public override string ToString() 
80                 {
81                         //FIXME: Replace with real to string.
82                         return base.ToString();
83                 }
84
85                 internal void setForm ( Form form ) {
86                         form_ = form;
87                 }
88
89                 //
90                 //  --- protected Methods
91                 //
92
93                 [MonoTODO]
94                 protected override void Dispose(bool disposing){
95                         base.Dispose(disposing);
96                 }
97
98
99                 //
100                 // -- Public Properties
101                 //
102
103                 [MonoTODO]
104                 public virtual RightToLeft RightToLeft  {
105                         get 
106                         {
107                                 throw new NotImplementedException();
108                         }
109                         set
110                         {
111                                 //FIXME:
112                         }
113                 }
114         }
115 }