2008-05-01 Rodrigo Kumpera <rkumpera@novell.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                 [EditorBrowsable (EditorBrowsableState.Advanced)]
203                 protected override AccessibleObject CreateAccessibilityInstance ()
204                 {
205                         return new ToolStripMenuItemAccessibleObject ();
206                 }
207                 
208                 protected override ToolStripDropDown CreateDefaultDropDown ()
209                 {
210                         ToolStripDropDownMenu tsddm = new ToolStripDropDownMenu ();
211                         tsddm.OwnerItem = this;
212                         return tsddm;
213                 }
214
215                 protected override void Dispose (bool disposing)
216                 {
217                         base.Dispose (disposing);
218                 }
219
220                 protected virtual void OnCheckedChanged (EventArgs e)
221                 {
222                         EventHandler eh = (EventHandler)Events [CheckedChangedEvent];
223                         if (eh != null)
224                                 eh (this, e);
225                 }
226
227                 protected virtual void OnCheckStateChanged (EventArgs e)
228                 {
229                         EventHandler eh = (EventHandler)Events [CheckStateChangedEvent];
230                         if (eh != null)
231                                 eh (this, e);
232                 }
233
234                 protected override void OnClick (EventArgs e)
235                 {
236                         if (!this.Enabled)
237                                 return;
238                                 
239                         if (this.HasDropDownItems) {
240                                 base.OnClick (e);
241                                 return;
242                         }
243                                 
244                         if (this.OwnerItem is ToolStripDropDownItem)
245                                 (this.OwnerItem as ToolStripDropDownItem).OnDropDownItemClicked (new ToolStripItemClickedEventArgs (this));
246
247                         if (this.IsOnDropDown)
248                                 this.GetTopLevelToolStrip ().Dismiss (ToolStripDropDownCloseReason.ItemClicked);
249
250                         if (this.IsMdiWindowListEntry) {
251                                 this.mdi_client_form.MdiParent.MdiContainer.ActivateChild (this.mdi_client_form);
252                                 return;
253                         }
254                         
255                         if (this.check_on_click)
256                                 this.Checked = !this.Checked;
257
258                         base.OnClick (e);
259                 }
260
261                 protected override void OnDropDownHide (EventArgs e)
262                 {
263                         base.OnDropDownHide (e);
264                 }
265
266                 protected override void OnDropDownShow (EventArgs e)
267                 {
268                         base.OnDropDownShow (e);
269                 }
270
271                 protected override void OnFontChanged (EventArgs e)
272                 {
273                         base.OnFontChanged (e);
274                 }
275
276                 protected override void OnMouseDown (MouseEventArgs e)
277                 {
278                         if (!this.IsOnDropDown && this.HasDropDownItems && this.DropDown.Visible)
279                                 this.close_on_mouse_release = true;
280                                 
281                         if (this.HasDropDownItems && Enabled)
282                                 if (!this.DropDown.Visible)
283                                         this.ShowDropDown ();
284
285                         base.OnMouseDown (e);
286                 }
287
288                 protected override void OnMouseEnter (EventArgs e)
289                 {
290                         if (this.IsOnDropDown && this.HasDropDownItems && Enabled)
291                                 this.ShowDropDown ();
292
293                         base.OnMouseEnter (e);
294                 }
295
296                 protected override void OnMouseLeave (EventArgs e)
297                 {
298                         base.OnMouseLeave (e);
299                 }
300
301                 protected override void OnMouseUp (MouseEventArgs e)
302                 {
303                         if (this.close_on_mouse_release) {
304                                 this.DropDown.Dismiss (ToolStripDropDownCloseReason.ItemClicked);
305                                 this.Invalidate ();
306                                 this.close_on_mouse_release = false;
307                                 
308                                 if (!this.IsOnDropDown && this.Parent is MenuStrip)
309                                         (this.Parent as MenuStrip).MenuDroppedDown = false;
310                         }
311                                 
312                         if (!this.HasDropDownItems && Enabled)
313                                 base.OnMouseUp (e);
314                 }
315
316                 protected override void OnOwnerChanged (EventArgs e)
317                 {
318                         base.OnOwnerChanged (e);
319                 }
320
321                 protected override void OnPaint (System.Windows.Forms.PaintEventArgs e)
322                 {
323                         base.OnPaint (e);
324
325                         // Can't render without an owner
326                         if (this.Owner == null)
327                                 return;
328                                 
329                         // If DropDown.ShowImageMargin is false, we don't display the image
330                         Image draw_image = this.UseImageMargin ? this.Image : null;
331                         
332                         // Figure out our text color
333                         Color font_color = this.ForeColor == SystemColors.ControlText ? SystemColors.MenuText : this.ForeColor;
334                         
335                         if ((this.Selected || this.Pressed) && this.IsOnDropDown && font_color == SystemColors.MenuText)
336                                 font_color = SystemColors.HighlightText;
337                         
338                         if (!this.Enabled && this.ForeColor == SystemColors.ControlText)
339                                 font_color = SystemColors.GrayText;
340                         
341                         // Gray stuff out if we're disabled
342                         draw_image = this.Enabled ? draw_image : ToolStripRenderer.CreateDisabledImage (draw_image);
343                                 
344                         // Draw our background
345                         this.Owner.Renderer.DrawMenuItemBackground (new ToolStripItemRenderEventArgs (e.Graphics, this));
346
347                         // Figure out where our text and image go
348                         Rectangle text_layout_rect;
349                         Rectangle image_layout_rect;
350
351                         this.CalculateTextAndImageRectangles (out text_layout_rect, out image_layout_rect);
352
353                         if (this.IsOnDropDown) {
354                                 if (!this.UseImageMargin) {
355                                         image_layout_rect = Rectangle.Empty;
356                                         text_layout_rect = new Rectangle (8, text_layout_rect.Top, text_layout_rect.Width, text_layout_rect.Height);
357                                 } else {
358                                         text_layout_rect = new Rectangle (35, text_layout_rect.Top, text_layout_rect.Width, text_layout_rect.Height);
359                                 
360                                         if (image_layout_rect != Rectangle.Empty)
361                                                 image_layout_rect = new Rectangle (new Point (4, 3), base.GetImageSize ());
362                                 }
363
364                                 if (this.Checked && this.ShowMargin)
365                                         this.Owner.Renderer.DrawItemCheck (new ToolStripItemImageRenderEventArgs (e.Graphics, this, new Rectangle (2, 1, 19, 19)));
366                         }
367                         if (text_layout_rect != Rectangle.Empty)
368                                 this.Owner.Renderer.DrawItemText (new ToolStripItemTextRenderEventArgs (e.Graphics, this, this.Text, text_layout_rect, font_color, this.Font, this.TextAlign));
369
370                         string key_string = GetShortcutDisplayString ();
371                         
372                         if (!string.IsNullOrEmpty (key_string) && !this.HasDropDownItems) {
373                                 int offset = 15;
374                                 Size key_string_size = TextRenderer.MeasureText (key_string, this.Font);
375                                 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);
376                                 this.Owner.Renderer.DrawItemText (new ToolStripItemTextRenderEventArgs (e.Graphics, this, key_string, key_string_rect, font_color, this.Font, this.TextAlign));
377                         }
378                                 
379                         if (image_layout_rect != Rectangle.Empty)
380                                 this.Owner.Renderer.DrawItemImage (new ToolStripItemImageRenderEventArgs (e.Graphics, this, draw_image, image_layout_rect));
381
382                         if (this.IsOnDropDown && this.HasDropDownItems)
383                                 this.Owner.Renderer.DrawArrow (new ToolStripArrowRenderEventArgs (e.Graphics, this, new Rectangle (this.Bounds.Width - 17, 2, 10, 20), Color.Black, ArrowDirection.Right));
384                         return;
385                 }
386
387                 protected internal override bool ProcessCmdKey (ref Message m, Keys keyData)
388                 {
389                         if (this.Enabled && keyData == this.shortcut_keys) {
390                                 this.FireEvent (EventArgs.Empty, ToolStripItemEventType.Click);
391                                 return true;
392                         }
393                                 
394                         return base.ProcessCmdKey (ref m, keyData);
395                 }
396
397                 protected internal override bool ProcessMnemonic (char charCode)
398                 {
399                         if (!this.Selected)
400                                 this.Parent.ChangeSelection (this);
401                                 
402                         if (this.HasDropDownItems) {
403                                 ToolStripManager.SetActiveToolStrip (this.Parent, true);
404                                 this.ShowDropDown ();
405                                 this.DropDown.SelectNextToolStripItem (null, true);
406                         } else
407                                 this.PerformClick ();
408                         
409                         return true;
410                 }
411                 
412                 protected internal override void SetBounds (Rectangle rect)
413                 {
414                         base.SetBounds (rect);
415                 }
416                 #endregion
417
418                 #region Public Events
419                 static object CheckedChangedEvent = new object ();
420                 static object CheckStateChangedEvent = new object ();
421
422                 public event EventHandler CheckedChanged {
423                         add { Events.AddHandler (CheckedChangedEvent, value); }
424                         remove {Events.RemoveHandler (CheckedChangedEvent, value); }
425                 }
426
427                 public event EventHandler CheckStateChanged {
428                         add { Events.AddHandler (CheckStateChangedEvent, value); }
429                         remove {Events.RemoveHandler (CheckStateChangedEvent, value); }
430                 }
431                 #endregion
432
433                 #region Internal Properties
434                 internal Form MdiClientForm {
435                         get { return this.mdi_client_form; }
436                         set { this.mdi_client_form = value; }
437                 }
438                 #endregion
439
440                 #region Internal Methods
441                 internal override Size CalculatePreferredSize (Size constrainingSize)
442                 {
443                         Size base_size = base.CalculatePreferredSize (constrainingSize);
444                         
445                         string key_string = GetShortcutDisplayString ();
446                         
447                         if (string.IsNullOrEmpty (key_string))
448                                 return base_size;
449                         
450                         Size text_size = TextRenderer.MeasureText (key_string, this.Font);
451                         
452                         return new Size (base_size.Width + text_size.Width - 25, base_size.Height);
453                 }
454                 
455                 internal string GetShortcutDisplayString ()
456                 {
457                         if (this.show_shortcut_keys == false)
458                                 return string.Empty;
459
460                         string key_string = string.Empty;
461
462                         if (!string.IsNullOrEmpty (this.shortcut_display_string))
463                                 key_string = this.shortcut_display_string;
464                         else if (this.shortcut_keys != Keys.None) {
465                                 KeysConverter kc = new KeysConverter ();
466                                 key_string = kc.ConvertToString (this.shortcut_keys);
467                         }
468                         
469                         return key_string;
470                 }
471                 
472                 internal void HandleAutoExpansion ()
473                 {
474                         if (this.HasDropDownItems) {
475                                 this.ShowDropDown ();
476                                 this.DropDown.SelectNextToolStripItem (null, true);
477                         }
478                 }
479
480                 internal override void HandleClick (EventArgs e)
481                 {
482                         this.OnClick (e);
483                         
484                         if (Parent != null)
485                                 Parent.Invalidate ();
486                 }
487                 #endregion
488
489                 #region ToolStripMenuItemAccessibleObject
490                 private class ToolStripMenuItemAccessibleObject : AccessibleObject
491                 {
492                 }
493                 #endregion
494         }
495 }
496 #endif