X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=sidebyside;f=shell%2Fev-transition-animation.c;h=148b4c7734eccaba3e576e1f1ec5ef060ce722e3;hb=f343927df4325959193353c52cff1ea4b20b2286;hp=e2bc323444849a6430fe9f8cccee81540367fcd1;hpb=1d75fddea8eab6fa418fd6ff7434462e121d69f4;p=evince.git diff --git a/shell/ev-transition-animation.c b/shell/ev-transition-animation.c index e2bc3234..148b4c77 100644 --- a/shell/ev-transition-animation.c +++ b/shell/ev-transition-animation.c @@ -282,6 +282,268 @@ ev_transition_animation_split (cairo_t *cr, } } +static void +ev_transition_animation_blinds (cairo_t *cr, + EvTransitionAnimation *animation, + EvTransitionEffect *effect, + gdouble progress, + GdkRectangle page_area) +{ + EvTransitionAnimationPriv *priv; + EvTransitionEffectAlignment alignment; + gint width, height, i; + + priv = EV_TRANSITION_ANIMATION_GET_PRIVATE (animation); + width = page_area.width; + height = page_area.height; + + g_object_get (effect, + "alignment", &alignment, + NULL); + + paint_surface (cr, priv->origin_surface, 0, 0, 0, page_area); + + for (i = 0; i < N_BLINDS; i++) { + cairo_save (cr); + + if (alignment == EV_TRANSITION_ALIGNMENT_HORIZONTAL) { + cairo_rectangle (cr, + 0, + height / N_BLINDS * i, + width, + height / N_BLINDS * progress); + } else { + cairo_rectangle (cr, + width / N_BLINDS * i, + 0, + width / N_BLINDS * progress, + height); + } + + cairo_clip (cr); + paint_surface (cr, priv->dest_surface, 0, 0, 0, page_area); + cairo_restore (cr); + } +} + +static void +ev_transition_animation_box (cairo_t *cr, + EvTransitionAnimation *animation, + EvTransitionEffect *effect, + gdouble progress, + GdkRectangle page_area) +{ + EvTransitionAnimationPriv *priv; + EvTransitionEffectDirection direction; + gint width, height; + + priv = EV_TRANSITION_ANIMATION_GET_PRIVATE (animation); + width = page_area.width; + height = page_area.height; + + g_object_get (effect, + "direction", &direction, + NULL); + + if (direction == EV_TRANSITION_DIRECTION_INWARD) { + paint_surface (cr, priv->dest_surface, 0, 0, 0, page_area); + + cairo_rectangle (cr, + width * progress / 2, + height * progress / 2, + width * (1 - progress), + height * (1 - progress)); + cairo_clip (cr); + + paint_surface (cr, priv->origin_surface, 0, 0, 0, page_area); + } else { + paint_surface (cr, priv->origin_surface, 0, 0, 0, page_area); + + cairo_rectangle (cr, + (width / 2) - (width * progress / 2), + (height / 2) - (height * progress / 2), + width * progress, + height * progress); + cairo_clip (cr); + + paint_surface (cr, priv->dest_surface, 0, 0, 0, page_area); + } +} + +static void +ev_transition_animation_wipe (cairo_t *cr, + EvTransitionAnimation *animation, + EvTransitionEffect *effect, + gdouble progress, + GdkRectangle page_area) +{ + EvTransitionAnimationPriv *priv; + gint width, height; + gint angle; + + priv = EV_TRANSITION_ANIMATION_GET_PRIVATE (animation); + width = page_area.width; + height = page_area.height; + + g_object_get (effect, + "angle", &angle, + NULL); + + paint_surface (cr, priv->origin_surface, 0, 0, 0, page_area); + + if (angle == 0) { + /* left to right */ + cairo_rectangle (cr, + 0, 0, + width * progress, + height); + } else if (angle <= 90) { + /* bottom to top */ + cairo_rectangle (cr, + 0, + height * (1 - progress), + width, + height * progress); + } else if (angle <= 180) { + /* right to left */ + cairo_rectangle (cr, + width * (1 - progress), + 0, + width * progress, + height); + } else if (angle <= 270) { + /* top to bottom */ + cairo_rectangle (cr, + 0, 0, + width, + height * progress); + } + + cairo_clip (cr); + + paint_surface (cr, priv->dest_surface, 0, 0, 0, page_area); +} + +static void +ev_transition_animation_dissolve (cairo_t *cr, + EvTransitionAnimation *animation, + EvTransitionEffect *effect, + gdouble progress, + GdkRectangle page_area) +{ + EvTransitionAnimationPriv *priv; + + priv = EV_TRANSITION_ANIMATION_GET_PRIVATE (animation); + + paint_surface (cr, priv->dest_surface, 0, 0, 0, page_area); + paint_surface (cr, priv->origin_surface, 0, 0, 1 - progress, page_area); +} + +static void +ev_transition_animation_push (cairo_t *cr, + EvTransitionAnimation *animation, + EvTransitionEffect *effect, + gdouble progress, + GdkRectangle page_area) +{ + EvTransitionAnimationPriv *priv; + gint width, height; + gint angle; + + priv = EV_TRANSITION_ANIMATION_GET_PRIVATE (animation); + width = page_area.width; + height = page_area.height; + + g_object_get (effect, + "angle", &angle, + NULL); + + if (angle == 0) { + /* left to right */ + paint_surface (cr, priv->origin_surface, - (width * progress), 0, 0, page_area); + paint_surface (cr, priv->dest_surface, width * (1 - progress), 0, 0, page_area); + } else { + /* top to bottom */ + paint_surface (cr, priv->origin_surface, 0, - (height * progress), 0, page_area); + paint_surface (cr, priv->dest_surface, 0, height * (1 - progress), 0, page_area); + } +} + +static void +ev_transition_animation_cover (cairo_t *cr, + EvTransitionAnimation *animation, + EvTransitionEffect *effect, + gdouble progress, + GdkRectangle page_area) +{ + EvTransitionAnimationPriv *priv; + gint width, height; + gint angle; + + priv = EV_TRANSITION_ANIMATION_GET_PRIVATE (animation); + width = page_area.width; + height = page_area.height; + + g_object_get (effect, + "angle", &angle, + NULL); + + paint_surface (cr, priv->origin_surface, 0, 0, 0, page_area); + + if (angle == 0) { + /* left to right */ + paint_surface (cr, priv->dest_surface, width * (1 - progress), 0, 0, page_area); + } else { + /* top to bottom */ + paint_surface (cr, priv->dest_surface, 0, height * (1 - progress), 0, page_area); + } +} + +static void +ev_transition_animation_uncover (cairo_t *cr, + EvTransitionAnimation *animation, + EvTransitionEffect *effect, + gdouble progress, + GdkRectangle page_area) +{ + EvTransitionAnimationPriv *priv; + gint width, height; + gint angle; + + priv = EV_TRANSITION_ANIMATION_GET_PRIVATE (animation); + width = page_area.width; + height = page_area.height; + + g_object_get (effect, + "angle", &angle, + NULL); + + paint_surface (cr, priv->dest_surface, 0, 0, 0, page_area); + + if (angle == 0) { + /* left to right */ + paint_surface (cr, priv->origin_surface, - (width * progress), 0, 0, page_area); + } else { + /* top to bottom */ + paint_surface (cr, priv->origin_surface, 0, - (height * progress), 0, page_area); + } +} + +static void +ev_transition_animation_fade (cairo_t *cr, + EvTransitionAnimation *animation, + EvTransitionEffect *effect, + gdouble progress, + GdkRectangle page_area) +{ + EvTransitionAnimationPriv *priv; + + priv = EV_TRANSITION_ANIMATION_GET_PRIVATE (animation); + + paint_surface (cr, priv->origin_surface, 0, 0, 0, page_area); + paint_surface (cr, priv->dest_surface, 0, 0, progress, page_area); +} + void ev_transition_animation_paint (EvTransitionAnimation *animation, cairo_t *cr, @@ -311,6 +573,30 @@ ev_transition_animation_paint (EvTransitionAnimation *animation, case EV_TRANSITION_EFFECT_SPLIT: ev_transition_animation_split (cr, animation, priv->effect, progress, page_area); break; + case EV_TRANSITION_EFFECT_BLINDS: + ev_transition_animation_blinds (cr, animation, priv->effect, progress, page_area); + break; + case EV_TRANSITION_EFFECT_BOX: + ev_transition_animation_box (cr, animation, priv->effect, progress, page_area); + break; + case EV_TRANSITION_EFFECT_WIPE: + ev_transition_animation_wipe (cr, animation, priv->effect, progress, page_area); + break; + case EV_TRANSITION_EFFECT_DISSOLVE: + ev_transition_animation_dissolve (cr, animation, priv->effect, progress, page_area); + break; + case EV_TRANSITION_EFFECT_PUSH: + ev_transition_animation_push (cr, animation, priv->effect, progress, page_area); + break; + case EV_TRANSITION_EFFECT_COVER: + ev_transition_animation_cover (cr, animation, priv->effect, progress, page_area); + break; + case EV_TRANSITION_EFFECT_UNCOVER: + ev_transition_animation_uncover (cr, animation, priv->effect, progress, page_area); + break; + case EV_TRANSITION_EFFECT_FADE: + ev_transition_animation_fade (cr, animation, priv->effect, progress, page_area); + break; default: { GEnumValue *enum_value; @@ -382,3 +668,15 @@ ev_transition_animation_set_dest_surface (EvTransitionAnimation *animation, if (priv->origin_surface && priv->dest_surface) ev_timeline_start (EV_TIMELINE (animation)); } + +gboolean +ev_transition_animation_ready (EvTransitionAnimation *animation) +{ + EvTransitionAnimationPriv *priv; + + g_return_val_if_fail (EV_IS_TRANSITION_ANIMATION (animation), FALSE); + + priv = EV_TRANSITION_ANIMATION_GET_PRIVATE (animation); + + return (priv->origin_surface && priv->dest_surface); +}