ReaWwise

REAPER extension
Log | Files | Refs | Submodules

ImportConflictsComponent.h (1960B)


      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 "Model/Import.h"
     19 
     20 #include <juce_gui_basics/juce_gui_basics.h>
     21 
     22 namespace AK::WwiseTransfer
     23 {
     24 	class ImportConflictsComponent
     25 		: public juce::Component
     26 		, private juce::ValueTree::Listener
     27 		, private juce::AsyncUpdater
     28 	{
     29 	public:
     30 		ImportConflictsComponent(juce::ValueTree applicationState);
     31 		~ImportConflictsComponent();
     32 
     33 		void resized() override;
     34 
     35 	private:
     36 		juce::Label containerNameExistsLabel;
     37 		juce::Label applyTemplateLabel;
     38 
     39 		juce::ComboBox containerNameExistsComboBox;
     40 		juce::ComboBox applyTemplateComboBox;
     41 
     42 		juce::ValueTree applicationState;
     43 		juce::CachedValue<Import::ContainerNameExistsOption> containerNameExists;
     44 		juce::CachedValue<Import::AudioFilenameExistsOption> audioFilenameExists;
     45 		juce::CachedValue<Import::ApplyTemplateOption> applyTemplate;
     46 
     47 		juce::CachedValue<bool> applyTemplateFeatureEnabled;
     48 
     49 		juce::CachedValue<juce::String> selectObjectsOnImportCommand;
     50 
     51 		void valueTreePropertyChanged(juce::ValueTree& treeWhosePropertyHasChanged, const juce::Identifier& property) override;
     52 		void handleAsyncUpdate() override;
     53 		void refreshComponent();
     54 
     55 		JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(ImportConflictsComponent);
     56 	};
     57 } // namespace AK::WwiseTransfer