plugins/score-plugin-gfx/Gfx/Text/Metadata.hpp
1 #pragma once
2 #include <Process/ProcessMetadata.hpp>
3 
4 namespace Gfx::Text
5 {
6 class Model;
7 }
8 
9 PROCESS_METADATA(
10  , Gfx::Text::Model, "88bd9718-2a36-42ba-8eab-da5f84e3978e",
11  "text", // Internal name
12  "Text", // Pretty name
13  Process::ProcessCategory::Visual, // Category
14  "Visuals", // Category
15  "Display text", // Description
16  "ossia team", // Author
17  (QStringList{"gfx", "text"}), // Tags
18  {}, // Inputs
19  {}, // Outputs
20  Process::ProcessFlags::SupportsAll | Process::ProcessFlags::ControlSurface // Flags
21 )
Definition: score-plugin-gfx/Gfx/Text/Process.hpp:15