diff options
author | Damon Chaplin <damon@helixcode.com> | 2000-09-25 00:22:07 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2000-09-25 00:22:07 +0800 |
commit | fb1cdc02878ea1c6a37671fc326145f8a20ded81 (patch) | |
tree | 2f7c4f3cabd0299a0e90f773a797082f39c1b323 /calendar/cal-util/cal-component.c | |
parent | bfa2f69ce5eb69f46106e443d793a732215259a4 (diff) | |
download | gsoc2013-evolution-fb1cdc02878ea1c6a37671fc326145f8a20ded81.tar.gz gsoc2013-evolution-fb1cdc02878ea1c6a37671fc326145f8a20ded81.tar.zst gsoc2013-evolution-fb1cdc02878ea1c6a37671fc326145f8a20ded81.zip |
set the height of the scrolled window for the description field, since the
2000-09-24 Damon Chaplin <damon@helixcode.com>
* gui/dialogs/task-editor-dialog.glade: set the height of the scrolled
window for the description field, since the default window height
doesn't seem to be working.
* cal-util/cal-component.h: added functions to get the actual
icalproperty lists for RRULE and EXRULE properties.
* cal-util/cal-recur.[hc]: added support for COUNT, though I need to
test it a bit. Also fixed the call to generate_instances_for_year() so
it uses the chunk dates.
2000-09-20 Damon Chaplin <damon@helixcode.com>
* gui/event-editor.c: got rid of 1 '_' in '__Formatting'.
svn path=/trunk/; revision=5562
Diffstat (limited to 'calendar/cal-util/cal-component.c')
-rw-r--r-- | calendar/cal-util/cal-component.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/calendar/cal-util/cal-component.c b/calendar/cal-util/cal-component.c index 4ddec62159..cf7e3f358a 100644 --- a/calendar/cal-util/cal-component.c +++ b/calendar/cal-util/cal-component.c @@ -2193,6 +2193,29 @@ cal_component_get_exrule_list (CalComponent *comp, GSList **recur_list) } /** + * cal_component_get_exrule_property_list: + * @comp: A calendar component object. + * @recur_list: Returns a list of exception rule properties. + * + * Returns a list of exception rule properties of a calendar component + * object. + **/ +void +cal_component_get_exrule_property_list (CalComponent *comp, GSList **recur_list) +{ + CalComponentPrivate *priv; + + g_return_if_fail (comp != NULL); + g_return_if_fail (IS_CAL_COMPONENT (comp)); + g_return_if_fail (recur_list != NULL); + + priv = comp->priv; + g_return_if_fail (priv->icalcomp != NULL); + + *recur_list = priv->exrule_list; +} + +/** * cal_component_set_exrule_list: * @comp: A calendar component object. * @recur_list: List of struct #icalrecurrencetype structures. @@ -2591,6 +2614,29 @@ cal_component_get_rrule_list (CalComponent *comp, GSList **recur_list) } /** + * cal_component_get_rrule_property_list: + * @comp: A calendar component object. + * @recur_list: Returns a list of recurrence rule properties. + * + * Returns a list of recurrence rule properties of a calendar component + * object. + **/ +void +cal_component_get_rrule_property_list (CalComponent *comp, GSList **recur_list) +{ + CalComponentPrivate *priv; + + g_return_if_fail (comp != NULL); + g_return_if_fail (IS_CAL_COMPONENT (comp)); + g_return_if_fail (recur_list != NULL); + + priv = comp->priv; + g_return_if_fail (priv->icalcomp != NULL); + + *recur_list = priv->rrule_list; +} + +/** * cal_component_set_rrule_list: * @comp: A calendar component object. * @recur_list: List of struct #icalrecurrencetype structures. |