2
0
Fork 0

Replace dropdowns with buttons (algorithm, percussion).

This commit is contained in:
bsutherland 2017-04-29 21:01:51 +09:00
parent a86cd14e5f
commit 69987aada0
11 changed files with 524 additions and 337 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?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" bundleIdentifier="com.plainweave.JuceOPLVSTi" buildVST="1" buildAU="1"
pluginName="JuceOPLVSTi" pluginDesc="JuceOPLVSTi" pluginManufacturer="Plainweave Software" pluginName="JuceOPLVSTi" pluginDesc="JuceOPLVSTi" pluginManufacturer="Plainweave Software"
pluginManufacturerCode="Pwve" pluginCode="JOPL" pluginChannelConfigs="{0, 1}" pluginManufacturerCode="Pwve" pluginCode="JOPL" pluginChannelConfigs="{0, 1}"

File diff suppressed because it is too large Load Diff

View File

@ -106,6 +106,18 @@ public:
static const int twoopAm_pngSize; static const int twoopAm_pngSize;
static const char* twoopFm_png; static const char* twoopFm_png;
static const int twoopFm_pngSize; 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: private:
@ -120,6 +132,9 @@ private:
//[/UserVariables] //[/UserVariables]
//============================================================================== //==============================================================================
ScopedPointer<GroupComponent> groupComponent11;
ScopedPointer<GroupComponent> groupComponent10;
ScopedPointer<GroupComponent> groupComponent9;
ScopedPointer<GroupComponent> groupComponent; ScopedPointer<GroupComponent> groupComponent;
ScopedPointer<ComboBox> frequencyComboBox; ScopedPointer<ComboBox> frequencyComboBox;
ScopedPointer<Label> frequencyLabel; ScopedPointer<Label> frequencyLabel;
@ -188,8 +203,6 @@ private:
ScopedPointer<ImageButton> camelsineImageButton2; ScopedPointer<ImageButton> camelsineImageButton2;
ScopedPointer<ImageButton> squareImageButton2; ScopedPointer<ImageButton> squareImageButton2;
ScopedPointer<ImageButton> logsawImageButton2; ScopedPointer<ImageButton> logsawImageButton2;
ScopedPointer<ComboBox> algorithmComboBox;
ScopedPointer<Label> frequencyLabel8;
ScopedPointer<Label> dbLabel4; ScopedPointer<Label> dbLabel4;
ScopedPointer<ComboBox> keyscaleAttenuationComboBox2; ScopedPointer<ComboBox> keyscaleAttenuationComboBox2;
ScopedPointer<ComboBox> keyscaleAttenuationComboBox; ScopedPointer<ComboBox> keyscaleAttenuationComboBox;
@ -199,8 +212,6 @@ private:
ScopedPointer<Label> emulatorLabel; ScopedPointer<Label> emulatorLabel;
ScopedPointer<Label> emulatorLabel2; ScopedPointer<Label> emulatorLabel2;
ScopedPointer<ToggleButton> recordButton; ScopedPointer<ToggleButton> recordButton;
ScopedPointer<ComboBox> percussionComboBox;
ScopedPointer<Label> percussionLabel;
ScopedPointer<TextButton> exportButton; ScopedPointer<TextButton> exportButton;
ScopedPointer<TextButton> loadButton; ScopedPointer<TextButton> loadButton;
ScopedPointer<Label> versionLabel; ScopedPointer<Label> versionLabel;
@ -212,9 +223,6 @@ private:
ScopedPointer<ImageButton> LineBorderButton1A; ScopedPointer<ImageButton> LineBorderButton1A;
ScopedPointer<ImageButton> LineBorderButton1B; ScopedPointer<ImageButton> LineBorderButton1B;
ScopedPointer<Label> label3; ScopedPointer<Label> label3;
ScopedPointer<ImageButton> LineBorderButton3A;
ScopedPointer<ImageButton> LineBorderButton3B;
ScopedPointer<ImageButton> LineBorderButton3B2;
ScopedPointer<ImageButton> LineBorderButton1C2; ScopedPointer<ImageButton> LineBorderButton1C2;
ScopedPointer<ImageButton> LineBorderButton1A2; ScopedPointer<ImageButton> LineBorderButton1A2;
ScopedPointer<ImageButton> LineBorderButton1B2; ScopedPointer<ImageButton> LineBorderButton1B2;
@ -271,6 +279,14 @@ private:
ScopedPointer<Label> label30; ScopedPointer<Label> label30;
ScopedPointer<Label> frequencyLabel10; ScopedPointer<Label> frequencyLabel10;
ScopedPointer<Label> attenuationLabel5; 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 B

BIN
img/cymbal.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 B

BIN
img/disabled.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 B

BIN
img/hihat.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

BIN
img/snare.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 B

BIN
img/tom.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B