void ccxProperty::set(const char *value) { if ( this->isReadOnly() ) return; std::string s = std::string(value); AUTOCONVERT(CCX_PROPERTY_STRING, s); this->fireCallback(); }
void moProperty::set(moPointList value) { if ( this->isReadOnly() ) return; AUTOCONVERT(MO_PROPERTY_POINTLIST, value); }
void moProperty::set(double value) { if ( this->isReadOnly() ) return; AUTOCONVERT(MO_PROPERTY_DOUBLE, value); }
void moProperty::set(int value) { if ( this->isReadOnly() ) return; AUTOCONVERT(MO_PROPERTY_INTEGER, value); }
void moProperty::set(const char *value) { if ( this->isReadOnly() ) return; std::string s = std::string(value); AUTOCONVERT(MO_PROPERTY_STRING, s); }
void moProperty::set(std::string value) { if ( this->isReadOnly() ) return; AUTOCONVERT(MO_PROPERTY_STRING, value); }
void moProperty::set(bool value) { if ( this->isReadOnly() ) return; AUTOCONVERT(MO_PROPERTY_BOOL, value); }
void ccxProperty::set(ccxPointList value) { if ( this->isReadOnly() ) return; AUTOCONVERT(CCX_PROPERTY_POINTLIST, value); this->fireCallback(); }
void ccxProperty::set(double value) { if ( this->isReadOnly() ) return; AUTOCONVERT(CCX_PROPERTY_DOUBLE, value); this->fireCallback(); }
void ccxProperty::set(int value) { if ( this->isReadOnly() ) return; AUTOCONVERT(CCX_PROPERTY_INTEGER, value); this->fireCallback(); }
void ccxProperty::set(std::string value) { if ( this->isReadOnly() ) return; AUTOCONVERT(CCX_PROPERTY_STRING, value); this->fireCallback(); }
void ccxProperty::set(bool value) { if ( this->isReadOnly() ) return; AUTOCONVERT(CCX_PROPERTY_BOOL, value); this->fireCallback(); }