summaryrefslogtreecommitdiff
path: root/slideshow/source/inc/transitioninfo.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/inc/transitioninfo.hxx')
-rw-r--r--slideshow/source/inc/transitioninfo.hxx52
1 files changed, 26 insertions, 26 deletions
diff --git a/slideshow/source/inc/transitioninfo.hxx b/slideshow/source/inc/transitioninfo.hxx
index bc0076c7aff1..95129db49c56 100644
--- a/slideshow/source/inc/transitioninfo.hxx
+++ b/slideshow/source/inc/transitioninfo.hxx
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -35,47 +35,47 @@ namespace slideshow {
namespace internal {
struct TransitionInfo
-{
+{
// the following two member serve as the search key
// for an incoming XTransitionFilter node
//
// {
-
+
sal_Int16 mnTransitionType;
sal_Int16 mnTransitionSubType;
-
+
// }
//
-
+
/** This enum classifies a transition type
*/
enum TransitionClass
- {
+ {
/// Invalid type
TRANSITION_INVALID,
-
+
/// Transition expressed by parametric clip polygon
TRANSITION_CLIP_POLYPOLYGON,
-
+
/// Transition expressed by hand-crafted function
TRANSITION_SPECIAL
};
-
+
/// class of effect handling
TransitionClass meTransitionClass;
-
+
/// Rotation angle of clip polygon
double mnRotationAngle;
-
+
/// X scaling of clip polygon (negative values mirror)
double mnScaleX;
-
+
/// Y scaling of clip polygon (negative values mirror)
double mnScaleY;
-
+
/** This enum determines the method how to reverse
a parametric clip polygon transition.
-
+
A reversed transition runs in the geometrically
opposite direction. For a left-to-right bar wipe, the
reversed transition is a right-to-left wipe, whereas
@@ -89,39 +89,39 @@ struct TransitionInfo
(if it has no sensible meaning for this transition)
*/
REVERSEMETHOD_IGNORE,
-
+
/** Revert by changing the direction of the parameter sweep
(from 1->0 instead of 0->1)
*/
REVERSEMETHOD_INVERT_SWEEP,
-
+
/** Revert by subtracting the generated polygon from the
target bound rect
*/
REVERSEMETHOD_SUBTRACT_POLYGON,
-
+
/** Combination of REVERSEMETHOD_INVERT_SWEEP and
REVERSEMETHOD_SUBTRACT_POLYGON.
*/
REVERSEMETHOD_SUBTRACT_AND_INVERT,
-
+
/// Reverse by rotating polygon 180 degrees
REVERSEMETHOD_ROTATE_180,
-
+
/// Reverse by flipping polygon at the y (!) axis
REVERSEMETHOD_FLIP_X,
-
+
/// Reverse by flipping polygon at the x (!) axis
REVERSEMETHOD_FLIP_Y
};
-
+
/** Indicating the method to use when transition
should be 'reversed'.
-
+
@see ReverseMethod
*/
ReverseMethod meReverseMethod;
-
+
/** When true, transition 'out' effects are realized
by inverting the parameter sweep direction (1->0
instead of 0->1). Otherwise, 'out' effects are
@@ -129,14 +129,14 @@ struct TransitionInfo
the parametric poly-polygon.
*/
bool mbOutInvertsSweep;
-
+
/** when true, scale clip polygon isotrophically to
target size. when false, scale is
anisotrophically.
*/
bool mbScaleIsotrophically;
-
-
+
+
/// Compare against type and subtype
class Comparator
{