2007-06-13 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ToolStripMenuItem.cs
1 //
2 // ToolStripMenuItem.cs
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining
5 // a copy of this software and associated documentation files (the
6 // "Software"), to deal in the Software without restriction, including
7 // without limitation the rights to use, copy, modify, merge, publish,
8 // distribute, sublicense, and/or sell copies of the Software, and to
9 // permit persons to whom the Software is furnished to do so, subject to
10 // the following conditions:
11 // 
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
14 // 
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 //
23 // Copyright (c) 2006 Jonathan Pobst
24 //
25 // Authors:
26 //      Jonathan Pobst (monkey@jpobst.com)
27 //
28 #if NET_2_0
29
30 using System;
31 using System.Drawing;
32 using System.ComponentModel;
33 using System.Windows.Forms.Design;
34 using System.ComponentModel.Design.Serialization;
35
36 namespace System.Windows.Forms
37 {
38         [ToolStripItemDesignerAvailability (ToolStripItemDesignerAvailability.MenuStrip | ToolStripItemDesignerAvailability.ContextMenuStrip)]
39         [DesignerSerializer ("System.Windows.Forms.Design.ToolStripMenuItemCodeDomSerializer, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + Consts.AssemblySystem_Design)]
40         public class ToolStripMenuItem : ToolStripDropDownItem
41         {
42                 private CheckState checked_state;
43                 private bool check_on_click;
44                 private bool close_on_mouse_release;
45                 private string shortcut_display_string;
46                 private Keys shortcut_keys = Keys.None;
47                 private bool show_shortcut_keys = true;
48                 private Form mdi_client_form;
49
50                 #region Public Constructors
51                 public ToolStripMenuItem ()
52                         : this (null, null, null, string.Empty)
53                 {
54                 }
55
56                 public ToolStripMenuItem (Image image)
57                         : this (null, image, null, string.Empty)
58                 {
59                 }
60
61                 public ToolStripMenuItem (string text)
62                         : this (text, null, null, string.Empty)
63                 {
64                 }
65
66                 public ToolStripMenuItem (string text, Image image)
67                         : this (text, image, null, string.Empty)
68                 {
69                 }
70
71                 public ToolStripMenuItem (string text, Image image, EventHandler onClick)
72                         : this (text, image, onClick, string.Empty)
73                 {
74                 }
75
76                 public ToolStripMenuItem (string text, Image image, params ToolStripItem[] dropDownItems)
77                         : this (text, image, null, string.Empty)
78                 {
79                         if (dropDownItems != null)
80                                 foreach (ToolStripItem tsi in dropDownItems)
81                                         this.DropDownItems.Add (tsi);
82                 }
83
84                 public ToolStripMenuItem (string text, Image image, EventHandler onClick, Keys shortcutKeys)
85                         : this (text, image, onClick, string.Empty)
86                 {
87                 }
88
89                 public ToolStripMenuItem (string text, Image image, EventHandler onClick, string name)
90                         : base (text, image, onClick, name)
91                 {
92                         base.Overflow = ToolStripItemOverflow.Never;
93                 }
94                 #endregion
95
96                 #region Public Properties
97                 [Bindable (true)]
98                 [DefaultValue (false)]
99                 [RefreshProperties (RefreshProperties.All)]
100                 public bool Checked {
101                         get {
102                                 switch (this.checked_state) {
103                                         case CheckState.Unchecked:
104                                         default:
105                                                 return false;
106                                         case CheckState.Checked:
107                                         case CheckState.Indeterminate:
108                                                 return true;
109                                 }
110                         }
111                         set {
112                                 if (this.checked_state != (value ? CheckState.Checked : CheckState.Unchecked)) {
113                                         this.checked_state = value ? CheckState.Checked : CheckState.Unchecked;
114                                         this.Invalidate ();
115                                         this.OnCheckedChanged (EventArgs.Empty);
116                                 }
117                         }
118                 }
119
120                 [DefaultValue (false)]
121                 public bool CheckOnClick {
122                         get { return this.check_on_click; }
123                         set { this.check_on_click = value; }
124                 }
125
126                 [Bindable (true)]
127                 [DefaultValue (CheckState.Unchecked)]
128                 [RefreshProperties (RefreshProperties.All)]
129                 public CheckState CheckState {
130                         get { return this.checked_state; }
131                         set
132                         {
133                                 if (!Enum.IsDefined (typeof (CheckState), value))
134                                         throw new InvalidEnumArgumentException (string.Format ("Enum argument value '{0}' is not valid for CheckState", value));
135
136                                 this.checked_state = value;
137                                 this.Invalidate ();
138                                 this.OnCheckStateChanged (EventArgs.Empty);
139                         }
140                 }
141
142                 public override bool Enabled {
143                         get { return base.Enabled; }
144                         set { base.Enabled = value; }
145                 }
146
147                 [Browsable (false)]
148                 public bool IsMdiWindowListEntry {
149                         get { return this.mdi_client_form != null; }
150                 }
151                 
152                 [DefaultValue (ToolStripItemOverflow.Never)]
153                 public new ToolStripItemOverflow Overflow {
154                         get { return base.Overflow; }
155                         set { base.Overflow = value; }
156                 }
157                 
158                 [Localizable (true)]
159                 [DefaultValue (true)]
160                 public bool ShowShortcutKeys {
161                         get { return this.show_shortcut_keys; }
162                         set { this.show_shortcut_keys = value; }
163                 }
164                 
165                 [Localizable (true)]
166                 [DefaultValue (null)]
167                 public string ShortcutKeyDisplayString {
168                         get { return this.shortcut_display_string; }
169                         set { this.shortcut_display_string = value; }
170                 }
171                 
172                 [Localizable (true)]
173                 [DefaultValue (Keys.None)]
174                 public Keys ShortcutKeys {
175                         get { return this.shortcut_keys; }
176                         set { 
177                                 if (this.shortcut_keys != value) {
178                                         this.shortcut_keys = value;
179                                         
180                                         if (this.Parent != null)
181                                                 ToolStripManager.AddToolStripMenuItem (this);
182                                 }
183                          }
184                 }
185                 #endregion
186
187                 #region Protected Properties
188                 protected internal override Padding DefaultMargin {
189                         get { return new Padding (0); }
190                 }
191
192                 protected override Padding DefaultPadding {
193                         get { return new Padding (4, 0, 4, 0); }
194                 }
195
196                 protected override Size DefaultSize {
197                         get { return new Size (32, 19); }
198                 }
199                 #endregion
200
201                 #region Protected Methods
202                 protected override ToolStripDropDown CreateDefaultDropDown ()
203                 {
204                         ToolStripDropDownMenu tsddm = new ToolStripDropDownMenu ();
205                         tsddm.OwnerItem = this;
206                         return tsddm;
207                 }
208
209                 protected override void Dispose (bool disposing)
210                 {
211                         base.Dispose (disposing);
212                 }
213
214                 protected virtual void OnCheckedChanged (EventArgs e)
215                 {
216                         EventHandler eh = (EventHandler)Events [CheckedChangedEvent];
217                         if (eh != null)
218                                 eh (this, e);
219                 }
220
221                 protected virtual void OnCheckStateChanged (EventArgs e)
222                 {
223                         EventHandler eh = (EventHandler)Events [CheckStateChangedEvent];
224                         if (eh != null)
225                                 eh (this, e);
226                 }
227
228                 protected override void OnClick (EventArgs e)
229                 {
230                         if (!this.Enabled)
231                                 return;
232                                 
233                         if (this.HasDropDownItems)
234                                 return;
235                                 
236                         if (this.IsOnDropDown)
237                                 this.GetTopLevelToolStrip ().Dismiss (ToolStripDropDownCloseReason.ItemClicked);
238
239                         if (this.IsMdiWindowListEntry) {
240                                 this.mdi_client_form.MdiParent.MdiContainer.ActivateChild (this.mdi_client_form);
241                                 return;
242                         }
243                         
244                         if (this.check_on_click)
245                                 this.Checked = !this.Checked;
246
247                         base.OnClick (e);
248                 }
249
250                 protected override void OnDropDownHide (EventArgs e)
251                 {
252                         base.OnDropDownHide (e);
253                 }
254
255                 protected override void OnDropDownShow (EventArgs e)
256                 {
257                         base.OnDropDownShow (e);
258                 }
259
260                 protected override void OnFontChanged (EventArgs e)
261                 {
262                         base.OnFontChanged (e);
263                 }
264
265                 protected override void OnMouseDown (MouseEventArgs e)
266                 {
267                         if (!this.IsOnDropDown && this.HasDropDownItems && this.DropDown.Visible)
268                                 this.close_on_mouse_release = true;
269                                 
270                         if (this.HasDropDownItems && Enabled)
271                                 if (!this.DropDown.Visible)
272                                         this.ShowDropDown ();
273
274                         base.OnMouseDown (e);
275                 }
276
277                 protected override void OnMouseEnter (EventArgs e)
278                 {
279                         if (this.IsOnDropDown && this.HasDropDownItems && Enabled)
280                                 this.ShowDropDown ();
281
282                         base.OnMouseEnter (e);
283                 }
284
285                 protected override void OnMouseLeave (EventArgs e)
286                 {
287                         base.OnMouseLeave (e);
288                 }
289
290                 protected override void OnMouseUp (MouseEventArgs e)
291                 {
292                         if (this.close_on_mouse_release) {
293                                 this.DropDown.Dismiss (ToolStripDropDownCloseReason.ItemClicked);
294                                 this.Invalidate ();
295                                 this.close_on_mouse_release = false;
296                                 
297                                 if (!this.IsOnDropDown)
298                                         (this.Parent as MenuStrip).MenuDroppedDown = false;
299                         }
300                                 
301                         if (!this.HasDropDownItems && Enabled)
302                                 base.OnMouseUp (e);
303                 }
304
305                 protected override void OnOwnerChanged (EventArgs e)
306                 {
307                         base.OnOwnerChanged (e);
308                 }
309
310                 protected override void OnPaint (System.Windows.Forms.PaintEventArgs e)
311                 {
312                         base.OnPaint (e);
313
314                         if (this.Owner != null) {
315                                 Color font_color = this.Enabled ? this.ForeColor : SystemColors.GrayText;
316                                 Image draw_image = this.Enabled ? this.Image : ToolStripRenderer.CreateDisabledImage (this.Image);
317
318                                 this.Owner.Renderer.DrawMenuItemBackground (new System.Windows.Forms.ToolStripItemRenderEventArgs (e.Graphics, this));
319
320                                 Rectangle text_layout_rect;
321                                 Rectangle image_layout_rect;
322
323                                 this.CalculateTextAndImageRectangles (out text_layout_rect, out image_layout_rect);
324
325                                 if (this.IsOnDropDown) {
326                                         text_layout_rect = new Rectangle (35, text_layout_rect.Top, text_layout_rect.Width, text_layout_rect.Height);
327                                         if (image_layout_rect != Rectangle.Empty)
328                                                 image_layout_rect = new Rectangle (new Point (4, 3), base.GetImageSize ());
329
330                                         if (this.Checked)
331                                                 this.Owner.Renderer.DrawItemCheck (new ToolStripItemImageRenderEventArgs (e.Graphics, this, new Rectangle (2, 1, 19, 19)));
332                                 }
333                                 if (text_layout_rect != Rectangle.Empty)
334                                         this.Owner.Renderer.DrawItemText (new System.Windows.Forms.ToolStripItemTextRenderEventArgs (e.Graphics, this, this.Text, text_layout_rect, font_color, this.Font, this.TextAlign));
335
336                                 string key_string = GetShortcutDisplayString ();
337                                 
338                                 if (!string.IsNullOrEmpty (key_string) && !this.HasDropDownItems) {
339                                         int offset = 15;
340                                         Size key_string_size = TextRenderer.MeasureText (key_string, this.Font);
341                                         Rectangle key_string_rect = new Rectangle (this.ContentRectangle.Right - key_string_size.Width - offset, text_layout_rect.Top, key_string_size.Width, text_layout_rect.Height);
342                                         this.Owner.Renderer.DrawItemText (new System.Windows.Forms.ToolStripItemTextRenderEventArgs (e.Graphics, this, key_string, key_string_rect, font_color, this.Font, this.TextAlign));
343                                 }
344                                         
345                                 if (image_layout_rect != Rectangle.Empty)
346                                         this.Owner.Renderer.DrawItemImage (new System.Windows.Forms.ToolStripItemImageRenderEventArgs (e.Graphics, this, draw_image, image_layout_rect));
347
348                                 if (this.IsOnDropDown && this.HasDropDownItems)
349                                         this.Owner.Renderer.DrawArrow (new ToolStripArrowRenderEventArgs (e.Graphics, this, new Rectangle (this.Bounds.Width - 17, 2, 10, 20), Color.Black, ArrowDirection.Right));
350                                 return;
351                         }
352                 }
353
354                 protected internal override bool ProcessCmdKey (ref Message m, Keys keyData)
355                 {
356                         if (this.Enabled && keyData == this.shortcut_keys) {
357                                 this.FireEvent (EventArgs.Empty, ToolStripItemEventType.Click);
358                                 return true;
359                         }
360                                 
361                         return base.ProcessCmdKey (ref m, keyData);
362                 }
363
364                 protected internal override bool ProcessMnemonic (char charCode)
365                 {
366                         if (!this.Selected)
367                                 this.Parent.ChangeSelection (this);
368                                 
369                         if (this.HasDropDownItems) {
370                                 this.ShowDropDown ();
371                                 this.DropDown.SelectNextToolStripItem (null, true);
372                         } else
373                                 this.PerformClick ();
374                         
375                         return true;
376                 }
377                 
378                 protected internal override void SetBounds (Rectangle bounds)
379                 {
380                         base.SetBounds (bounds);
381                 }
382                 #endregion
383
384                 #region Public Events
385                 static object CheckedChangedEvent = new object ();
386                 static object CheckStateChangedEvent = new object ();
387
388                 public event EventHandler CheckedChanged {
389                         add { Events.AddHandler (CheckedChangedEvent, value); }
390                         remove {Events.RemoveHandler (CheckedChangedEvent, value); }
391                 }
392
393                 public event EventHandler CheckStateChanged {
394                         add { Events.AddHandler (CheckStateChangedEvent, value); }
395                         remove {Events.RemoveHandler (CheckStateChangedEvent, value); }
396                 }
397                 #endregion
398
399                 #region Internal Properties
400                 internal Form MdiClientForm {
401                         get { return this.mdi_client_form; }
402                         set { this.mdi_client_form = value; }
403                 }
404                 #endregion
405
406                 #region Internal Methods
407                 internal override Size CalculatePreferredSize (Size constrainingSize)
408                 {
409                         Size base_size = base.CalculatePreferredSize (constrainingSize);
410                         
411                         string key_string = GetShortcutDisplayString ();
412                         
413                         if (string.IsNullOrEmpty (key_string))
414                                 return base_size;
415                         
416                         Size text_size = TextRenderer.MeasureText (key_string, this.Font);
417                         
418                         return new Size (base_size.Width + text_size.Width - 25, base_size.Height);
419                 }
420                 
421                 internal string GetShortcutDisplayString ()
422                 {
423                         if (this.show_shortcut_keys == false)
424                                 return string.Empty;
425
426                         string key_string = string.Empty;
427
428                         if (!string.IsNullOrEmpty (this.shortcut_display_string))
429                                 key_string = this.shortcut_display_string;
430                         else if (this.shortcut_keys != Keys.None) {
431                                 KeysConverter kc = new KeysConverter ();
432                                 key_string = kc.ConvertToString (this.shortcut_keys);
433                         }
434                         
435                         return key_string;
436                 }
437                 
438                 internal void HandleAutoExpansion ()
439                 {
440                         if (this.HasDropDownItems) {
441                                 this.ShowDropDown ();
442                                 this.DropDown.SelectNextToolStripItem (null, true);
443                         }
444                 }
445
446                 internal override void HandleClick (EventArgs e)
447                 {
448                         this.OnClick (e);
449                 }
450                 #endregion
451         }
452 }
453 #endif