ISelectionCombineModeConfig.cs 1019 B

123456789101112131415161718192021222324252627
  1. /////////////////////////////////////////////////////////////////////////////////
  2. // Paint.NET //
  3. // Copyright (C) dotPDN LLC, Rick Brewster, Tom Jackson, and contributors. //
  4. // Portions Copyright (C) Microsoft Corporation. All Rights Reserved. //
  5. // See src/Resources/Files/License.txt for full licensing and attribution //
  6. // details. //
  7. // . //
  8. /////////////////////////////////////////////////////////////////////////////////
  9. using System;
  10. using System.Drawing.Drawing2D;
  11. namespace PaintDotNet.Measurement.Interface
  12. {
  13. internal interface ISelectionCombineModeConfig
  14. {
  15. event EventHandler SelectionCombineModeChanged;
  16. CombineMode SelectionCombineMode
  17. {
  18. get;
  19. set;
  20. }
  21. void PerformSelectionCombineModeChanged();
  22. }
  23. }