Button.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. //
  2. // Permission is hereby granted, free of charge, to any person obtaining
  3. // a copy of this software and associated documentation files (the
  4. // "Software"), to deal in the Software without restriction, including
  5. // without limitation the rights to use, copy, modify, merge, publish,
  6. // distribute, sublicense, and/or sell copies of the Software, and to
  7. // permit persons to whom the Software is furnished to do so, subject to
  8. // the following conditions:
  9. //
  10. // The above copyright notice and this permission notice shall be
  11. // included in all copies or substantial portions of the Software.
  12. //
  13. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  14. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  15. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  16. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  17. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  18. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  19. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  20. //
  21. // Copyright (c) 2004-2005 Novell, Inc.
  22. //
  23. // Authors:
  24. // Peter Bartok [email protected]
  25. //
  26. // COMPLETE
  27. using System.ComponentModel;
  28. using System.Drawing;
  29. using System.Drawing.Text;
  30. namespace System.Windows.Forms {
  31. public class Button : ButtonBase, IButtonControl {
  32. #region Local variables
  33. DialogResult dialog_result;
  34. #endregion // Local variables
  35. #region Public Constructors
  36. public Button() {
  37. dialog_result = DialogResult.None;
  38. SetStyle(ControlStyles.StandardDoubleClick, false);
  39. }
  40. #endregion // Public Constructors
  41. #region Internal methods
  42. internal override void HaveDoubleClick() {
  43. if (DoubleClick != null) DoubleClick(this, EventArgs.Empty);
  44. }
  45. #endregion // Internal methods
  46. #region Public Instance Properties
  47. [DefaultValue(DialogResult.None)]
  48. public virtual DialogResult DialogResult { // IButtonControl
  49. get {
  50. return dialog_result;
  51. }
  52. set {
  53. dialog_result = value;
  54. }
  55. }
  56. #endregion // Public Instance Properties
  57. #region Protected Instance Properties
  58. protected override CreateParams CreateParams {
  59. get {
  60. return base.CreateParams;
  61. }
  62. }
  63. #endregion // Protected Instance Properties
  64. #region Public Instance Methods
  65. public virtual void NotifyDefault(bool value) { // IButtonControl
  66. this.IsDefault = value;
  67. }
  68. public void PerformClick() { // IButtonControl
  69. if (CanSelect)
  70. OnClick(EventArgs.Empty);
  71. }
  72. public override string ToString() {
  73. return base.ToString() + ", Text: " + this.text;
  74. }
  75. #endregion // Public Instance Methods
  76. #region Protected Instance Methods
  77. protected override void OnClick(EventArgs e) {
  78. if (dialog_result != DialogResult.None) {
  79. Form p = Parent as Form;
  80. if (p != null) {
  81. p.DialogResult = dialog_result;
  82. }
  83. }
  84. base.OnClick(e);
  85. }
  86. protected override void OnMouseUp(MouseEventArgs e) {
  87. base.OnMouseUp (e);
  88. }
  89. protected override bool ProcessMnemonic(char charCode) {
  90. if (IsMnemonic(charCode, Text) == true) {
  91. PerformClick();
  92. return true;
  93. }
  94. return base.ProcessMnemonic(charCode);
  95. }
  96. protected override void WndProc(ref Message m) {
  97. base.WndProc (ref m);
  98. }
  99. #endregion // Protected Instance Methods
  100. #region Events
  101. [Browsable(false)]
  102. [EditorBrowsable (EditorBrowsableState.Advanced)]
  103. public event EventHandler DoubleClick;
  104. #endregion // Events
  105. }
  106. }