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