1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
// 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.
//
// Copyright (c) 2004-2005 Novell, Inc.
//
// Authors:
// Jordi Mas i Hernandez, jordi@ximian.com
//
//
// COMPLETE
using System.ComponentModel;
using System.Drawing;
namespace System.Windows.Forms
{
[ToolboxItemFilter("System.Windows.Forms.MainMenu", ToolboxItemFilterType.Allow)]
public class MainMenu : Menu
{
private RightToLeft right_to_left = RightToLeft.Inherit;
private Form form = null;
public MainMenu () : base (null)
{
}
public MainMenu (MenuItem[] items) : base (items)
{
}
#if NET_2_0
public MainMenu (IContainer container) : this ()
{
container.Add (this);
}
#endif
#region Events
#if NET_2_0
static object CollapseEvent = new object ();
public event EventHandler Collapse {
add { Events.AddHandler (CollapseEvent, value); }
remove { Events.RemoveHandler (CollapseEvent, value); }
}
#endif
#endregion Events
#region Public Properties
[Localizable(true)]
#if NET_2_0
[AmbientValue (RightToLeft.Inherit)]
#endif
public virtual RightToLeft RightToLeft {
get { return right_to_left;}
set { right_to_left = value; }
}
#endregion Public Properties
#region Public Methods
public virtual MainMenu CloneMenu ()
{
MainMenu new_menu = new MainMenu ();
new_menu.CloneMenu (this);
return new_menu;
}
protected override IntPtr CreateMenuHandle ()
{
return IntPtr.Zero;
}
protected override void Dispose (bool disposing)
{
base.Dispose (disposing);
}
public Form GetForm ()
{
return form;
}
public override string ToString ()
{
return base.ToString () + ", GetForm: " + form;
}
#if NET_2_0
protected internal virtual void OnCollapse (EventArgs e)
{
EventHandler eh = (EventHandler) (Events [CollapseEvent]);
if (eh != null)
eh (this, e);
}
#endif
#endregion Public Methods
#region Private Methods
internal void Draw ()
{
Message m = Message.Create (Wnd.window.Handle, (int) Msg.WM_PAINT, IntPtr.Zero, IntPtr.Zero);
PaintEventArgs pe = XplatUI.PaintEventStart (ref m, Wnd.window.Handle, false);
Draw (pe, Rect);
}
internal void Draw (Rectangle rect)
{
if (Wnd.IsHandleCreated) {
Point pt = XplatUI.GetMenuOrigin (Wnd.window.Handle);
Message m = Message.Create (Wnd.window.Handle, (int)Msg.WM_PAINT, IntPtr.Zero, IntPtr.Zero);
PaintEventArgs pevent = XplatUI.PaintEventStart (ref m, Wnd.window.Handle, false);
pevent.Graphics.SetClip (new Rectangle (rect.X + pt.X, rect.Y + pt.Y, rect.Width, rect.Height));
Draw (pevent, Rect);
XplatUI.PaintEventEnd (ref m, Wnd.window.Handle, false);
}
}
internal void Draw (PaintEventArgs pe)
{
Draw (pe, Rect);
}
internal void Draw (PaintEventArgs pe, Rectangle rect)
{
if (!Wnd.IsHandleCreated)
return;
X = rect.X;
Y = rect.Y;
Height = Rect.Height;
ThemeEngine.Current.DrawMenuBar (pe.Graphics, this, rect);
PaintEventHandler eh = (PaintEventHandler)(Events [PaintEvent]);
if (eh != null)
eh (this, pe);
}
internal override void InvalidateItem (MenuItem item)
{
Draw (item.bounds);
}
internal void SetForm (Form form)
{
this.form = form;
Wnd = form;
if (tracker == null) {
tracker = new MenuTracker (this);
tracker.GrabControl = form;
}
}
internal override void OnMenuChanged (EventArgs e)
{
base.OnMenuChanged (EventArgs.Empty);
if (form == null)
return;
Rectangle clip = Rect;
Height = 0; /* need this so the theme code will re-layout the menu items
(why is the theme code doing the layout? argh) */
if (!Wnd.IsHandleCreated)
return;
Message m = Message.Create (Wnd.window.Handle, (int) Msg.WM_PAINT, IntPtr.Zero, IntPtr.Zero);
PaintEventArgs pevent = XplatUI.PaintEventStart (ref m, Wnd.window.Handle, false);
pevent.Graphics.SetClip (clip);
Draw (pevent, clip);
}
/* Mouse events from the form */
internal void OnMouseDown (object window, MouseEventArgs args)
{
tracker.OnMouseDown (args);
}
internal void OnMouseMove (object window, MouseEventArgs e)
{
MouseEventArgs args = new MouseEventArgs (e.Button, e.Clicks, Control.MousePosition.X, Control.MousePosition.Y, e.Delta);
tracker.OnMotion (args);
}
static object PaintEvent = new object ();
internal event PaintEventHandler Paint {
add { Events.AddHandler (PaintEvent, value); }
remove { Events.RemoveHandler (PaintEvent, value); }
}
#endregion Private Methods
}
}
|