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/DialLook.h Normal file
View File

@@ -0,0 +1,22 @@
/*
==============================================================================
Dial.h
Created: 16 Jan 2026 7:16:39pm
Author: esca
==============================================================================
*/
#pragma once
#include "juce_gui_basics/juce_gui_basics.h"
#include <JuceHeader.h>
class DialLook : public juce::LookAndFeel_V4{
public:
void drawRotarySlider(juce::Graphics& g, int x, int y, int width, int height, float sliderPos, const float rotaryStartAngle, const float rotaryEndAngle, juce::Slider&) override;
void setImage();
private:
juce::Image bgImg;
juce::Image rotator;
};