ReaWwise

REAPER extension
Log | Files | Refs | Submodules

HierarchyMappingControls.h (2126B)


      1 /*----------------------------------------------------------------------------------------
      2 
      3 Copyright (c) 2023 AUDIOKINETIC Inc.
      4 
      5 This file is licensed to use under the license available at:
      6 https://github.com/audiokinetic/ReaWwise/blob/main/License.txt (the "License").
      7 You may not use this file except in compliance with the License.
      8 
      9 Unless required by applicable law or agreed to in writing, software distributed
     10 under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
     11 CONDITIONS OF ANY KIND, either express or implied.  See the License for the
     12 specific language governing permissions and limitations under the License.
     13 
     14 ----------------------------------------------------------------------------------------*/
     15 
     16 #pragma once
     17 
     18 #include "CustomDrawableButton.h"
     19 #include "Model/Import.h"
     20 #include "PresetMenuComponent.h"
     21 
     22 #include <juce_gui_basics/juce_gui_basics.h>
     23 
     24 namespace AK::WwiseTransfer
     25 {
     26 	class HierarchyMappingControls
     27 		: public juce::Component
     28 		, private juce::ValueTree::Listener
     29 		, private juce::AsyncUpdater
     30 	{
     31 	public:
     32 		HierarchyMappingControls(juce::ValueTree appState, ApplicationProperties& applicationProperties, const juce::String& applicationName);
     33 		~HierarchyMappingControls();
     34 
     35 		void resized() override;
     36 
     37 	private:
     38 		juce::ValueTree applicationState;
     39 		juce::ValueTree hierarchyMapping;
     40 		juce::CachedValue<int> selectedRow;
     41 
     42 		CustomDrawableButton insertButton;
     43 		CustomDrawableButton removeButton;
     44 		CustomDrawableButton moveUpButton;
     45 		CustomDrawableButton moveDownButton;
     46 
     47 		PresetMenuComponent presetMenuComponent;
     48 
     49 		void valueTreePropertyChanged(juce::ValueTree& treeWhosePropertyHasChanged, const juce::Identifier& property) override;
     50 		void valueTreeChildAdded(juce::ValueTree& parentTree, juce::ValueTree& childWhichHasBeenAdded) override;
     51 		void valueTreeChildRemoved(juce::ValueTree& parentTree, juce::ValueTree& childWhichHasBeenRemoved, int indexFromWhichChildWasRemoved) override;
     52 
     53 		void handleAsyncUpdate() override;
     54 		void refreshComponent();
     55 
     56 		JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(HierarchyMappingControls);
     57 	};
     58 } // namespace AK::WwiseTransfer