diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-10-15 14:06:53 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-10-22 18:07:30 -0400 |
commit | ec1b82e682ac613fe6de78a733ed3a00094a946f (patch) | |
tree | e00979eeaa17ad123c9892d79f1336728ccd8886 | |
parent | c3513475e549581b8d535975bf84acf8c788d469 (diff) |
Describe text animation types.
Change-Id: I4f878eff707e318fa80b7d3c19833bf724e4bcef
-rw-r--r-- | include/svx/sdtakitm.hxx | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/include/svx/sdtakitm.hxx b/include/svx/sdtakitm.hxx index fc0730fb778b..2b944865673c 100644 --- a/include/svx/sdtakitm.hxx +++ b/include/svx/sdtakitm.hxx @@ -23,15 +23,16 @@ #include <svx/svddef.hxx> #include <svx/svxdllapi.h> - -// class SdrTextAniKindItem - - -enum SdrTextAniKind {SDRTEXTANI_NONE, - SDRTEXTANI_BLINK, - SDRTEXTANI_SCROLL, - SDRTEXTANI_ALTERNATE, - SDRTEXTANI_SLIDE}; +/** + * Animation type for text frame. + */ +enum SdrTextAniKind { + SDRTEXTANI_NONE, /// no animation + SDRTEXTANI_BLINK, /// blinking + SDRTEXTANI_SCROLL, /// scroll through + SDRTEXTANI_ALTERNATE, /// scroll back and forth + SDRTEXTANI_SLIDE /// scroll in +}; // - SDRTEXTANI_BLINK: // Just blink. Direction and Amount don't effect things. |