ReaWwise

REAPER extension
Log | Files | Refs | Submodules

ImportComponent.h (1674B)


      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 "Core/WaapiClient.h"
     19 #include "HierarchyMappingControls.h"
     20 #include "HierarchyMappingTable.h"
     21 #include "Model/Import.h"
     22 #include "Persistance/ApplicationProperties.h"
     23 #include "PresetMenuComponent.h"
     24 #include "SelectedRowPropertiesComponent.h"
     25 #include "SimpleListBox.h"
     26 
     27 #include <juce_gui_basics/juce_gui_basics.h>
     28 
     29 namespace AK::WwiseTransfer
     30 {
     31 	class ImportComponent
     32 		: public juce::GroupComponent
     33 	{
     34 	public:
     35 		ImportComponent(juce::ValueTree appState, WaapiClient& waapiClient, ApplicationProperties& applicationProperties, const juce::String& applicationName);
     36 
     37 		void resized() override;
     38 
     39 	private:
     40 		juce::Label hierarchyMappingLabel;
     41 		HierarchyMappingTable hierarchyMappingTable;
     42 		HierarchyMappingControls hierarchyMappingControls;
     43 
     44 		SelectedRowPropertiesComponent selectedRowPropertiesComponent;
     45 
     46 		JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(ImportComponent);
     47 	};
     48 } // namespace AK::WwiseTransfer