-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBasicStyle.h
44 lines (30 loc) · 1.33 KB
/
BasicStyle.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
==============================================================================
BasicStyle.h
Created: 6 Jul 2022 3:46:46pm
Author: Tristan
Overrides the look and feel class to make a custom look for this theme
==============================================================================
*/
#pragma once
#include <JuceHeader.h>
//==============================================================================
/*
*/
class BasicStyle : public LookAndFeel_V4
{
public:
void drawToggleButton (Graphics&, ToggleButton&,
bool shouldDrawButtonAsHighlighted, bool shouldDrawButtonAsDown) override;
void drawLinearSlider (Graphics& ,
int x, int y, int width, int height,
float sliderPos,
float minSliderPos,
float maxSliderPos,
const Slider::SliderStyle,
Slider& ) override;
void drawRotarySlider (Graphics&, int x, int y, int width, int height,
float sliderPosProportional, float rotaryStartAngle,
float rotaryEndAngle, Slider&) override;
private:
};