CFormImage



Implements Image form.

You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.

class CFormImage :public virtual IFormImage, public CForm
{
public:
    static const String ClassName; // Class name 

    Image *getValue() override;

    bool setValue(const Image &value) override;

    CFormImage(IWindow *window, IRenderer *renderer);
    ~CFormImage() override;

    void Update();

    static CFormImage *getInstance(); // Return form instance if any was created 
};
Namespace: nitisa::standard
Include: Standard/Forms/Image/FormImage.h