ApplicationProperties.h (1715B)
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 <juce_data_structures/juce_data_structures.h> 19 20 namespace AK::WwiseTransfer 21 { 22 class ApplicationProperties : juce::ApplicationProperties 23 { 24 public: 25 explicit ApplicationProperties(const juce::String& applicationName); 26 27 juce::String getWaapiIp(); 28 void setWaapiIp(const juce::String& ip); 29 int getWaapiPort(); 30 void setWaapiPort(int port); 31 int getPreviewRefreshInterval(); 32 juce::StringArray getRecentHierarchyMappingPresets(); 33 void addRecentHierarchyMappingPreset(const juce::String& path); 34 void removeRecentHierarchyMappingPreset(const juce::String& path); 35 void clearRecentHierarchyMappingPresets(); 36 double getScaleFactorOverride(); 37 bool getShowSilentIncrementWarning(); 38 void setShowSilentIncrementWarning(bool value); 39 bool getIsCrossMachineTransferEnabled(); 40 void setIsCrossMachineTransferEnabled(bool value); 41 42 private: 43 JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(ApplicationProperties) 44 }; 45 } // namespace AK::WwiseTransfer