Implements Color form.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CFormColor :public virtual IFormColor, public CForm
{
public:
static const String ClassName; // Class name
Color getValue() override;
bool setValue(const Color &value) override;
void ActivateFirstEnabledInput() override;
CFormColor(IWindow *window, IRenderer *renderer);
~CFormColor() override;
static CFormColor *getInstance(); // Return form instance if any was created
};
Namespace: | nitisa::standard |
Include: | Standard/Forms/Color/FormColor.h |