Symbol: ColorProperty
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
130
ColorProperty::SetValue(const Property* other)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
132
const ColorProperty* c = dynamic_cast<const ColorProperty*>(other);
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
140
ColorProperty::GetValue(BString& string)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
150
ColorProperty::InterpolateTo(const Property* other, float scale)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
152
const ColorProperty* c = dynamic_cast<const ColorProperty*>(other);
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
167
ColorProperty::SetValue(rgb_color color)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
178
ColorProperty::Value() const
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
22
ColorProperty::ColorProperty(uint32 identifier)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
29
ColorProperty::ColorProperty(uint32 identifier, rgb_color color)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
36
ColorProperty::ColorProperty(const ColorProperty& other)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
43
ColorProperty::ColorProperty(BMessage* archive)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
55
ColorProperty::~ColorProperty()
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
61
ColorProperty::Archive(BMessage* into, bool deep) const
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
77
ColorProperty::Instantiate(BMessage* archive)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
80
return new ColorProperty(archive);
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
87
ColorProperty::Clone() const
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
89
return new (nothrow) ColorProperty(*this);
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
94
ColorProperty::SetValue(const char* str)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.h
16
class ColorProperty : public Property {
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.h
18
ColorProperty(uint32 identifier);
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.h
19
ColorProperty(uint32 identifier,
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.h
21
ColorProperty(const ColorProperty& other);
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.h
22
ColorProperty(BMessage* archive);
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.h
24
virtual ~ColorProperty();
src/apps/icon-o-matic/generic/property/view/PropertyEditorFactory.cpp
50
if (ColorProperty* c = dynamic_cast<ColorProperty*>(p))
src/apps/icon-o-matic/generic/property/view/specific_properties/ColorValueView.cpp
123
ColorProperty* p = dynamic_cast<ColorProperty*>(property);
src/apps/icon-o-matic/generic/property/view/specific_properties/ColorValueView.cpp
27
ColorValueView::ColorValueView(ColorProperty* property)
src/apps/icon-o-matic/generic/property/view/specific_properties/ColorValueView.h
19
ColorValueView(ColorProperty* property);
src/apps/icon-o-matic/generic/property/view/specific_properties/ColorValueView.h
38
ColorProperty* fProperty;