Top | ![]() |
![]() |
![]() |
![]() |
ECalComponentText * | e_cal_component_text_new () |
ECalComponentText * | e_cal_component_text_new_from_property () |
ECalComponentText * | e_cal_component_text_copy () |
void | e_cal_component_text_free () |
void | e_cal_component_text_set_from_property () |
void | e_cal_component_text_fill_property () |
const gchar * | e_cal_component_text_get_value () |
void | e_cal_component_text_set_value () |
const gchar * | e_cal_component_text_get_altrep () |
void | e_cal_component_text_set_altrep () |
const gchar * | e_cal_component_text_get_language () |
void | e_cal_component_text_set_language () |
ECalComponentText * e_cal_component_text_new (const gchar *value
,const gchar *altrep
);
Creates a new ECalComponentText describing text properties.
The returned structure should be freed with e_cal_component_text_free()
,
when no longer needed.
Since: 3.34
ECalComponentText *
e_cal_component_text_new_from_property
(const ICalProperty *property
);
Created a new ECalComponentText filled with values from the property
.
The property
should hold a text value.
Since: 3.46
ECalComponentText *
e_cal_component_text_copy (const ECalComponentText *text
);
a newly allocated ECalComponentText, copy of text
.
The returned structure should be freed with e_cal_component_text_free()
,
when no longer needed.
[transfer full]
Since: 3.34
void
e_cal_component_text_free (gpointer text
);
Free the text
, previously allocated by e_cal_component_text_new()
or
e_cal_component_text_copy()
.
[skip]
Since: 3.34
void e_cal_component_text_set_from_property (ECalComponentText *text
,const ICalProperty *property
);
Fill the text
structure with the information from the property
.
The property
should hold a text value.
Since: 3.46
void e_cal_component_text_fill_property (const ECalComponentText *text
,ICalProperty *property
);
Fills the property
with the content of the text
.
Since: 3.46
const gchar *
e_cal_component_text_get_value (const ECalComponentText *text
);
Since: 3.34
void e_cal_component_text_set_value (ECalComponentText *text
,const gchar *value
);
Set the value
as the description string of the text
.
Since: 3.34
const gchar *
e_cal_component_text_get_altrep (const ECalComponentText *text
);
Since: 3.34
void e_cal_component_text_set_altrep (ECalComponentText *text
,const gchar *altrep
);
Set the altrep
as the alternate representation URI of the text
.
Since: 3.34
const gchar *
e_cal_component_text_get_language (const ECalComponentText *text
);
Since: 3.46
void e_cal_component_text_set_language (ECalComponentText *text
,const gchar *language
);
Set the language
as the language of the text
. The language tag
is defined in RFC 5646. For example en-US
, not en_US
.
Since: 3.46