InteractiveChartStyleScheme.cs 867 B

1234567891011121314151617181920212223
  1. using System.Drawing;
  2. namespace SongVocalSectionAnalyser.UI
  3. {
  4. public abstract class InteractiveChartStyleScheme
  5. {
  6. public abstract int ChartFramePadding { get; set; }
  7. public abstract Color FrameColor { get; set; }
  8. public abstract int FrameWidth { get; set; }
  9. public abstract Color SampleColor { get; set; }
  10. public abstract int SampleWidth { get; set; }
  11. public abstract Color ChunkColor { get; set; }
  12. public abstract Color ChunkThresholdColor { get; set; }
  13. public abstract Color MaCurveColor { get; set; }
  14. public abstract int MaCurveWidth { get; set; }
  15. public abstract Color CursorColor { get; set; }
  16. public abstract int CursorWidth { get; set; }
  17. public abstract Color PlayingColor { get; set; }
  18. public abstract int PlayingWidth { get; set; }
  19. }
  20. }