IntProperty
IntProperty::IntProperty(const IntProperty& other)
IntProperty::IntProperty(BMessage* archive)
IntProperty::~IntProperty()
IntProperty::Archive(BMessage* into, bool deep) const
IntProperty::Instantiate(BMessage* archive)
return new IntProperty(archive);
IntProperty::Clone() const
return new IntProperty(*this);
IntProperty::SetValue(const char* value)
IntProperty::SetValue(const Property* other)
const IntProperty* i = dynamic_cast<const IntProperty*>(other);
IntProperty::GetValue(BString& string)
IntProperty::InterpolateTo(const Property* other, float scale)
const IntProperty* i = dynamic_cast<const IntProperty*>(other);
IntProperty::SetValue(int32 value)
IntProperty::IntProperty(uint32 identifier, int32 value,
class IntProperty : public Property {
IntProperty(uint32 identifier,
IntProperty(const IntProperty& other);
IntProperty(BMessage* archive);
virtual ~IntProperty();
IntProperty* p = dynamic_cast<IntProperty*>(FindProperty(propertyID));
if (IntProperty* p = dynamic_cast<IntProperty*>(FindProperty(propertyID)))
if (IntProperty* i = dynamic_cast<IntProperty*>(p))
IntValueView::IntValueView(IntProperty* property)
IntProperty* p = dynamic_cast<IntProperty*>(property);
IntValueView(IntProperty* property);
IntProperty* fProperty;
object->AddProperty(new IntProperty(PROPERTY_ALPHA, Style()->Alpha(), 0, 255));