Replace dropdowns with buttons (algorithm, percussion).
This commit is contained in:
parent
a86cd14e5f
commit
69987aada0
11 changed files with 524 additions and 337 deletions
BIN
Instruments/original/apoc_lead.sbi
Normal file
BIN
Instruments/original/apoc_lead.sbi
Normal file
Binary file not shown.
BIN
Instruments/original/chimes.sbi
Normal file
BIN
Instruments/original/chimes.sbi
Normal file
Binary file not shown.
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<JUCERPROJECT id="wUKQiT" name="JuceOPLVSTi" projectType="audioplug" version="0.14.2"
|
||||
<JUCERPROJECT id="wUKQiT" name="JuceOPLVSTi" projectType="audioplug" version="0.14.3"
|
||||
bundleIdentifier="com.plainweave.JuceOPLVSTi" buildVST="1" buildAU="1"
|
||||
pluginName="JuceOPLVSTi" pluginDesc="JuceOPLVSTi" pluginManufacturer="Plainweave Software"
|
||||
pluginManufacturerCode="Pwve" pluginCode="JOPL" pluginChannelConfigs="{0, 1}"
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -106,6 +106,18 @@ public:
|
|||
static const int twoopAm_pngSize;
|
||||
static const char* twoopFm_png;
|
||||
static const int twoopFm_pngSize;
|
||||
static const char* bassdrum_png;
|
||||
static const int bassdrum_pngSize;
|
||||
static const char* snare_png;
|
||||
static const int snare_pngSize;
|
||||
static const char* disabled_png;
|
||||
static const int disabled_pngSize;
|
||||
static const char* tom_png;
|
||||
static const int tom_pngSize;
|
||||
static const char* hihat_png;
|
||||
static const int hihat_pngSize;
|
||||
static const char* cymbal_png;
|
||||
static const int cymbal_pngSize;
|
||||
|
||||
|
||||
private:
|
||||
|
@ -120,6 +132,9 @@ private:
|
|||
//[/UserVariables]
|
||||
|
||||
//==============================================================================
|
||||
ScopedPointer<GroupComponent> groupComponent11;
|
||||
ScopedPointer<GroupComponent> groupComponent10;
|
||||
ScopedPointer<GroupComponent> groupComponent9;
|
||||
ScopedPointer<GroupComponent> groupComponent;
|
||||
ScopedPointer<ComboBox> frequencyComboBox;
|
||||
ScopedPointer<Label> frequencyLabel;
|
||||
|
@ -188,8 +203,6 @@ private:
|
|||
ScopedPointer<ImageButton> camelsineImageButton2;
|
||||
ScopedPointer<ImageButton> squareImageButton2;
|
||||
ScopedPointer<ImageButton> logsawImageButton2;
|
||||
ScopedPointer<ComboBox> algorithmComboBox;
|
||||
ScopedPointer<Label> frequencyLabel8;
|
||||
ScopedPointer<Label> dbLabel4;
|
||||
ScopedPointer<ComboBox> keyscaleAttenuationComboBox2;
|
||||
ScopedPointer<ComboBox> keyscaleAttenuationComboBox;
|
||||
|
@ -199,8 +212,6 @@ private:
|
|||
ScopedPointer<Label> emulatorLabel;
|
||||
ScopedPointer<Label> emulatorLabel2;
|
||||
ScopedPointer<ToggleButton> recordButton;
|
||||
ScopedPointer<ComboBox> percussionComboBox;
|
||||
ScopedPointer<Label> percussionLabel;
|
||||
ScopedPointer<TextButton> exportButton;
|
||||
ScopedPointer<TextButton> loadButton;
|
||||
ScopedPointer<Label> versionLabel;
|
||||
|
@ -212,9 +223,6 @@ private:
|
|||
ScopedPointer<ImageButton> LineBorderButton1A;
|
||||
ScopedPointer<ImageButton> LineBorderButton1B;
|
||||
ScopedPointer<Label> label3;
|
||||
ScopedPointer<ImageButton> LineBorderButton3A;
|
||||
ScopedPointer<ImageButton> LineBorderButton3B;
|
||||
ScopedPointer<ImageButton> LineBorderButton3B2;
|
||||
ScopedPointer<ImageButton> LineBorderButton1C2;
|
||||
ScopedPointer<ImageButton> LineBorderButton1A2;
|
||||
ScopedPointer<ImageButton> LineBorderButton1B2;
|
||||
|
@ -271,6 +279,14 @@ private:
|
|||
ScopedPointer<Label> label30;
|
||||
ScopedPointer<Label> frequencyLabel10;
|
||||
ScopedPointer<Label> attenuationLabel5;
|
||||
ScopedPointer<ImageButton> fmButton;
|
||||
ScopedPointer<ImageButton> additiveButton;
|
||||
ScopedPointer<ImageButton> bassDrumButton;
|
||||
ScopedPointer<ImageButton> snareDrumButton;
|
||||
ScopedPointer<ImageButton> disablePercussionButton;
|
||||
ScopedPointer<ImageButton> tomTomButton;
|
||||
ScopedPointer<ImageButton> cymbalButton;
|
||||
ScopedPointer<ImageButton> hiHatButton;
|
||||
|
||||
|
||||
//==============================================================================
|
||||
|
|
BIN
img/bassdrum.png
Normal file
BIN
img/bassdrum.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 234 B |
BIN
img/cymbal.png
Normal file
BIN
img/cymbal.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 237 B |
BIN
img/disabled.png
Normal file
BIN
img/disabled.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 210 B |
BIN
img/hihat.png
Normal file
BIN
img/hihat.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 189 B |
BIN
img/snare.png
Normal file
BIN
img/snare.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 261 B |
BIN
img/tom.png
Normal file
BIN
img/tom.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 231 B |
Loading…
Reference in a new issue