Hot Door CORE 0.8.2
Adobe® Illustrator® Plug-in Library
Loading...
Searching...
No Matches
hdicoreTextCharStyleSet.h
Go to the documentation of this file.
1
7#ifndef __HDI_CORE_TEXT_CHAR_STYLE_SET__
8#define __HDI_CORE_TEXT_CHAR_STYLE_SET__
9
10#if defined(HDI_CORE_AIP_MODE)
11
12#include "hdicoreTypes.h"
13
14namespace hdi
15{
16 namespace aip
17 {
18 class TextCharStyleSet;
19 }
20
21 namespace core
22 {
23 class TextCharStyle;
24 class TextRange;
25
27 {
28 public:
41 {
42 public:
50 Iterator(const Iterator& iter_);
51
58
68 Iterator& operator=(const Iterator& iter_);
69
78 bool operator==(const Iterator& iter_) const;
79
88 bool operator!=(const Iterator& iter_) const;
89
98
107
116
125
134 bool atEnd() const;
135
144 std::unique_ptr<TextCharStyle> style() const;
145
146
147 private:
148 // Only TextCharStyleSet can construct a new Iterator object
149 friend class TextCharStyleSet;
150
154 void* __data;
155
161 Iterator();
162
170 explicit Iterator(const TextCharStyleSet& set_);
171 };
172
173 typedef std::unique_ptr<Iterator> IteratorUP;
174 typedef std::shared_ptr<Iterator> IteratorSP;
175 typedef std::weak_ptr<Iterator> IteratorWP;
176
187
196
203
210
219 virtual bool operator==(const TextCharStyleSet& rhs_) const;
220
229 virtual bool operator!=(const TextCharStyleSet& rhs_) const;
230
242 virtual std::unique_ptr<ATE::ICharStyles> ateCharStyleSet() const;
243
253 virtual bool isEmpty() const;
254
262 virtual int32_t size() const;
263
279 virtual Iterator begin() const;
280
286 virtual void showAllStyles() const;
287
293 virtual void showOnlyUnreferencedStyles() const;
294
302 virtual void showOnlyStylesReferencedIn(const TextRange& range_);
303
312 virtual void moveStyleTo(const TextCharStyle& style_, const int32_t pos_);
313
314
315 private:
316 friend aip::TextCharStyleSet* __accessImpl(const TextCharStyleSet&);
317 friend TextCharStyleSet __accessCtor(const aip::TextCharStyleSet&);
318
322 aip::TextCharStyleSet* __impl;
323
329 TextCharStyleSet(const aip::TextCharStyleSet&);
330 };
331
332 typedef std::unique_ptr<TextCharStyleSet> TextCharStyleSetUP;
333 typedef std::shared_ptr<TextCharStyleSet> TextCharStyleSetSP;
334 typedef std::weak_ptr<TextCharStyleSet> TextCharStyleSetWP;
335
336 extern aip::TextCharStyleSet* __accessImpl(const TextCharStyleSet&);
337 extern TextCharStyleSet __accessCtor(const aip::TextCharStyleSet&);
338 }
339}
340
341#endif
342// HDI_CORE_AIP_MODE
343
344#endif
345// __HDI_CORE_TEXT_CHAR_STYLE_SET__
Definition: hdicoreTextCharStyle.h:26
Allows for iteration through the children of a character style set, a la std::vector iteration.
Definition: hdicoreTextCharStyleSet.h:41
std::unique_ptr< TextCharStyle > style() const
Gets the current paragraph style pointed to by the iterator.
Iterator operator++(int)
Postfix increment operator for forward iteration.
~Iterator()
Destructs an Iterator object.
Iterator & operator--()
Prefix decrement operator for reverse iteration.
bool atEnd() const
Determines whether iteration should stop; works well as the conditional in a for() loop.
bool operator!=(const Iterator &iter_) const
Tests whether a given Iterator object is not the same as another.
Iterator operator--(int)
Postfix decrement operator for reverse iteration.
Iterator(const Iterator &iter_)
Constructs an Iterator object from an existing Iterator object (copy constructor)
bool operator==(const Iterator &iter_) const
Tests whether a given Iterator object is the same as another.
Iterator & operator++()
Prefix increment operator for forward iteration.
Iterator & operator=(const Iterator &iter_)
Assigns one Iterator object to another.
Definition: hdicoreTextCharStyleSet.h:27
TextCharStyleSet()
Creates a new TextCharStyleSet object.
virtual TextCharStyleSet & operator=(const TextCharStyleSet &rhs_)
Overloaded assignment operator for TextCharStyleSet objects.
virtual bool operator==(const TextCharStyleSet &rhs_) const
Tests whether a given TextCharStyleSet object is the same as another.
virtual std::unique_ptr< ATE::ICharStyles > ateCharStyleSet() const
Gets the ATE char style set ref around which the target object is wrapped.
virtual Iterator begin() const
Gets an iterator for the set.
virtual ~TextCharStyleSet()
Destructs a TextCharStyleSet object.
virtual bool isEmpty() const
Gets whether the target TextCharStyleSet object is empty.
virtual bool operator!=(const TextCharStyleSet &rhs_) const
Tests whether a given TextCharStyleSet object is not the same as another.
TextCharStyleSet(const TextCharStyleSet &css_)
TextCharStyleSet copy constructor.
virtual void showOnlyUnreferencedStyles() const
Shows only styles to which there are not references in text.
virtual void showAllStyles() const
Shows all char styles.
virtual int32_t size() const
Gets the count of the contained char styles.
virtual void showOnlyStylesReferencedIn(const TextRange &range_)
Shows only styles that are used in the given text range.
virtual void moveStyleTo(const TextCharStyle &style_, const int32_t pos_)
Reorders styles in this set by moving a style to a given position.
Allows for easy manipulation of Illustrator text ranges.
Definition: hdicoreTextRange.h:41
Header file for a wide variety of necessary typedefs, enums, and forwards declarations.