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
Bitmap *getValue() override;
bool setValue(const Bitmap &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 |