diff options
author | Federico Mena Quintero <federico@nuclecu.unam.mx> | 1998-10-01 09:32:47 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-10-01 09:32:47 +0800 |
commit | 7dae771114a7121f78f368f07f5e3adc69651c17 (patch) | |
tree | d894c1f4f505e2638ff0b7998a085f4567c755b4 /calendar/goto.c | |
parent | d1769d5646e9fef3c6de607f9f884b02dd954844 (diff) | |
download | gsoc2013-evolution-7dae771114a7121f78f368f07f5e3adc69651c17.tar gsoc2013-evolution-7dae771114a7121f78f368f07f5e3adc69651c17.tar.gz gsoc2013-evolution-7dae771114a7121f78f368f07f5e3adc69651c17.tar.bz2 gsoc2013-evolution-7dae771114a7121f78f368f07f5e3adc69651c17.tar.lz gsoc2013-evolution-7dae771114a7121f78f368f07f5e3adc69651c17.tar.xz gsoc2013-evolution-7dae771114a7121f78f368f07f5e3adc69651c17.tar.zst gsoc2013-evolution-7dae771114a7121f78f368f07f5e3adc69651c17.zip |
Colorify the month item and prepare it for prelighting here.
1998-09-30 Federico Mena Quintero <federico@nuclecu.unam.mx>
* goto.c (create_days): Colorify the month item and prepare it for
prelighting here.
* main.c (color_props): Changed the default colors to something
not dull.
* year-view.c (compute_min_size): New function to compute the
minimum size of the year view properly.
(year_view_size_request): Added two new fields to the year view
structure that contain the minimum size. Return this in the
size_request method.
(year_view_new): Call compute_min_size to save the minimum size
for later use.
(idle_handler): Make it resize the items correctly.
* gnome-month-item.c (gnome_month_item_set_arg): Reshape when
necessary. This is needed becaues we now actually calculate a
minimum size for the month item based on the font sizes and paddings.
(check_heading_sizes): New function to calculate a minimum size
based on the headings' dimensions.
(check_day_sizes): New function to calculate a minimum size based
on the day number labels' dimensions.
(check_sizes): New function that computes a minimum size for the
month item.
(reshape): Now calls check_sizes() to ensure a minimum size for
the month item.
svn path=/trunk/; revision=419
Diffstat (limited to 'calendar/goto.c')
-rw-r--r-- | calendar/goto.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/goto.c b/calendar/goto.c index aca5edc3f8..bbc489ddee 100644 --- a/calendar/goto.c +++ b/calendar/goto.c @@ -26,7 +26,6 @@ update (void) { unmark_month_item (GNOME_MONTH_ITEM (month_item)); mark_month_item (GNOME_MONTH_ITEM (month_item), gnome_calendar->cal); - month_item_prepare_prelight (GNOME_MONTH_ITEM (month_item), default_color_func, NULL); } /* Callback used when the year adjustment is changed */ @@ -186,6 +185,8 @@ create_days (int day, int month, int year) "year", year, "start_on_monday", week_starts_on_monday, NULL); + colorify_month_item (GNOME_MONTH_ITEM (month_item), default_color_func, NULL); + month_item_prepare_prelight (GNOME_MONTH_ITEM (month_item), default_color_func, NULL); update (); /* Connect to size_allocate so that we can change the size of the month item and the |