From ee3d463024179514f09d80d962d1b9765462dd6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sat, 6 Apr 2019 19:04:28 +0200 Subject: Add temporary set-attributes! --- src/guile_interface.scm.c | 19 +++++++++++++++++++ src/vcal.h | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/guile_interface.scm.c b/src/guile_interface.scm.c index 1a843f4a..036e9e9c 100644 --- a/src/guile_interface.scm.c +++ b/src/guile_interface.scm.c @@ -90,6 +90,25 @@ SCM_DEFINE (vcomponent_get_property, "%vcomponent-get-property", 3, 0, 0, return llist; } +SCM_DEFINE (vcomponent_set_property_x, "%vcomponent-set-property!", 4, 0, 0, + (SCM component, SCM attr, SCM prop, SCM val), + "") +{ + scm_assert_foreign_object_type (vcomponent_type, component); + vcomponent* comp = scm_foreign_object_ref (component, 0); + + char* key = scm_to_utf8_stringn(scm_string_upcase(attr), NULL); + char* prop_key = scm_to_utf8_stringn(scm_string_upcase(prop), NULL); + content_line* cl = get_attributes (comp, key); + free(key); + + TRIE(param_set)* tt = &cl->cval->val; + LLIST(strbuf)* vals = GET(TRIE(param_set))(tt, prop_key); + vals->cval->scm = val; + + return SCM_UNSPECIFIED; +} + SCM_DEFINE (vcomponent_set_attr_x, "%vcomponent-set-attribute!", 3, 0, 0, (SCM component, SCM attr, SCM new_value), "") diff --git a/src/vcal.h b/src/vcal.h index 9b0e4893..c9a0272f 100644 --- a/src/vcal.h +++ b/src/vcal.h @@ -14,7 +14,7 @@ /* * content_line: - * a mapping between a top level key, and everything it contains. + * (a mapping) between a top level key, and everything it contains. * content_set: * A top level value, along with a list of kv pairs for all its * possible parameters. -- cgit v1.2.3