Class describing multiple state property of type representing image.
You can find more information in comments below. Overrided methods can be found in corresponding base class or interface.
class CPropertyImageState :public virtual IPropertyImageState, public CPropertyState
{
public:
using FGetter = Bitmap * (*)(IClass *parent, const String &state);
using FUpdate = void(*)(IClass *parent);
public:
// IProperty getters
String getPreview() override;
String getPreview(const String &state) override;
bool isChanged() override;
// IProperty setters
IProperty *setChanged(const bool value) override;
// IProperty methods
bool Copy(IProperty *dest) override;
void Save(Variant &dest) override;
void Load(const Variant &src) override;
void Export(std::wofstream &f, const String &shift, const String &control) override;
// IPropertyImageState getters
Bitmap *getValue(const String &state) override;
// IPropertyImageState methods
void Update() override;
CPropertyImageState(
IPropertyList *list,
IClass *parent,
const String &name,
const States &states,
const EXPORT_PREFIX_TYPE state_prefix_type,
const String &state_prefix,
FSkip skip,
FGetter getter,
FUpdate update); // See parent class constructor for more information
};
Namespace: | nitisa |
Include: | Nitisa/Properties/PropertyImage.State.h |