diff --git a/Source/OplGui.cpp b/Source/OplGui.cpp deleted file mode 100644 index f457a5d..0000000 --- a/Source/OplGui.cpp +++ /dev/null @@ -1,181 +0,0 @@ -/* - ============================================================================== - - This is an automatically generated GUI class created by the Introjucer! - - Be careful when adding custom code to these files, as only the code within - the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded - and re-saved. - - Created with Introjucer version: 3.1.0 - - ------------------------------------------------------------------------------ - - The Introjucer is part of the JUCE library - "Jules' Utility Class Extensions" - Copyright 2004-13 by Raw Material Software Ltd. - - ============================================================================== -*/ - -//[Headers] You can add your own extra header files here... -//[/Headers] - -#include "OplGui.h" - - -//[MiscUserDefs] You can add your own user definitions and misc code here... -//[/MiscUserDefs] - -//============================================================================== -NewComponent::NewComponent () -{ - addAndMakeVisible (label = new Label ("new label", - "Carrier waveform")); - label->setFont (Font (15.00f, Font::plain)); - label->setJustificationType (Justification::centredLeft); - label->setEditable (false, false, false); - label->setColour (TextEditor::textColourId, Colours::black); - label->setColour (TextEditor::backgroundColourId, Colour (0x00000000)); - - addAndMakeVisible (wav_car_sin = new ToggleButton ("new toggle button")); - wav_car_sin->setButtonText ("Sine"); - wav_car_sin->addListener (this); - - addAndMakeVisible (toggleButton2 = new ToggleButton ("new toggle button")); - toggleButton2->setButtonText ("Half Sine"); - toggleButton2->addListener (this); - - addAndMakeVisible (toggleButton3 = new ToggleButton ("new toggle button")); - toggleButton3->setButtonText ("Abs Sine"); - toggleButton3->addListener (this); - - addAndMakeVisible (toggleButton4 = new ToggleButton ("new toggle button")); - toggleButton4->setButtonText ("Quarter Sine"); - toggleButton4->addListener (this); - - - //[UserPreSize] - //[/UserPreSize] - - setSize (600, 400); - - - //[Constructor] You can add your own custom stuff here.. - //[/Constructor] -} - -NewComponent::~NewComponent() -{ - //[Destructor_pre]. You can add your own custom destruction code here.. - //[/Destructor_pre] - - label = nullptr; - wav_car_sin = nullptr; - toggleButton2 = nullptr; - toggleButton3 = nullptr; - toggleButton4 = nullptr; - - - //[Destructor]. You can add your own custom destruction code here.. - //[/Destructor] -} - -//============================================================================== -void NewComponent::paint (Graphics& g) -{ - //[UserPrePaint] Add your own custom painting code here.. - //[/UserPrePaint] - - g.fillAll (Colours::white); - - //[UserPaint] Add your own custom painting code here.. - //[/UserPaint] -} - -void NewComponent::resized() -{ - label->setBounds (8, 8, 150, 24); - wav_car_sin->setBounds (152, 8, 150, 24); - toggleButton2->setBounds (152, 32, 150, 24); - toggleButton3->setBounds (152, 56, 150, 24); - toggleButton4->setBounds (152, 80, 150, 24); - //[UserResized] Add your own custom resize handling here.. - //[/UserResized] -} - -void NewComponent::buttonClicked (Button* buttonThatWasClicked) -{ - //[UserbuttonClicked_Pre] - //[/UserbuttonClicked_Pre] - - if (buttonThatWasClicked == wav_car_sin) - { - //[UserButtonCode_wav_car_sin] -- add your button handler code here.. - //[/UserButtonCode_wav_car_sin] - } - else if (buttonThatWasClicked == toggleButton2) - { - //[UserButtonCode_toggleButton2] -- add your button handler code here.. - //[/UserButtonCode_toggleButton2] - } - else if (buttonThatWasClicked == toggleButton3) - { - //[UserButtonCode_toggleButton3] -- add your button handler code here.. - //[/UserButtonCode_toggleButton3] - } - else if (buttonThatWasClicked == toggleButton4) - { - //[UserButtonCode_toggleButton4] -- add your button handler code here.. - //[/UserButtonCode_toggleButton4] - } - - //[UserbuttonClicked_Post] - //[/UserbuttonClicked_Post] -} - - - -//[MiscUserCode] You can add your own definitions of your custom methods or any other code here... -//[/MiscUserCode] - - -//============================================================================== -#if 0 -/* -- Introjucer information section -- - - This is where the Introjucer stores the metadata that describe this GUI layout, so - make changes in here at your peril! - -BEGIN_JUCER_METADATA - - - - - -END_JUCER_METADATA -*/ -#endif - - -//[EndFile] You can add extra defines here... -//[/EndFile] diff --git a/Source/OplGui.h b/Source/OplGui.h deleted file mode 100644 index 69aeeba..0000000 --- a/Source/OplGui.h +++ /dev/null @@ -1,74 +0,0 @@ -/* - ============================================================================== - - This is an automatically generated GUI class created by the Introjucer! - - Be careful when adding custom code to these files, as only the code within - the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded - and re-saved. - - Created with Introjucer version: 3.1.0 - - ------------------------------------------------------------------------------ - - The Introjucer is part of the JUCE library - "Jules' Utility Class Extensions" - Copyright 2004-13 by Raw Material Software Ltd. - - ============================================================================== -*/ - -#ifndef __JUCE_HEADER_A8B78202A92195B5__ -#define __JUCE_HEADER_A8B78202A92195B5__ - -//[Headers] -- You can add your own extra header files here -- -#include "JuceHeader.h" -//[/Headers] - - - -//============================================================================== -/** - //[Comments] - An auto-generated component, created by the Introjucer. - - Describe your class and how it works here! - //[/Comments] -*/ -class NewComponent : public Component, - public ButtonListener -{ -public: - //============================================================================== - NewComponent (); - ~NewComponent(); - - //============================================================================== - //[UserMethods] -- You can add your own custom methods in this section. - //[/UserMethods] - - void paint (Graphics& g); - void resized(); - void buttonClicked (Button* buttonThatWasClicked); - - - -private: - //[UserVariables] -- You can add your own custom variables in this section. - //[/UserVariables] - - //============================================================================== - ScopedPointer