void AppBinding::CreateProperties(const ValueList& args, SharedValue result) { AutoPtr<PropertiesBinding> properties = new PropertiesBinding(); result->SetObject(properties); if (args.size() > 0 && args.at(0)->IsObject()) { SharedKObject p = args.at(0)->ToObject(); SharedStringList names = p->GetPropertyNames(); for (size_t i = 0; i < names->size(); i++) { SharedValue value = p->Get(names->at(i)); ValueList setterArgs; setterArgs.push_back(Value::NewString(names->at(i))); setterArgs.push_back(value); PropertiesBinding::Type type; if (value->IsList()) type = PropertiesBinding::List; else if (value->IsInt()) type = PropertiesBinding::Int; else if (value->IsDouble()) type = PropertiesBinding::Double; else if (value->IsBool()) type = PropertiesBinding::Bool; else type = PropertiesBinding::String; properties->Setter(setterArgs, type); } } }
static VALUE RubyKObjectMethods(VALUE self) { SharedValue* value = NULL; Data_Get_Struct(self, SharedValue, value); SharedKObject object = (*value)->ToObject(); VALUE* args = NULL; VALUE methods = rb_call_super(0, args); SharedStringList props = object->GetPropertyNames(); for (unsigned int i = 0; i < props->size(); i++) { SharedString prop_name = props->at(i); rb_ary_push(methods, rb_str_new2(prop_name->c_str())); } return methods; }