Top | ![]() |
![]() |
![]() |
![]() |
ICalParameter * | i_cal_parameter_new () |
ICalParameter * | i_cal_parameter_new_clone () |
ICalParameter * | i_cal_parameter_new_from_string () |
ICalParameter * | i_cal_parameter_new_from_value_string () |
void | i_cal_parameter_free () |
gchar * | i_cal_parameter_as_ical_string_r () |
ICalParameterKind | i_cal_parameter_isa () |
gint | i_cal_parameter_isa_parameter () |
void | i_cal_parameter_set_xname () |
const gchar * | i_cal_parameter_get_xname () |
void | i_cal_parameter_set_xvalue () |
const gchar * | i_cal_parameter_get_xvalue () |
void | i_cal_parameter_set_iana_name () |
const gchar * | i_cal_parameter_get_iana_name () |
void | i_cal_parameter_set_iana_value () |
const gchar * | i_cal_parameter_get_iana_value () |
gint | i_cal_parameter_has_same_name () |
const gchar * | i_cal_parameter_kind_to_string () |
ICalParameterKind | i_cal_parameter_string_to_kind () |
ICalParameter *
i_cal_parameter_new (ICalParameterKind v
);
Create a new ICalParameter according to the kind type
Since 1.0
ICalParameter *
i_cal_parameter_new_clone (ICalParameter *p
);
Deep clone a ICalParameter
Since 1.0
ICalParameter *
i_cal_parameter_new_from_string (const gchar *value
);
Create a ICalParameter from a string of form "PARAMNAME=VALUE".
The newly created $ICalParameter with the properties specified in the value
.
[transfer full]
Since 1.0
ICalParameter * i_cal_parameter_new_from_value_string (ICalParameterKind kind
,const gchar *value
);
Create a new ICalParameter from just the value, the part after the "="
kind |
The kind of ICalParameter to be created. |
|
value |
The string from which ICalParameter to be created. |
Since 1.0
void
i_cal_parameter_free (ICalParameter *parameter
);
Free the native part of the ICalParameter.
Since 1.0
gchar *
i_cal_parameter_as_ical_string_r (ICalParameter *parameter
);
Convert an ICalParameter to the string representation.
Since 1.0
ICalParameterKind
i_cal_parameter_isa (ICalParameter *parameter
);
Check the type of a ICalParameter.
Since 1.0
gint
i_cal_parameter_isa_parameter (ICalParameter *param
);
Check whether the native part of the ICalParameter is of type icalparameter.
Since 1.0
void i_cal_parameter_set_xname (ICalParameter *param
,const gchar *v
);
Set the xname property of the native part of the ICalParameter.
param |
The ICalParameter of which the xname to be set. |
|
v |
The name to be set into the |
Since 1.0
const gchar *
i_cal_parameter_get_xname (ICalParameter *param
);
Get the xname property of the native part of the ICalParameter.
Since 1.0
void i_cal_parameter_set_xvalue (ICalParameter *param
,const gchar *v
);
Set the xvalue property of the native part of the ICalParameter.
param |
The ICalParameter of which the xvalue to be set. |
|
v |
The value to be set into the |
Since 1.0
const gchar *
i_cal_parameter_get_xvalue (ICalParameter *param
);
Get the xvalue property of the native part of the ICalParameter.
Since 1.0
void i_cal_parameter_set_iana_name (ICalParameter *param
,const gchar *v
);
Set the iana_name property of the native part of the ICalParameter.
param |
The ICalParameter of which the iana_name to be set. |
|
v |
The name to be set into the |
Since 1.0
const gchar *
i_cal_parameter_get_iana_name (ICalParameter *param
);
Get the iana_name property of the native part of the ICalParameter.
Since 1.0
void i_cal_parameter_set_iana_value (ICalParameter *param
,const gchar *v
);
Set the iana_value property of the native part of the ICalParameter.
param |
The ICalParameter of which the iana_value to be set. |
|
v |
The value to be set into the |
Since 1.0
const gchar *
i_cal_parameter_get_iana_value (ICalParameter *param
);
Get the iana_value property of the native part of the ICalParameter.
Since 1.0
gint i_cal_parameter_has_same_name (ICalParameter *param1
,ICalParameter *param2
);
Check whether native parts of two ICalParameters have the same name
Since 1.0
const gchar *
i_cal_parameter_kind_to_string (ICalParameterKind kind
);
Convert the ICalParameter to the string representation
Since 1.0
ICalParameterKind
i_cal_parameter_string_to_kind (const gchar *string
);
Convert a string to the ICalParameterKind
Since 1.0