ReaWwise

REAPER extension
Log | Files | Refs | Submodules

IDs.h (5031B)


      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_gui_basics/juce_gui_basics.h>
     19 
     20 namespace AK::WwiseTransfer::IDs
     21 {
     22 	inline const juce::Identifier application = "application";
     23 	inline const juce::Identifier waapiConnected = "waapiConnected";
     24 	inline const juce::Identifier projectPath = "projectPath";
     25 	inline const juce::Identifier projectId = "projectId";
     26 
     27 	inline const juce::Identifier originalsFolder = "originalsFolder";
     28 	inline const juce::Identifier originalsSubfolder = "originalsSubfolder";
     29 	inline const juce::Identifier originalsSubfolderValid = "originalsSubfolderValid";
     30 	inline const juce::Identifier originalsSubfolderErrorMessage = "originalsSubfolderErrorMessage";
     31 	inline const juce::Identifier languageSubfolder = "languageSubfolder";
     32 	inline const juce::Identifier referenceLanguage = "referenceLanguage";
     33 
     34 	inline const juce::Identifier importDestination = "importDestination";
     35 	inline const juce::Identifier importDestinationType = "importDestinationType";
     36 	inline const juce::Identifier importDestinationValid = "importDestinationValid";
     37 	inline const juce::Identifier importDestinationErrorMessage = "importDestinationErrorMessage";
     38 
     39 	inline const juce::Identifier previewItems = "previewItems";
     40 	inline const juce::Identifier previewItem = "previewItem";
     41 
     42 	inline const juce::Identifier selectedRow = "selectedRow";
     43 	inline const juce::Identifier hierarchyMapping = "hierarchyMapping";
     44 	inline const juce::Identifier hierarchyMappingNode = "hierarchyMappingNode";
     45 
     46 	inline const juce::Identifier objectType = "objectType";
     47 	inline const juce::Identifier objectTypeValid = "objectTypeValid";
     48 	inline const juce::Identifier objectTypeErrorMessage = "objectTypeErrorMessage";
     49 	inline const juce::Identifier objectPath = "objectPath";
     50 	inline const juce::Identifier objectName = "objectName";
     51 	inline const juce::Identifier objectNameValid = "objectNameValid";
     52 	inline const juce::Identifier objectNameErrorMessage = "objectNameErrorMessage";
     53 	inline const juce::Identifier objectStatus = "objectStatus";
     54 	inline const juce::Identifier objectLanguage = "objectLanguage";
     55 
     56 	inline const juce::Identifier audioFilePath = "audioFilePath";
     57 	inline const juce::Identifier renderFilePath = "renderFilePath";
     58 	inline const juce::Identifier wavStatus = "wavStatus";
     59 	inline const juce::Identifier unresolvedWildcard = "unresolvedWildcard";
     60 
     61 	inline const juce::Identifier propertyTemplatePath = "propertyTemplatePath";
     62 	inline const juce::Identifier propertyTemplatePathType = "propertyTemplatePathType";
     63 	inline const juce::Identifier propertyTemplatePathValid = "propertyTemplatePathValid";
     64 	inline const juce::Identifier propertyTemplatePathErrorMessage = "propertyTemplatePathErrorMessage";
     65 	inline const juce::Identifier propertyTemplatePathEnabled = "propertyTemplatePathEnabled";
     66 
     67 	inline const juce::Identifier containerNameExists = "containerNameExists";
     68 	inline const juce::Identifier audioFileNameExists = "audioFileNameExists";
     69 	inline const juce::Identifier applyTemplate = "applyTemplate";
     70 
     71 	inline const juce::Identifier version = "version";
     72 	inline const juce::Identifier year = "year";
     73 	inline const juce::Identifier major = "major";
     74 	inline const juce::Identifier minor = "minor";
     75 	inline const juce::Identifier build = "build";
     76 
     77 	inline const juce::Identifier featureSupport = "featureSupport";
     78 	inline const juce::Identifier selectObjectsOnImportCommand = "selectObjectsOnImportCommand";
     79 	inline const juce::Identifier applyTemplateFeatureEnabled = "applyTemplateFeatureEnabled";
     80 	inline const juce::Identifier undoGroupFeatureEnabled = "undoGroupFeatureEnabled";
     81 	inline const juce::Identifier waqlEnabled = "waqlEnabled";
     82 	inline const juce::Identifier additionalProjectInfoLookupEnabled = "additionalProjectInfoLookupEnabled";
     83 
     84 	inline const juce::Identifier wwiseObjectsChanged = "wwiseObjectsChanged";
     85 
     86 	inline const juce::Identifier previewLoading = "previewLoading";
     87 	inline const juce::Identifier transferInProgress = "transferInProgress";
     88 
     89 	inline const juce::Identifier sessionName = "sessionName";
     90 
     91 	inline const juce::Identifier collapsedUI = "collapsedUI";
     92 
     93 	inline const juce::Identifier languages = "languages";
     94 	inline const juce::Identifier language = "language";
     95 	inline const juce::Identifier languageName = "languageName";
     96 } // namespace AK::WwiseTransfer::IDs