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