- fixed font loading

- changed to RMS
- added decibel Scales
- fixed logo loading
- changed blood theme
- added some look and feel
This commit is contained in:
Maurice Grönwoldt 2020-06-29 22:47:45 +02:00
commit 3fda15966c
16 changed files with 396 additions and 146 deletions

View file

@ -3,3 +3,8 @@
//
#include "SidebarMixer.h"
SidebarMixer::SidebarMixer (const std::string& processId) : BaseComponent (processId)
{
}

View file

@ -4,8 +4,17 @@
#ifndef VENO_SIDEBARMIXER_H
#define VENO_SIDEBARMIXER_H
class SidebarMixer
{
#include "JuceHeader.h"
#include "../../Components/BaseComponent.h"
class SidebarMixer : public BaseComponent
{
private:
public:
SidebarMixer (const std::string& processId);
~SidebarMixer() = default;
protected:
};
#endif //VENO_SIDEBARMIXER_H

View file

@ -18,11 +18,8 @@ VenoLogo* VenoLogo::getInstance ()
VenoLogo::VenoLogo ()
{
MemoryOutputStream mo;
auto result = Base64::convertFromBase64(mo, base64logo);
if (result)
{
realLogo = juce::PNGImageFormat::loadFrom(mo.getData(), mo.getDataSize());
}
auto result = ImageCache::getFromMemory(BinaryData::LogoVeNo_png, BinaryData::LogoVeNo_pngSize);
realLogo = result;
}
Image VenoLogo::getLogo ()
@ -33,4 +30,5 @@ Image VenoLogo::getLogo ()
void VenoLogo::deleteInstance ()
{
delete instance;
instance = nullptr;
}

File diff suppressed because one or more lines are too long