[LYN-2515] Project Manager Gem List (#642)
* [LYN-2515] Project Manager Gem List Base * Added gem model based on a standard item model * Added list view using the gem model * Added item delegate for a gem according to the UX design * Removed th gem catalog ui file and replaced it with code * Moved the gem catalog files into a sub folder * Added drawing the Added/Get button and the platform icons
This commit is contained in:
@@ -26,11 +26,12 @@ namespace O3DE::ProjectManager
|
||||
public:
|
||||
enum Platform
|
||||
{
|
||||
Android = 0x0,
|
||||
iOS = 0x1,
|
||||
Linux = 0x2,
|
||||
macOS = 0x3,
|
||||
Windows = 0x4
|
||||
Android = 1 << 0,
|
||||
iOS = 1 << 1,
|
||||
Linux = 1 << 2,
|
||||
macOS = 1 << 3,
|
||||
Windows = 1 << 4,
|
||||
NumPlatforms = 5
|
||||
};
|
||||
Q_DECLARE_FLAGS(Platforms, Platform)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user