123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #pragma once
- #include <AzCore/Math/Crc.h>
- #include "Utils.h"
- namespace ProjectSettingsTool
- {
- namespace Attributes
- {
- static const AZ::Crc32 FuncValidator = AZ_CRC_CE("FuncValidator");
- static const AZ::Crc32 SelectFunction = AZ_CRC_CE("SelectFunction");
- static const AZ::Crc32 LinkOptional = AZ_CRC_CE("LinkOptional");
- static const AZ::Crc32 Obfuscated = AZ_CRC_CE("ObfuscatedText");
- // Used as a tooltip and for distinguising linked properties
- static const AZ::Crc32 PropertyIdentfier = AZ_CRC_CE("PropertyIdentfier");
- static const AZ::Crc32 DefaultPath = AZ_CRC_CE("DefaultPath");
- static const AZ::Crc32 DefaultImagePreview = AZ_CRC_CE("DefaultImagePreview");
- static const AZ::Crc32 ObfuscatedText = AZ_CRC_CE("ObfuscatedText");
- static const AZ::Crc32 ClearButton = AZ_CRC_CE("ClearButton");
- static const AZ::Crc32 RemovableReadOnly = AZ_CRC_CE("RemovableReadOnly");
- } // namespace Attributes
- namespace Handlers
- {
- static const AZ::Crc32 ImagePreview = AZ_CRC_CE("ImagePreview");
- static const AZ::Crc32 LinkedLineEdit = AZ_CRC_CE("LinkedLineEdit");
- static const AZ::Crc32 FileSelect = AZ_CRC_CE("FileSelect");
- static const AZ::Crc32 QValidatedLineEdit = AZ_CRC_CE("QValLineEdit");
- static const AZ::Crc32 QValidatedBrowseEdit = AZ_CRC_CE("QValBrowseEdit");
- } // namespace Handlers
- namespace Identfiers
- {
- static constexpr const char* ProjectName = "Base - Project Name";
- static constexpr const char* ProductName = "Base - Product Name";
- static constexpr const char* ExecutableName = "Base - Executable Name";
- static constexpr const char* AndroidPackageName = "Android - Package Name";
- static constexpr const char* AndroidVersionName = "Android - Version Name";
- static constexpr const char* AndroidIconDefault = "Android - Icon Default";
- static constexpr const char* AndroidLandDefault = "Android - Land Default";
- static constexpr const char* AndroidPortDefault = "Android - Port Default";
- static constexpr const char* IosBundleName = "iOS - Bundle Name";
- static constexpr const char* IosDisplayName = "iOS - Display Name";
- static constexpr const char* IosExecutableName = "iOS - Executable Name";
- static constexpr const char* IosBundleIdentifer = "iOS - Bundle Identifer";
- static constexpr const char* IosVersionName = "iOS - Version Name";
- } // namespace Identfiers
- } // namespace ProjectSettingsTool
|