- Custom Rajdhani font (Regular/Medium/Bold) embedded via BinaryData - Background carbon fiber noise texture overlay - 3D metal knobs with radial gradient, rim, highlight, center cap - Orange type (ADSR/Master/Pitch/Pan) + Dark/blue type (FX/Filter) - Intense glow on value arc (5 layers: outer -> hot center) - Intense glow on pointer (4 layers) - All thicknesses scale proportionally with knob pixel size - FX panel: bordered boxes for each section with gradient background - Pad glow: cyan multi-pass glow on selected pad - Pad numbers: dark background badge for contrast - Waveform display: grid lines + center reference line - VU meter: peak hold indicator + dB scale markers - Buttons: gradient fill + hover highlight + rounded border - All fonts and spacing scale proportionally with window size - Top bar: darker header with gradient - Double-click resets knobs to default values Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
47 sor
1.7 KiB
C++
47 sor
1.7 KiB
C++
#pragma once
|
|
#include <JuceHeader.h>
|
|
|
|
class InstaDrumsLookAndFeel : public juce::LookAndFeel_V4
|
|
{
|
|
public:
|
|
// Colour palette
|
|
static inline const juce::Colour bgDark { 0xff1a1a2e };
|
|
static inline const juce::Colour bgMedium { 0xff16213e };
|
|
static inline const juce::Colour bgLight { 0xff0f3460 };
|
|
static inline const juce::Colour textPrimary { 0xffe0e0e0 };
|
|
static inline const juce::Colour textSecondary { 0xff888899 };
|
|
static inline const juce::Colour accent { 0xff00ff88 };
|
|
|
|
// Knob type property key
|
|
static constexpr const char* knobTypeProperty = "knobType";
|
|
|
|
InstaDrumsLookAndFeel();
|
|
|
|
void drawRotarySlider (juce::Graphics& g, int x, int y, int width, int height,
|
|
float sliderPosProportional, float rotaryStartAngle,
|
|
float rotaryEndAngle, juce::Slider& slider) override;
|
|
|
|
void drawButtonBackground (juce::Graphics& g, juce::Button& button,
|
|
const juce::Colour& backgroundColour,
|
|
bool shouldDrawButtonAsHighlighted,
|
|
bool shouldDrawButtonAsDown) override;
|
|
|
|
// Custom fonts
|
|
juce::Font getRegularFont (float height) const;
|
|
juce::Font getMediumFont (float height) const;
|
|
juce::Font getBoldFont (float height) const;
|
|
|
|
// Background texture
|
|
void drawBackgroundTexture (juce::Graphics& g, juce::Rectangle<int> area);
|
|
|
|
juce::Typeface::Ptr getTypefaceForFont (const juce::Font& font) override;
|
|
|
|
private:
|
|
juce::Typeface::Ptr typefaceRegular;
|
|
juce::Typeface::Ptr typefaceMedium;
|
|
juce::Typeface::Ptr typefaceBold;
|
|
|
|
juce::Image noiseTexture;
|
|
void generateNoiseTexture();
|
|
};
|