ToolBarConfigItems.cs 577 B

123456789101112131415161718192021222324252627
  1. using System;
  2. namespace PaintDotNet.Measurement
  3. {
  4. [Flags]
  5. public enum ToolBarConfigItems : uint
  6. {
  7. None = 0,
  8. All = ~None,
  9. // IMPORTANT: Keep these in alphabetical order.
  10. AlphaBlending = 1,
  11. Antialiasing = 2,
  12. Brush = 4,
  13. ColorPickerBehavior = 8,
  14. FloodMode = 4096,
  15. Gradient = 16,
  16. Pen = 32,
  17. PenCaps = 64,
  18. SelectionCombineMode = 2048,
  19. SelectionDrawMode = 8192,
  20. ShapeType = 128,
  21. Resampling = 256,
  22. Text = 512,
  23. Tolerance = 1024,
  24. }
  25. }