innit
This commit is contained in:
2026-01-20 12:56:34 +13:00
commit a2faa1955f
73 changed files with 1906 additions and 0 deletions

22
Source/CrushSliderLook.h Normal file
View File

@@ -0,0 +1,22 @@
/*
==============================================================================
CrushSliderLook.h
Created: 16 Jan 2026 9:40:57pm
Author: esca
==============================================================================
*/
#pragma once
#include "juce_gui_basics/juce_gui_basics.h"
#include <JuceHeader.h>
class CrushSliderLook : public juce::LookAndFeel_V4{
public:
void drawLinearSlider(juce::Graphics &g, int x, int y, int width, int height, float sliderPos, float minSliderPos, float maxSliderPos, juce::Slider::SliderStyle sliderStyle, juce::Slider &slider ) override;
void setImages();
private:
juce::Image bg;
juce::Image fg;
};