SelectedRowPropertiesComponent.h (3314B)
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 "CustomDrawableButton.h" 20 #include "Model/Import.h" 21 #include "ValidatableTextEditor.h" 22 #include "WildcardSelector.h" 23 24 #include <juce_gui_basics/juce_gui_basics.h> 25 26 namespace AK::WwiseTransfer 27 { 28 class SelectedRowPropertiesComponent 29 : public juce::GroupComponent 30 , public juce::ValueTree::Listener 31 , public juce::AsyncUpdater 32 { 33 public: 34 SelectedRowPropertiesComponent(juce::ValueTree appState, WaapiClient& waapiClient); 35 ~SelectedRowPropertiesComponent() override; 36 37 void resized() override; 38 39 private: 40 juce::Label objectTypeLabel; 41 juce::Label objectNameLabel; 42 juce::Label propertyTemplatePathLabel; 43 juce::ComboBox objectTypeComboBox; 44 ValidatableTextEditor objectNameEditor; 45 ValidatableTextEditor propertyTemplatePathEditor; 46 juce::ToggleButton propertyTemplateToggleButton; 47 WildcardSelector wildcardSelector; 48 CustomDrawableButton propertyTemplatePathSyncButton; 49 juce::ComboBox objectLanguageComboBox; 50 51 juce::ValueTree applicationState; 52 53 juce::ValueTree hierarchyMapping; 54 juce::CachedValue<int> selectedRow; 55 56 juce::ValueTree hierarchyMappingNode; 57 juce::CachedValue<juce::String> objectName; 58 juce::CachedValue<bool> objectNameValid; 59 juce::CachedValue<juce::String> objectNameErrorMessage; 60 juce::CachedValue<Wwise::ObjectType> objectType; 61 juce::CachedValue<juce::String> propertyTemplatePath; 62 juce::CachedValue<Wwise::ObjectType> propertyTemplatePathType; 63 juce::CachedValue<bool> propertyTemplatePathEnabled; 64 juce::CachedValue<bool> propertyTemplatePathValid; 65 66 juce::CachedValue<bool> applyTemplateFeatureEnabled; 67 68 juce::ValueTree emptyHierarchyMappingNode; 69 70 juce::ValueTree languages; 71 juce::CachedValue<juce::String> objectLanguage; 72 73 WaapiClient& waapiClient; 74 75 void valueTreePropertyChanged(juce::ValueTree& treeWhosePropertyHasChanged, const juce::Identifier& property) override; 76 void valueTreeChildAdded(juce::ValueTree& parentTree, juce::ValueTree& childWhichHasBeenAdded) override; 77 void valueTreeChildRemoved(juce::ValueTree& parentTree, juce::ValueTree& childWhichHasBeenRemoved, int indexFromWhichChildWasRemoved) override; 78 void valueTreeChildOrderChanged(juce::ValueTree& parentTreeWhoseChildrenHaveMoved, int oldIndex, int newIndex) override; 79 80 void handleAsyncUpdate() override; 81 void refreshComponent(); 82 void updatePropertyTemplatePath(); 83 void updatePropertyTemplateSection(); 84 85 void paint(juce::Graphics& g) override; 86 87 JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(SelectedRowPropertiesComponent); 88 }; 89 } // namespace AK::WwiseTransfer