- 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:
parent
a27c62f062
commit
3fda15966c
16 changed files with 396 additions and 146 deletions
|
|
@ -3,3 +3,8 @@
|
|||
//
|
||||
|
||||
#include "SidebarMixer.h"
|
||||
|
||||
SidebarMixer::SidebarMixer (const std::string& processId) : BaseComponent (processId)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
Loading…
Add table
Add a link
Reference in a new issue