Searched refs:Property (Results 1 - 25 of 41) sorted by relevance

12

/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyEditorFactory.h14 class Property;
17 PropertyEditorView* EditorFor(Property* property);
H A DPropertyItemView.h14 class Property;
20 PropertyItemView(Property* property);
38 Property* GetProperty() const;
39 bool AdoptProperty(Property* property);
H A DPropertyEditorView.h14 class Property;
46 virtual bool AdoptProperty(Property* property) = 0;
47 virtual Property* GetProperty() const = 0;
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DInt64Property.h12 #include "Property.h"
14 class Int64Property : public Property {
22 virtual Property* Clone() const;
28 virtual bool SetValue(const Property* other);
31 virtual bool InterpolateTo(const Property* other,
H A DInt64Property.cpp19 : Property(identifier),
26 : Property(other),
37 Property*
53 Int64Property::SetValue(const Property* other)
71 Int64Property::InterpolateTo(const Property* other, float scale)
H A DColorProperty.h14 #include "Property.h"
16 class ColorProperty : public Property {
30 virtual Property* Clone() const;
36 virtual bool SetValue(const Property* other);
39 virtual bool InterpolateTo(const Property* other,
H A DIconProperty.cpp24 : Property(identifier),
35 : Property(other),
46 : Property(archive),
65 status_t status = Property::Archive(into, deep);
89 Property*
104 IconProperty::SetValue(const Property* other)
123 IconProperty::InterpolateTo(const Property* other, float scale)
H A DIconProperty.h14 #include "Property.h"
16 class IconProperty : public Property {
32 // Property interface
33 virtual Property* Clone() const;
39 virtual bool SetValue(const Property* other);
42 virtual bool InterpolateTo(const Property* other,
H A DColorProperty.cpp23 : Property(identifier),
30 : Property(identifier),
37 : Property(other),
44 : Property(archive),
63 status_t ret = Property::Archive(into, deep);
86 Property*
130 ColorProperty::SetValue(const Property* other)
150 ColorProperty::InterpolateTo(const Property* other, float scale)
/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DFloatValueView.h12 #include "Property.h"
28 virtual bool AdoptProperty(Property* property);
29 virtual Property* GetProperty() const;
H A DInt64ValueView.h28 virtual bool AdoptProperty(Property* property);
29 virtual Property* GetProperty() const;
H A DIntValueView.h12 #include "Property.h"
28 virtual bool AdoptProperty(Property* property);
29 virtual Property* GetProperty() const;
H A DStringValueView.h13 #include "Property.h"
29 virtual bool AdoptProperty(Property* property);
30 virtual Property* GetProperty() const;
H A DBoolValueView.h12 #include "Property.h"
32 virtual bool AdoptProperty(Property* property);
33 virtual Property* GetProperty() const;
H A DColorValueView.h34 virtual bool AdoptProperty(Property* property);
35 virtual Property* GetProperty() const;
H A DIconValueView.h28 virtual bool AdoptProperty(Property* property);
29 virtual Property* GetProperty() const;
H A DOptionValueView.h36 virtual bool AdoptProperty(Property* property);
37 virtual Property* GetProperty() const;
H A DFloatValueView.cpp57 FloatValueView::AdoptProperty(Property* property)
70 Property*
H A DInt64ValueView.cpp59 Int64ValueView::AdoptProperty(Property* property)
73 Property*
H A DIntValueView.cpp57 IntValueView::AdoptProperty(Property* property)
70 Property*
/haiku/src/apps/icon-o-matic/generic/property/
H A DProperty.h20 // Property
21 class Property : public BArchivable { class in inherits:BArchivable
23 Property(uint32 identifier);
24 Property(const Property& other);
25 Property(BMessage* archive);
26 virtual ~Property();
32 // Property
33 virtual Property* Clone() const = 0;
38 virtual bool SetValue(const Property* othe
[all...]
H A DProperty.cpp9 #include "Property.h"
23 Property::Property(uint32 identifier) function in class:Property
30 Property::Property(const Property& other) function in class:Property
37 Property::Property(BMessage* archive) function in class:Property
51 Property::~Property()
[all...]
H A DPropertyObject.h16 class Property;
27 bool AddProperty(Property* property);
29 Property* PropertyAt(int32 index) const;
30 Property* PropertyAtFast(int32 index) const;
33 Property* FindProperty(uint32 propertyID) const;
34 bool HasProperty(Property* property) const;
H A DPropertyObject.cpp18 #include "Property.h"
56 Property* p = PropertyAtFast(i);
83 Property* p = PropertyAtFast(i);
105 PropertyObject::AddProperty(Property* property)
134 Property*
137 return (Property*)fProperties.ItemAt(index);
141 Property*
144 return (Property*)fProperties.ItemAtFast(index);
157 Property*
162 Property*
[all...]
/haiku/src/apps/icon-o-matic/gui/
H A DIconObjectListView.h29 virtual void PropertyChanged(const Property* previous,
30 const Property* current);

Completed in 60 milliseconds

12