Implements color array management form.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CFormColorArray : public virtual IFormColorArray, public IFormColorArrayProto
{
public:
static const String ClassName; // Class name
std::vector<Color> getValue() override;
int getMinCount() override;
bool setValue(const std::vector<Color> &value) override;
bool setMinCount(const int value) override;
CFormColorArray(IWindow *window, IRenderer *renderer);
~CFormColorArray() override;
static CFormColorArray *getInstance(); // Return form instance if any was created
};
Namespace: | nitisa::standard |
Include: | Standard/Forms/ColorArray/FormColorArray.h |