Skip to content

Commit

Permalink
- added about icon to topbar
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-hart committed Jun 8, 2017
1 parent 7698746 commit 6a195a2
Show file tree
Hide file tree
Showing 10 changed files with 172 additions and 7,771 deletions.
4 changes: 3 additions & 1 deletion hi_backend/backend/BackendApplicationCommands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1216,7 +1216,9 @@ void BackendCommandTarget::Actions::checkDuplicateIds(BackendRootWindow *bpe)

void BackendCommandTarget::Actions::showAboutPage(BackendRootWindow * bpe)
{
bpe->mainEditor->aboutPage->showAboutPage();
bpe->getMainTopBar()->togglePopup(MainTopBar::PopupType::About, true);

//bpe->mainEditor->aboutPage->showAboutPage();
}

void BackendCommandTarget::Actions::checkVersion(BackendRootWindow *bpe)
Expand Down
44 changes: 34 additions & 10 deletions hi_backend/backend/BackendEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,13 @@ rootEditorIsMainSynthChain(true)

addChildComponent(debugLoggerWindow = new DebugLoggerComponent(&owner->getDebugLogger()));

addAndMakeVisible(aboutPage = new AboutPage());

viewport->viewport->setScrollBarThickness(SCROLLBAR_WIDTH);
viewport->viewport->setSingleStepSizes(0, 6);

setRootProcessor(owner->synthChain->getRootProcessor());

owner->addScriptListener(this);

aboutPage->setVisible(false);
aboutPage->setBoundsInset(BorderSize<int>(80));
};

BackendProcessorEditor::~BackendProcessorEditor()
Expand All @@ -73,8 +69,6 @@ BackendProcessorEditor::~BackendProcessorEditor()
popupEditor = nullptr;
stupidRectangle = nullptr;

aboutPage = nullptr;

// Remove the toolbar stuff

breadCrumbComponent = nullptr;
Expand Down Expand Up @@ -172,8 +166,6 @@ void BackendProcessorEditor::setViewportPositions(int viewportX, const int viewp
viewport->setVisible(containerHeight > 0);
viewport->setBounds(viewportX, viewportY, getWidth()-viewportX, containerHeight); // Overlap with the fade

aboutPage->setBounds(viewportX, viewportY, viewportWidth, viewportHeight);

if (currentPopupComponent != nullptr)
{
jassert(stupidRectangle != nullptr);
Expand Down Expand Up @@ -438,6 +430,14 @@ void BackendProcessorEditor::clearModuleList()
MainTopBar::MainTopBar(FloatingTile* parent) :
FloatingTileContent(parent)
{
addAndMakeVisible(hiseButton = new ImageButton("HISE"));

Image hise = ImageCache::getFromMemory(BinaryData::logo_mini_png, BinaryData::logo_mini_pngSize);


hiseButton->setImages(false, true, true, hise, 0.9f, Colour(0), hise, 1.0f, Colours::white.withAlpha(0.1f), hise, 1.0f, Colours::white.withAlpha(0.1f), 0.1f);
hiseButton->setCommandToTrigger(getRootWindow()->getBackendProcessor()->getCommandManager(), BackendCommandTarget::MenuHelpShowAboutPage, true);

addAndMakeVisible(backButton = new ShapeButton("Back", Colours::white.withAlpha(0.4f), Colours::white.withAlpha(0.8f), Colours::white));
ScopedPointer<DrawablePath> bPath = dynamic_cast<DrawablePath*>(MainToolbarFactory::MainToolbarPaths::createPath(BackendCommandTarget::MenuViewBack, true));
backButton->setShape(bPath->getPath(), false, true, true);
Expand Down Expand Up @@ -824,6 +824,8 @@ void MainTopBar::paint(Graphics& g)
{
//g.fillAll(HiseColourScheme::getColour(HiseColourScheme::ColourIds::EditorBackgroundColourId));



Colour c1 = JUCE_LIVE_CONSTANT_OFF(Colour(0xFF424242));
Colour c2 = JUCE_LIVE_CONSTANT_OFF(Colour(0xFF404040));

Expand Down Expand Up @@ -871,11 +873,21 @@ void MainTopBar::resized()

int x = 10;

backButton->setBounds(x, (getHeight()-32)/2, 24, 24);
const int hiseButtonSize = 40;
const int hiseButtonOffset = (getHeight() - hiseButtonSize) / 2;

hiseButton->setBounds(hiseButtonOffset, hiseButtonOffset, hiseButtonSize, hiseButtonSize);

x = hiseButton->getRight() + 10;

const int backButtonSize = 24;
const int backButtonOffset = (getHeight() - backButtonSize) / 2;

backButton->setBounds(x, backButtonOffset, backButtonSize, backButtonSize);

x = backButton->getRight() + 4;

forwardButton->setBounds(x, (getHeight() - 32) / 2, 24, 24);
forwardButton->setBounds(x, backButtonOffset, backButtonSize, backButtonSize);

const int leftX = forwardButton->getRight() + 4;

Expand Down Expand Up @@ -964,6 +976,18 @@ void MainTopBar::togglePopup(PopupType t, bool shouldShow)

switch (t)
{
case MainTopBar::PopupType::About:
{
c = new AboutPage();

c->setSize(500, 300);

button = hiseButton;

hiseButton->setToggleState(!hiseButton->getToggleState(), dontSendNotification);

break;
}
case MainTopBar::PopupType::Macro:
{
c = new MacroComponent(getRootWindow());
Expand Down
7 changes: 5 additions & 2 deletions hi_backend/backend/BackendEditor.h
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,6 @@ class BackendProcessorEditor: public FloatingTileContent,
ScopedPointer<ProcessorEditor> popupEditor;
ScopedPointer<StupidRectangle> stupidRectangle;

ScopedPointer<AboutPage> aboutPage;

ScopedPointer<BreadcrumbComponent> breadCrumbComponent;

ScopedPointer<PluginPreviewWindow> previewWindow;
Expand All @@ -314,6 +312,7 @@ class MainTopBar : public FloatingTileContent,

enum class PopupType
{
About,
Macro,
PluginPreview,
Settings,
Expand Down Expand Up @@ -347,6 +346,8 @@ class MainTopBar : public FloatingTileContent,

void togglePopup(PopupType t, bool shouldShow);



private:

Rectangle<int> frontendArea;
Expand All @@ -355,6 +356,8 @@ class MainTopBar : public FloatingTileContent,
ScopedPointer<TooltipBar> tooltipBar;
ScopedPointer<VoiceCpuBpmComponent> voiceCpuBpmComponent;

ScopedPointer<ImageButton> hiseButton;

ScopedPointer<ShapeButton> backButton;
ScopedPointer<ShapeButton> forwardButton;

Expand Down
11 changes: 11 additions & 0 deletions hi_backend/backend/BackendRootWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,17 @@ class BackendRootWindow : public AudioProcessorEditor,

void showWorkspace(int workspace);

MainTopBar* getMainTopBar()
{
FloatingTile::Iterator<MainTopBar> iter(getRootFloatingTile());

auto bar = iter.getNextPanel();

jassert(bar != nullptr);

return bar;
}

private:

int currentWorkspace = BackendCommandTarget::WorkspaceMain;
Expand Down
84 changes: 44 additions & 40 deletions hi_core/hi_core/PresetHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2122,77 +2122,76 @@ AboutPage::AboutPage()
{
#if USE_BACKEND

aboutHeader = ImageCache::getFromMemory(BinaryData::About_png, BinaryData::About_pngSize);


#endif

addAndMakeVisible(checkUpdateButton = new TextButton("Check Updates"));
};


void AboutPage::paint(Graphics &g)
{
#if USE_BACKEND

g.fillAll(Colour(0xFF333333));


static const unsigned char pathData[] = { 110,109,82,208,82,68,229,80,110,67,98,49,184,85,68,47,189,120,67,94,10,89,68,49,152,128,67,201,198,92,68,254,212,131,67,98,68,131,96,68,203,17,135,67,174,63,100,68,33,176,136,67,25,252,103,68,33,176,136,67,98,143,162,108,68,33,176,136,67,219,41,112,68,
59,223,134,67,111,146,114,68,80,61,131,67,98,236,249,116,68,201,54,127,67,201,46,118,68,188,148,117,67,201,46,118,68,248,147,105,67,98,201,46,118,68,209,66,99,67,27,223,117,68,25,228,93,67,174,63,117,68,16,120,89,67,98,66,160,116,68,8,12,85,67,164,192,
115,68,145,45,81,67,236,161,114,68,106,220,77,67,98,68,131,113,68,133,139,74,67,92,47,112,68,10,119,71,67,80,165,110,68,125,159,68,67,98,90,28,109,68,174,199,65,67,178,109,107,68,223,239,62,67,143,154,105,68,16,24,60,67,108,63,101,94,68,244,157,41,67,
98,43,103,92,68,63,117,38,67,102,110,90,68,143,130,34,67,242,122,88,68,162,197,29,67,98,109,135,86,68,180,8,25,67,199,195,84,68,23,89,19,67,240,47,83,68,10,183,12,67,98,41,156,81,68,254,20,6,67,0,88,80,68,33,176,252,66,150,99,79,68,0,0,235,66,98,43,111,
78,68,223,79,217,66,254,244,77,68,147,24,197,66,254,244,77,68,160,90,174,66,98,254,244,77,68,207,183,149,66,74,164,78,68,209,162,125,66,2,3,80,68,223,79,83,66,98,170,97,81,68,231,251,40,66,63,69,83,68,43,7,4,66,145,173,85,68,84,227,200,65,98,244,21,88,
68,82,184,137,65,131,248,90,68,72,225,48,65,80,85,94,68,137,65,212,64,98,29,178,97,68,6,129,13,64,152,94,101,68,0,0,0,0,209,90,105,68,0,0,0,0,98,135,22,110,68,0,0,0,0,125,167,114,68,188,116,99,64,63,13,119,68,92,143,42,65,98,123,116,123,68,209,34,142,
65,133,59,127,68,117,147,218,65,72,49,129,68,205,76,29,66,108,154,9,123,68,31,197,148,66,98,61,98,120,68,147,88,132,66,106,164,117,68,193,202,110,66,137,209,114,68,10,215,91,66,98,168,254,111,68,84,227,72,66,174,215,108,68,121,105,63,66,209,90,105,68,
121,105,63,66,98,215,115,101,68,121,105,63,66,217,86,98,68,41,92,76,66,182,3,96,68,150,67,102,66,98,147,176,93,68,254,20,128,66,10,135,92,68,145,237,145,66,10,135,92,68,133,171,168,66,98,10,135,92,68,8,172,180,66,104,225,92,68,33,240,190,66,4,150,93,
68,76,119,199,66,98,176,74,94,68,119,254,207,66,27,63,95,68,242,146,215,66,84,115,96,68,63,53,222,66,98,125,167,97,68,10,215,228,66,133,11,99,68,141,215,234,66,76,159,100,68,70,54,240,66,98,35,51,102,68,123,148,245,66,154,209,103,68,193,202,250,66,176,
122,105,68,147,216,255,66,108,174,143,116,68,248,115,17,67,98,66,248,118,68,119,62,21,67,182,43,121,68,127,170,25,67,61,42,123,68,16,184,30,67,98,82,40,125,68,227,197,35,67,164,224,126,68,244,157,41,67,143,42,128,68,0,64,48,67,98,123,228,128,68,12,226,
54,67,102,118,129,68,193,138,62,67,246,224,129,68,94,58,71,67,98,51,75,130,68,252,233,79,67,82,128,130,68,104,241,89,67,82,128,130,68,98,80,101,67,98,82,128,130,68,176,242,113,67,225,42,130,68,2,203,125,67,246,128,129,68,139,108,132,67,98,10,215,128,
68,150,243,137,67,164,192,127,68,217,206,142,67,174,55,125,68,53,254,146,67,98,92,175,122,68,145,45,151,67,47,157,119,68,152,126,154,67,213,0,116,68,72,241,156,67,98,139,100,112,68,248,99,159,67,80,77,108,68,80,157,160,67,90,188,103,68,80,157,160,67,
98,154,65,98,68,80,157,160,67,168,246,92,68,248,163,158,67,133,219,87,68,39,177,154,67,98,98,192,82,68,119,190,150,67,92,63,78,68,51,35,145,67,98,88,74,68,92,223,137,67,108,82,208,82,68,229,80,110,67,99,109,68,107,209,67,162,197,157,67,108,233,134,180,
67,162,197,157,67,108,233,134,180,67,182,243,181,64,108,68,107,209,67,182,243,181,64,108,68,107,209,67,193,74,2,67,108,37,182,9,68,193,74,2,67,108,37,182,9,68,182,243,181,64,108,82,40,24,68,182,243,181,64,108,82,40,24,68,162,197,157,67,108,37,182,9,68,
162,197,157,67,108,37,182,9,68,31,37,50,67,108,68,107,209,67,31,37,50,67,108,68,107,209,67,162,197,157,67,99,109,156,212,44,68,182,243,181,64,108,201,70,59,68,182,243,181,64,108,201,70,59,68,162,197,157,67,108,156,212,44,68,162,197,157,67,108,156,212,
44,68,182,243,181,64,99,109,154,113,162,68,207,119,80,66,108,61,34,145,68,207,119,80,66,108,61,34,145,68,113,61,3,67,108,41,196,159,68,113,61,3,67,108,41,196,159,68,199,171,49,67,108,61,34,145,68,199,171,49,67,108,61,34,145,68,86,142,134,67,108,246,16,
163,68,86,142,134,67,108,246,16,163,68,162,197,157,67,108,246,232,137,68,162,197,157,67,108,246,232,137,68,182,243,181,64,108,154,113,162,68,182,243,181,64,108,154,113,162,68,207,119,80,66,99,108,154,113,180,68,250,142,153,67,101,0,0 };

Path title;
title.loadPathFromData (pathData, sizeof (pathData));
static const unsigned char pathData[] = { 110,109,82,208,82,68,229,80,110,67,98,49,184,85,68,47,189,120,67,94,10,89,68,49,152,128,67,201,198,92,68,254,212,131,67,98,68,131,96,68,203,17,135,67,174,63,100,68,33,176,136,67,25,252,103,68,33,176,136,67,98,143,162,108,68,33,176,136,67,219,41,112,68,
59,223,134,67,111,146,114,68,80,61,131,67,98,236,249,116,68,201,54,127,67,201,46,118,68,188,148,117,67,201,46,118,68,248,147,105,67,98,201,46,118,68,209,66,99,67,27,223,117,68,25,228,93,67,174,63,117,68,16,120,89,67,98,66,160,116,68,8,12,85,67,164,192,
115,68,145,45,81,67,236,161,114,68,106,220,77,67,98,68,131,113,68,133,139,74,67,92,47,112,68,10,119,71,67,80,165,110,68,125,159,68,67,98,90,28,109,68,174,199,65,67,178,109,107,68,223,239,62,67,143,154,105,68,16,24,60,67,108,63,101,94,68,244,157,41,67,
98,43,103,92,68,63,117,38,67,102,110,90,68,143,130,34,67,242,122,88,68,162,197,29,67,98,109,135,86,68,180,8,25,67,199,195,84,68,23,89,19,67,240,47,83,68,10,183,12,67,98,41,156,81,68,254,20,6,67,0,88,80,68,33,176,252,66,150,99,79,68,0,0,235,66,98,43,111,
78,68,223,79,217,66,254,244,77,68,147,24,197,66,254,244,77,68,160,90,174,66,98,254,244,77,68,207,183,149,66,74,164,78,68,209,162,125,66,2,3,80,68,223,79,83,66,98,170,97,81,68,231,251,40,66,63,69,83,68,43,7,4,66,145,173,85,68,84,227,200,65,98,244,21,88,
68,82,184,137,65,131,248,90,68,72,225,48,65,80,85,94,68,137,65,212,64,98,29,178,97,68,6,129,13,64,152,94,101,68,0,0,0,0,209,90,105,68,0,0,0,0,98,135,22,110,68,0,0,0,0,125,167,114,68,188,116,99,64,63,13,119,68,92,143,42,65,98,123,116,123,68,209,34,142,
65,133,59,127,68,117,147,218,65,72,49,129,68,205,76,29,66,108,154,9,123,68,31,197,148,66,98,61,98,120,68,147,88,132,66,106,164,117,68,193,202,110,66,137,209,114,68,10,215,91,66,98,168,254,111,68,84,227,72,66,174,215,108,68,121,105,63,66,209,90,105,68,
121,105,63,66,98,215,115,101,68,121,105,63,66,217,86,98,68,41,92,76,66,182,3,96,68,150,67,102,66,98,147,176,93,68,254,20,128,66,10,135,92,68,145,237,145,66,10,135,92,68,133,171,168,66,98,10,135,92,68,8,172,180,66,104,225,92,68,33,240,190,66,4,150,93,
68,76,119,199,66,98,176,74,94,68,119,254,207,66,27,63,95,68,242,146,215,66,84,115,96,68,63,53,222,66,98,125,167,97,68,10,215,228,66,133,11,99,68,141,215,234,66,76,159,100,68,70,54,240,66,98,35,51,102,68,123,148,245,66,154,209,103,68,193,202,250,66,176,
122,105,68,147,216,255,66,108,174,143,116,68,248,115,17,67,98,66,248,118,68,119,62,21,67,182,43,121,68,127,170,25,67,61,42,123,68,16,184,30,67,98,82,40,125,68,227,197,35,67,164,224,126,68,244,157,41,67,143,42,128,68,0,64,48,67,98,123,228,128,68,12,226,
54,67,102,118,129,68,193,138,62,67,246,224,129,68,94,58,71,67,98,51,75,130,68,252,233,79,67,82,128,130,68,104,241,89,67,82,128,130,68,98,80,101,67,98,82,128,130,68,176,242,113,67,225,42,130,68,2,203,125,67,246,128,129,68,139,108,132,67,98,10,215,128,
68,150,243,137,67,164,192,127,68,217,206,142,67,174,55,125,68,53,254,146,67,98,92,175,122,68,145,45,151,67,47,157,119,68,152,126,154,67,213,0,116,68,72,241,156,67,98,139,100,112,68,248,99,159,67,80,77,108,68,80,157,160,67,90,188,103,68,80,157,160,67,
98,154,65,98,68,80,157,160,67,168,246,92,68,248,163,158,67,133,219,87,68,39,177,154,67,98,98,192,82,68,119,190,150,67,92,63,78,68,51,35,145,67,98,88,74,68,92,223,137,67,108,82,208,82,68,229,80,110,67,99,109,68,107,209,67,162,197,157,67,108,233,134,180,
67,162,197,157,67,108,233,134,180,67,182,243,181,64,108,68,107,209,67,182,243,181,64,108,68,107,209,67,193,74,2,67,108,37,182,9,68,193,74,2,67,108,37,182,9,68,182,243,181,64,108,82,40,24,68,182,243,181,64,108,82,40,24,68,162,197,157,67,108,37,182,9,68,
162,197,157,67,108,37,182,9,68,31,37,50,67,108,68,107,209,67,31,37,50,67,108,68,107,209,67,162,197,157,67,99,109,156,212,44,68,182,243,181,64,108,201,70,59,68,182,243,181,64,108,201,70,59,68,162,197,157,67,108,156,212,44,68,162,197,157,67,108,156,212,
44,68,182,243,181,64,99,109,154,113,162,68,207,119,80,66,108,61,34,145,68,207,119,80,66,108,61,34,145,68,113,61,3,67,108,41,196,159,68,113,61,3,67,108,41,196,159,68,199,171,49,67,108,61,34,145,68,199,171,49,67,108,61,34,145,68,86,142,134,67,108,246,16,
163,68,86,142,134,67,108,246,16,163,68,162,197,157,67,108,246,232,137,68,162,197,157,67,108,246,232,137,68,182,243,181,64,108,154,113,162,68,182,243,181,64,108,154,113,162,68,207,119,80,66,99,108,154,113,180,68,250,142,153,67,101,0,0 };

Path title;
title.loadPathFromData(pathData, sizeof(pathData));

const float logoWidth = 200.0f;
const float logoOffset = ((float)getWidth() - logoWidth) / 2.0f;

g.setColour(Colour(SIGNAL_COLOUR));
title.scaleToFit(logoOffset, -10.0f, logoWidth, 100.0f, true);
g.fillPath(title);

g.setColour(Colours::white);
g.setFont(GLOBAL_FONT().withHeight(20.0f));
g.drawText("The open source framework for sample based instruments", 0, 80, getWidth(), 30, Justification::centred);


g.setColour(Colour(SIGNAL_COLOUR));
title.scaleToFit(0.236f*(float)getWidth(), 130.0f, 0.6f*(float)getWidth(), 100.0f, true);
g.fillPath(title);

g.setColour(Colours::white);
g.setFont(GLOBAL_FONT().withHeight(26.0f));
g.drawText("The open source framework for sample based instruments", 0, 240, getWidth(), 30, Justification::centred);

#else

g.fillAll(Colour(0xFF252525));
g.setColour(Colours::white.withAlpha(0.4f));

#endif

g.setColour(Colour(0xFFaaaaaa));
g.drawRect(getLocalBounds(), 1);
const float textOffset = 150.f;

infoData.draw(g, Rectangle<float>(40.0f, (float)aboutHeader.getHeight() + 20.f, (float)getWidth() - 80.0f, (float)getHeight() - (float)aboutHeader.getHeight() - 20.f));
infoData.draw(g, Rectangle<float>(40.0f, textOffset, (float)getWidth() - 80.0f, (float)getHeight() - textOffset));
}


void AboutPage::refreshText()
{
infoData.clear();

Font normal = GLOBAL_FONT();
Font bold = GLOBAL_BOLD_FONT();
Font normal = GLOBAL_FONT().withHeight(15.0f);
Font bold = GLOBAL_BOLD_FONT().withHeight(15.0f);


#if USE_BACKEND

Colour bright(0xFFbbbbbb);
Colour bright = Colours::white;

infoData.append("HISE beta\n", bold, bright);
infoData.append("HISE\n", bold, bright);
infoData.append("Hart Instruments Sampler Engine\n", normal, bright);

infoData.append("\nVersion: ", bold, bright);
Expand Down Expand Up @@ -2249,6 +2248,11 @@ void AboutPage::buttonClicked(Button *)

}

void AboutPage::mouseDown(const MouseEvent &)
{
findParentComponentOfClass<FloatingTilePopup>()->deleteAndClose();
}

String PresetPlayerHandler::getSpecialFolder(FolderType type, const String &packageName /*= String()*/, bool ignoreMissingDirectory)
{
IGNORE_UNUSED_IN_RELEASE(ignoreMissingDirectory);
Expand Down
13 changes: 1 addition & 12 deletions hi_core/hi_core/PresetHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,7 @@ class AboutPage : public Component,

void buttonClicked(Button *b) override;

void mouseDown(const MouseEvent &) override
{

Desktop::getInstance().getAnimator().fadeOut(this, 400);

setVisible(false);
}
void mouseDown(const MouseEvent &) override;


void resized() override
Expand All @@ -115,11 +109,6 @@ class AboutPage : public Component,
#endif
}

void showAboutPage()
{
Desktop::getInstance().getAnimator().fadeIn(this, 400);
}

void paint(Graphics &g) override;

void setUserEmail(const String &userEmail_)
Expand Down
3 changes: 1 addition & 2 deletions projects/standalone/HISE Standalone.jucer
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
jucerVersion="4.3.0" companyName="Hart Instruments" companyWebsite="http://hartinstruments.net/hise">
<MAINGROUP id="yomWt4" name="HISE Standalone">
<GROUP id="{577963C7-1A49-BB2A-D701-52DC7A5895F7}" name="Source">
<FILE id="YnIt9L" name="logo_mini.png" compile="0" resource="1" file="../../hi_core/hi_images/logo_mini.png"/>
<FILE id="S7ANvW" name="logo_new.png" compile="0" resource="1" file="../../hi_core/hi_images/logo_new.png"/>
<FILE id="yjZXfQ" name="DspUnitTests.cpp" compile="1" resource="0"
file="../../hi_scripting/scripting/api/DspUnitTests.cpp"/>
<FILE id="bfBEgJ" name="HISE_Icon.png" compile="0" resource="1" file="../../hi_core/hi_images/HISE_Icon.png"/>
<FILE id="EQP6SW" name="HiseEventBufferUnitTests.cpp" compile="1" resource="0"
file="../../hi_core/hi_core/HiseEventBufferUnitTests.cpp"/>
<FILE id="tTUrnI" name="infoError.png" compile="0" resource="1" file="../../hi_core/hi_images/infoError.png"/>
Expand All @@ -23,7 +23,6 @@
file="../../hi_core/hi_images/FrontendKnob_Unipolar.png"/>
<FILE id="BPrHyu" name="balanceKnob_200.png" compile="0" resource="1"
file="../../hi_core/hi_images/balanceKnob_200.png"/>
<FILE id="DEkG64" name="HISE_Logo.png" compile="0" resource="1" file="../../hi_core/hi_images/HISE_Logo.png"/>
<FILE id="OSpRCj" name="knobEmpty_200.png" compile="0" resource="1"
file="../../hi_core/hi_images/knobEmpty_200.png"/>
<FILE id="u4ioUB" name="knobModulated_200.png" compile="0" resource="1"
Expand Down
Loading

0 comments on commit 6a195a2

Please sign in to comment.