Top |
ICalParameter * | i_cal_parameter_new () |
ICalParameter * | i_cal_parameter_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 () |
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_kind_from_string () |
gboolean | i_cal_parameter_kind_is_valid () |
ICalParameter *
i_cal_parameter_new (ICalParameterKind v
);
Creates a new ICalParameter according to the kind type.
Since: 1.0
ICalParameter *
i_cal_parameter_clone (ICalParameter *p
);
Deep clone a ICalParameter.
Since: 1.0
ICalParameter *
i_cal_parameter_new_from_string (const gchar *value
);
Creates 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
);
Creates 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
);
Frees the native part of the ICalParameter.
[skip]
Since: 1.0
gchar *
i_cal_parameter_as_ical_string (ICalParameter *parameter
);
Converts an ICalParameter to the string representation.
Since: 1.0
ICalParameterKind
i_cal_parameter_isa (ICalParameter *parameter
);
Checks the type of a ICalParameter.
Since: 1.0
gint
i_cal_parameter_isa_parameter (ICalParameter *param
);
Checks 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
);
Sets the xname property of the native part of the ICalParameter.
Since: 1.0
const gchar *
i_cal_parameter_get_xname (ICalParameter *param
);
Gets the xname property of the native part of the ICalParameter.
Since: 1.0
void i_cal_parameter_set_xvalue (ICalParameter *param
,const gchar *v
);
Sets 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
);
Gets 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
);
Sets 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
);
Gets 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
);
Sets 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
);
Gets 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
);
Checks whether native parts of two ICalParameters have the same name.
Since: 1.0
const gchar *
i_cal_parameter_kind_to_string (ICalParameterKind kind
);
Converts the ICalParameter to the string representation.
Since: 1.0
ICalParameterKind
i_cal_parameter_kind_from_string (const gchar *string
);
Converts a string to the ICalParameterKind.
Since: 1.0
gboolean
i_cal_parameter_kind_is_valid (const ICalParameterKind kind
);
Checks whether ICalParameterKind is valid.
Since: 3.0.5