Symbol: IntProperty
src/apps/icon-o-matic/generic/property/Property.cpp
104
IntProperty::IntProperty(const IntProperty& other)
src/apps/icon-o-matic/generic/property/Property.cpp
113
IntProperty::IntProperty(BMessage* archive)
src/apps/icon-o-matic/generic/property/Property.cpp
131
IntProperty::~IntProperty()
src/apps/icon-o-matic/generic/property/Property.cpp
137
IntProperty::Archive(BMessage* into, bool deep) const
src/apps/icon-o-matic/generic/property/Property.cpp
157
IntProperty::Instantiate(BMessage* archive)
src/apps/icon-o-matic/generic/property/Property.cpp
160
return new IntProperty(archive);
src/apps/icon-o-matic/generic/property/Property.cpp
167
IntProperty::Clone() const
src/apps/icon-o-matic/generic/property/Property.cpp
169
return new IntProperty(*this);
src/apps/icon-o-matic/generic/property/Property.cpp
174
IntProperty::SetValue(const char* value)
src/apps/icon-o-matic/generic/property/Property.cpp
181
IntProperty::SetValue(const Property* other)
src/apps/icon-o-matic/generic/property/Property.cpp
183
const IntProperty* i = dynamic_cast<const IntProperty*>(other);
src/apps/icon-o-matic/generic/property/Property.cpp
192
IntProperty::GetValue(BString& string)
src/apps/icon-o-matic/generic/property/Property.cpp
199
IntProperty::InterpolateTo(const Property* other, float scale)
src/apps/icon-o-matic/generic/property/Property.cpp
201
const IntProperty* i = dynamic_cast<const IntProperty*>(other);
src/apps/icon-o-matic/generic/property/Property.cpp
211
IntProperty::SetValue(int32 value)
src/apps/icon-o-matic/generic/property/Property.cpp
94
IntProperty::IntProperty(uint32 identifier, int32 value,
src/apps/icon-o-matic/generic/property/Property.h
58
class IntProperty : public Property {
src/apps/icon-o-matic/generic/property/Property.h
60
IntProperty(uint32 identifier,
src/apps/icon-o-matic/generic/property/Property.h
64
IntProperty(const IntProperty& other);
src/apps/icon-o-matic/generic/property/Property.h
65
IntProperty(BMessage* archive);
src/apps/icon-o-matic/generic/property/Property.h
66
virtual ~IntProperty();
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
286
IntProperty* p = dynamic_cast<IntProperty*>(FindProperty(propertyID));
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
298
if (IntProperty* p = dynamic_cast<IntProperty*>(FindProperty(propertyID)))
src/apps/icon-o-matic/generic/property/view/PropertyEditorFactory.cpp
32
if (IntProperty* i = dynamic_cast<IntProperty*>(p))
src/apps/icon-o-matic/generic/property/view/specific_properties/IntValueView.cpp
16
IntValueView::IntValueView(IntProperty* property)
src/apps/icon-o-matic/generic/property/view/specific_properties/IntValueView.cpp
59
IntProperty* p = dynamic_cast<IntProperty*>(property);
src/apps/icon-o-matic/generic/property/view/specific_properties/IntValueView.h
19
IntValueView(IntProperty* property);
src/apps/icon-o-matic/generic/property/view/specific_properties/IntValueView.h
32
IntProperty* fProperty;
src/libs/icon/shape/ReferenceImage.cpp
156
object->AddProperty(new IntProperty(PROPERTY_ALPHA, Style()->Alpha(), 0, 255));