Example #1
0
void ccxProperty::set(const char *value) {
	if ( this->isReadOnly() )
		return;
	std::string s = std::string(value);
	AUTOCONVERT(CCX_PROPERTY_STRING, s);
	this->fireCallback();
}
Example #2
0
void moProperty::set(moPointList value) {
	if ( this->isReadOnly() )
		return;
	AUTOCONVERT(MO_PROPERTY_POINTLIST, value);
}
Example #3
0
void moProperty::set(double value) {
	if ( this->isReadOnly() )
		return;
	AUTOCONVERT(MO_PROPERTY_DOUBLE, value);
}
Example #4
0
void moProperty::set(int value) {
	if ( this->isReadOnly() )
		return;
	AUTOCONVERT(MO_PROPERTY_INTEGER, value);
}
Example #5
0
void moProperty::set(const char *value) {
	if ( this->isReadOnly() )
		return;
	std::string s = std::string(value);
	AUTOCONVERT(MO_PROPERTY_STRING, s);
}
Example #6
0
void moProperty::set(std::string value) {
	if ( this->isReadOnly() )
		return;
	AUTOCONVERT(MO_PROPERTY_STRING, value);
}
Example #7
0
void moProperty::set(bool value) {
	if ( this->isReadOnly() )
		return;
	AUTOCONVERT(MO_PROPERTY_BOOL, value);
}
Example #8
0
void ccxProperty::set(ccxPointList value) {
	if ( this->isReadOnly() )
		return;
	AUTOCONVERT(CCX_PROPERTY_POINTLIST, value);
	this->fireCallback();
}
Example #9
0
void ccxProperty::set(double value) {
	if ( this->isReadOnly() )
		return;
	AUTOCONVERT(CCX_PROPERTY_DOUBLE, value);
	this->fireCallback();
}
Example #10
0
void ccxProperty::set(int value) {
	if ( this->isReadOnly() )
		return;
	AUTOCONVERT(CCX_PROPERTY_INTEGER, value);
	this->fireCallback();
}
Example #11
0
void ccxProperty::set(std::string value) {
	if ( this->isReadOnly() )
		return;
	AUTOCONVERT(CCX_PROPERTY_STRING, value);
	this->fireCallback();
}
Example #12
0
void ccxProperty::set(bool value) {
	if ( this->isReadOnly() )
		return;
	AUTOCONVERT(CCX_PROPERTY_BOOL, value);
	this->fireCallback();
}