Button.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 Novell, Inc.
  22. //
  23. // Authors:
  24. // Peter Bartok [email protected]
  25. //
  26. // $Log: Button.cs,v $
  27. // Revision 1.1 2004/09/01 20:39:41 pbartok
  28. // - Functional initial check-in
  29. //
  30. //
  31. // COMPLETE
  32. using System.Drawing;
  33. using System.Drawing.Text;
  34. namespace System.Windows.Forms {
  35. public class Button : ButtonBase, IButtonControl {
  36. #region Local variables
  37. DialogResult dialog_result;
  38. #endregion // Local variables
  39. #region Public Constructors
  40. public Button() {
  41. dialog_result = DialogResult.None;
  42. }
  43. #endregion // Public Constructors
  44. #region Public Instance Properties
  45. public DialogResult DialogResult { // IButtonControl
  46. get {
  47. return dialog_result;
  48. }
  49. set {
  50. dialog_result = value;
  51. }
  52. }
  53. #endregion // Public Instance Properties
  54. #region Protected Instance Properties
  55. protected override CreateParams CreateParams {
  56. get {
  57. SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  58. SetStyle(ControlStyles.UserPaint, true);
  59. return base.CreateParams;
  60. }
  61. }
  62. #endregion // Protected Instance Properties
  63. #region Public Instance Methods
  64. public virtual void NotifyDefault(bool value) { // IButtonControl
  65. this.IsDefault = value;
  66. }
  67. public void PerformClick() { // IButtonControl
  68. OnClick(EventArgs.Empty);
  69. }
  70. public override string ToString() {
  71. return base.ToString() + ", Text: " + this.text;
  72. }
  73. #endregion // Public Instance Methods
  74. #region Protected Instance Methods
  75. protected override void OnClick(EventArgs e) {
  76. if (dialog_result != DialogResult.None) {
  77. Form p = Parent as Form;
  78. if (p != null) {
  79. p.DialogResult = dialog_result;
  80. }
  81. }
  82. base.OnClick(e);
  83. Redraw();
  84. }
  85. protected override void OnMouseUp(MouseEventArgs e) {
  86. base.OnMouseUp (e);
  87. }
  88. protected override bool ProcessMnemonic(char charCode) {
  89. return base.ProcessMnemonic (charCode);
  90. }
  91. protected override void WndProc(ref Message m) {
  92. base.WndProc (ref m);
  93. }
  94. #endregion // Protected Instance Methods
  95. }
  96. }