/Source/BatterySaver/Lib/Actions/UI/KillProcess.cs

# · C# · 80 lines · 43 code · 9 blank · 28 comment · 4 complexity · 9f76bd18b9f350e299f07b867290dd01 MD5 · raw file

  1. #region Copyright © 2010, Ryan Emerle; All rights reserved
  2. // Copyright © 2010, Ryan Emerle
  3. // All rights reserved.
  4. // http://www.emerle.net/
  5. //
  6. // Redistribution and use in source and binary forms, with or without
  7. // modification, are permitted provided that the following conditions
  8. // are met:
  9. //
  10. // - Redistributions of source code must retain the above copyright
  11. // notice, this list of conditions and the following disclaimer.
  12. //
  13. // - Neither the name of the Ryan Emerle, nor the names of any
  14. // contributors may be used to endorse or promote products
  15. // derived from this software without specific prior written
  16. // permission.
  17. //
  18. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  21. // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  22. // COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  23. // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES INCLUDING,
  24. // BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  25. // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  26. // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  27. // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  28. // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29. // POSSIBILITY OF SUCH DAMAGE.
  30. #endregion
  31. using System;
  32. using System.Collections.Generic;
  33. using System.Linq;
  34. using System.Text;
  35. namespace BatterySaver.Lib.Actions.UI
  36. {
  37. public partial class KillProcess : BaseUiComponent
  38. {
  39. public KillProcess()
  40. {
  41. InitializeComponent();
  42. }
  43. public override IActionUiComponent LoadAction( IAction action )
  44. {
  45. base.LoadAction( action );
  46. Action = action;
  47. processNameTextBox.Text = ( action as Actions.KillProcess ).ProcessName;
  48. return this;
  49. }
  50. public override IActionUiComponent Save()
  51. {
  52. base.Save();
  53. var action = Action as Actions.KillProcess;
  54. if ( action == null )
  55. {
  56. action = new Actions.KillProcess();
  57. }
  58. action.ProcessName = processNameTextBox.Text;
  59. return this;
  60. }
  61. private void ProcessNameTextBoxValidating( object sender, System.ComponentModel.CancelEventArgs e )
  62. {
  63. MarkValid( sender );
  64. if ( processNameTextBox.Text == "" )
  65. {
  66. e.Cancel = true;
  67. MarkError( sender, "Process Name is required" );
  68. }
  69. }
  70. }
  71. }