ImportComponent.cpp (2452B)
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 #include "ImportComponent.h" 17 18 #include "Model/IDs.h" 19 #include "Model/Import.h" 20 21 namespace AK::WwiseTransfer 22 { 23 namespace ImportComponentConstants 24 { 25 constexpr int margin = 10; 26 constexpr int spacing = 4; 27 constexpr int marginHorizontal = 12; 28 constexpr int topMargin = 20; 29 constexpr int hierarchyMappingTableHeight = 124; 30 constexpr int selectedRowPropertiesSectionHeight = 134; 31 constexpr int hierarchyMappingControlsWidth = 24; 32 } // namespace ImportComponentConstants 33 34 ImportComponent::ImportComponent(juce::ValueTree appState, WaapiClient& waapiClient, ApplicationProperties& applicationProperties, const juce::String& applicationName) 35 : hierarchyMappingTable(appState) 36 , hierarchyMappingControls(appState, applicationProperties, applicationName) 37 , selectedRowPropertiesComponent(appState, waapiClient) 38 { 39 setText("Wwise Structures"); 40 41 addAndMakeVisible(hierarchyMappingTable); 42 addAndMakeVisible(hierarchyMappingControls); 43 addAndMakeVisible(selectedRowPropertiesComponent); 44 } 45 46 void ImportComponent::resized() 47 { 48 using namespace ImportComponentConstants; 49 50 auto area = getLocalBounds(); 51 52 area.reduce(marginHorizontal, 0); 53 area.removeFromTop(topMargin); 54 area.removeFromBottom(margin); 55 56 auto hierarchyMappingTableArea = area.removeFromTop(hierarchyMappingTableHeight); 57 { 58 hierarchyMappingControls.setBounds(hierarchyMappingTableArea.removeFromRight(hierarchyMappingControlsWidth)); 59 hierarchyMappingTableArea.removeFromRight(spacing); 60 61 hierarchyMappingTable.setBounds(hierarchyMappingTableArea); 62 } 63 64 area.removeFromTop(spacing); 65 selectedRowPropertiesComponent.setBounds(area.removeFromTop(selectedRowPropertiesSectionHeight)); 66 } 67 } // namespace AK::WwiseTransfer