00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef IDIOSKOPOSPROPERTYPROXY_H
00020 #define IDIOSKOPOSPROPERTYPROXY_H
00021
00022 #include <idioskopos/propertyproxybase.h>
00023
00024 namespace Idioskopos {
00025
00026 template <typename T> class Property;
00027
00028 template <typename T>
00029 class PropertyProxy: public virtual PropertyProxyBase {
00030 public:
00031 PropertyProxy(Object& object, const std::string name): PropertyProxyBase(object, name) { }
00032
00033 ~PropertyProxy() { }
00034
00035 void set_value (const T& value) {
00036 Property<T>* p = get_property_ptr();
00037 if (p)
00038 p->set_value(value);
00039 }
00040
00041 T get_value () {
00042 Property<T>* p = get_property_ptr();
00043 if (p)
00044 return p->get_value();
00045 else
00046 return T();
00047 }
00048
00049 PropertyProxy<T>& operator= (const T& value) { set_value(value); return *this; }
00050
00051 operator T () { return get_value(); }
00052
00053 Property<T>* get_property_ptr();
00054
00055 };
00056 }
00057 #include <idioskopos/object.h>
00058 namespace Idioskopos {
00059
00060
00061 template <typename T>
00062 inline
00063 Property<T>* PropertyProxy<T>::get_property_ptr() {
00064 PropertyBase* pb = m_object.get_property(m_name);
00065 if (pb)
00066 return dynamic_cast<Property<T>*>(pb);
00067 else
00068 return NULL;
00069 }
00070
00071 }
00072
00073 #endif