gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

xtWaveEditorStyle.h (351B)


      1 #pragma once
      2 
      3 #include "juce_gui_basics/juce_gui_basics.h"
      4 
      5 namespace xtJucePlugin
      6 {
      7 	struct WaveEditorStyle
      8 	{
      9 		juce::Colour colGraphLine = juce::Colour(0xffffffff);
     10 		juce::Colour colGraphLineHighlighted = juce::Colour(0xffffaa00);
     11 		float graphLineThickness = 3.0f;
     12 		float graphPointSize = 10.0f;
     13 		float graphPointSizeHighlighted = 30.0f;
     14 	};
     15 }