-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dcbe715
commit 08bc778
Showing
13 changed files
with
186 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#include "ControllerLookAndFeel.h" | ||
#include "../misc/ColorMap.h" | ||
|
||
ControllerLookAndFeel::ControllerLookAndFeel() | ||
: LookAndFeel_V4() { | ||
/** Buttons */ | ||
this->setColour(juce::TextButton::ColourIds::buttonColourId, | ||
ColorMap::getInstance()->get("ThemeColorB2")); | ||
this->setColour(juce::TextButton::ColourIds::buttonOnColourId, | ||
ColorMap::getInstance()->get("ThemeColorB1")); | ||
this->setColour(juce::TextButton::ColourIds::textColourOffId, | ||
ColorMap::getInstance()->get("ThemeColorB8")); | ||
this->setColour(juce::TextButton::ColourIds::textColourOnId, | ||
ColorMap::getInstance()->get("ThemeColorB10")); | ||
this->setColour(juce::ComboBox::ColourIds::outlineColourId, | ||
ColorMap::getInstance()->get("ThemeColorB2")); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#pragma once | ||
|
||
#include <JuceHeader.h> | ||
|
||
class ControllerLookAndFeel : public juce::LookAndFeel_V4 { | ||
public: | ||
ControllerLookAndFeel(); | ||
|
||
private: | ||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(ControllerLookAndFeel) | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#include "MainMenuLookAndFeel.h" | ||
#include "../misc/ColorMap.h" | ||
|
||
MainMenuLookAndFeel::MainMenuLookAndFeel() | ||
: LookAndFeel_V4() { | ||
/** Buttons */ | ||
this->setColour(juce::TextButton::ColourIds::buttonColourId, | ||
ColorMap::getInstance()->get("ThemeColorB2")); | ||
this->setColour(juce::TextButton::ColourIds::buttonOnColourId, | ||
ColorMap::getInstance()->get("ThemeColorB2")); | ||
this->setColour(juce::TextButton::ColourIds::textColourOffId, | ||
ColorMap::getInstance()->get("ThemeColorB10")); | ||
this->setColour(juce::TextButton::ColourIds::textColourOnId, | ||
ColorMap::getInstance()->get("ThemeColorB10")); | ||
this->setColour(juce::ComboBox::ColourIds::outlineColourId, | ||
ColorMap::getInstance()->get("ThemeColorB2")); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#pragma once | ||
|
||
#include <JuceHeader.h> | ||
|
||
class MainMenuLookAndFeel : public juce::LookAndFeel_V4 { | ||
public: | ||
MainMenuLookAndFeel(); | ||
|
||
private: | ||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(MainMenuLookAndFeel) | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#include "SystemStatusLookAndFeel.h" | ||
#include "../misc/ColorMap.h" | ||
|
||
SystemStatusLookAndFeel::SystemStatusLookAndFeel() | ||
: LookAndFeel_V4() { | ||
/** Background */ | ||
this->setColour(juce::ResizableWindow::ColourIds::backgroundColourId, | ||
ColorMap::getInstance()->get("ThemeColorB1")); | ||
|
||
/** Graph */ | ||
this->setColour(juce::Label::ColourIds::backgroundColourId, | ||
ColorMap::getInstance()->get("ThemeColorB1")); | ||
this->setColour(juce::Label::ColourIds::textColourId, | ||
ColorMap::getInstance()->get("ThemeColorB9"));/**< Label Color */ | ||
this->setColour(juce::Label::ColourIds::outlineColourId, | ||
ColorMap::getInstance()->get("ThemeColorB9")); | ||
this->setColour(juce::Label::ColourIds::backgroundWhenEditingColourId, | ||
ColorMap::getInstance()->get("ThemeColorB1")); | ||
this->setColour(juce::Label::ColourIds::textWhenEditingColourId, | ||
ColorMap::getInstance()->get("ThemeColorB10"));/**< Value Color */ | ||
this->setColour(juce::Label::ColourIds::outlineWhenEditingColourId, | ||
ColorMap::getInstance()->get("ThemeColorA2"));/**< Curve Color */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#pragma once | ||
|
||
#include <JuceHeader.h> | ||
|
||
class SystemStatusLookAndFeel : public juce::LookAndFeel_V4 { | ||
public: | ||
SystemStatusLookAndFeel(); | ||
|
||
private: | ||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(SystemStatusLookAndFeel) | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#include "TimeLookAndFeel.h" | ||
#include "../misc/ColorMap.h" | ||
|
||
TimeLookAndFeel::TimeLookAndFeel() | ||
: LookAndFeel_V4() { | ||
/** Background */ | ||
this->setColour(juce::ResizableWindow::ColourIds::backgroundColourId, | ||
ColorMap::getInstance()->get("ThemeColorB1")); | ||
|
||
/** Graph */ | ||
this->setColour(juce::Label::ColourIds::backgroundColourId, | ||
ColorMap::getInstance()->get("ThemeColorB1")); | ||
this->setColour(juce::Label::ColourIds::textColourId, | ||
ColorMap::getInstance()->get("ThemeColorB9")); | ||
this->setColour(juce::Label::ColourIds::outlineColourId, | ||
ColorMap::getInstance()->get("ThemeColorB9")); | ||
this->setColour(juce::Label::ColourIds::backgroundWhenEditingColourId, | ||
ColorMap::getInstance()->get("ThemeColorB1")); | ||
this->setColour(juce::Label::ColourIds::textWhenEditingColourId, | ||
ColorMap::getInstance()->get("ThemeColorB10"));/**< Value Color */ | ||
this->setColour(juce::Label::ColourIds::outlineWhenEditingColourId, | ||
ColorMap::getInstance()->get("ThemeColorA2")); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#pragma once | ||
|
||
#include <JuceHeader.h> | ||
|
||
class TimeLookAndFeel : public juce::LookAndFeel_V4 { | ||
public: | ||
TimeLookAndFeel(); | ||
|
||
private: | ||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(TimeLookAndFeel) | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#include "ToolBarLookAndFeel.h" | ||
#include "../misc/ColorMap.h" | ||
|
||
ToolBarLookAndFeel::ToolBarLookAndFeel() | ||
: LookAndFeel_V4() { | ||
/** Background */ | ||
this->setColour(juce::ResizableWindow::ColourIds::backgroundColourId, | ||
ColorMap::getInstance()->get("ThemeColorB2")); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#pragma once | ||
|
||
#include <JuceHeader.h> | ||
|
||
class ToolBarLookAndFeel : public juce::LookAndFeel_V4 { | ||
public: | ||
ToolBarLookAndFeel(); | ||
|
||
private: | ||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(ToolBarLookAndFeel) | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#include "ToolsLookAndFeel.h" | ||
#include "../misc/ColorMap.h" | ||
|
||
ToolsLookAndFeel::ToolsLookAndFeel() | ||
: LookAndFeel_V4() { | ||
/** Buttons */ | ||
this->setColour(juce::TextButton::ColourIds::buttonColourId, | ||
ColorMap::getInstance()->get("ThemeColorB2")); | ||
this->setColour(juce::TextButton::ColourIds::buttonOnColourId, | ||
ColorMap::getInstance()->get("ThemeColorB1")); | ||
this->setColour(juce::TextButton::ColourIds::textColourOffId, | ||
ColorMap::getInstance()->get("ThemeColorB8")); | ||
this->setColour(juce::TextButton::ColourIds::textColourOnId, | ||
ColorMap::getInstance()->get("ThemeColorB10")); | ||
this->setColour(juce::ComboBox::ColourIds::outlineColourId, | ||
ColorMap::getInstance()->get("ThemeColorB2")); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#pragma once | ||
|
||
#include <JuceHeader.h> | ||
|
||
class ToolsLookAndFeel : public juce::LookAndFeel_V4 { | ||
public: | ||
ToolsLookAndFeel(); | ||
|
||
private: | ||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(ToolsLookAndFeel) | ||
}; | ||
|