diff options
author | matteocam <matteo.campanelli@gmail.com> | 2015-09-07 11:37:27 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2015-09-20 13:05:15 +0200 |
commit | aa77b170cb8aee744aa207f5b1ecfdd0bc0e90e2 (patch) | |
tree | f4cd747a95d4b3684e3a1307278ad7d6241a085d /include | |
parent | e910e775cf9982b6e14df2630ca21026efe09d65 (diff) |
chained editeng: Add chaining attributes and chaining primitive creation logic
Change-Id: I957d5261dd847fe5e950441585e879cfd5ae2fb2
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/sdr/attribute/sdrtextattribute.hxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/svx/sdr/attribute/sdrtextattribute.hxx b/include/svx/sdr/attribute/sdrtextattribute.hxx index 66e3e7ace384..7d5de1d7bc04 100644 --- a/include/svx/sdr/attribute/sdrtextattribute.hxx +++ b/include/svx/sdr/attribute/sdrtextattribute.hxx @@ -76,7 +76,10 @@ namespace drawinglayer bool bScroll, bool bInEditMode, bool bFixedCellHeight, - bool bWrongSpell); + bool bWrongSpell, + bool bToBeChained, + bool bChainable); + SdrTextAttribute(); SdrTextAttribute(const SdrTextAttribute& rCandidate); SdrTextAttribute& operator=(const SdrTextAttribute& rCandidate); @@ -107,6 +110,10 @@ namespace drawinglayer SdrTextHorzAdjust getSdrTextHorzAdjust() const; SdrTextVertAdjust getSdrTextVertAdjust() const; + bool isToBeChained() const; + bool isChainable() const; + + // helpers: animation timing generators void getBlinkTextTiming( drawinglayer::animation::AnimationEntryList& rAnimList) const; |