7#ifndef __HDI_CORE_TEXT_CHAR_STYLE_SET__ 
    8#define __HDI_CORE_TEXT_CHAR_STYLE_SET__ 
   10#if defined(HDI_CORE_AIP_MODE) 
   18        class TextCharStyleSet;
 
  144                        std::unique_ptr<TextCharStyle> 
style() 
const;
 
  173                typedef std::unique_ptr<Iterator> IteratorUP;
 
  174                typedef std::shared_ptr<Iterator> IteratorSP;
 
  175                typedef std::weak_ptr<Iterator> IteratorWP;
 
  322                aip::TextCharStyleSet* __impl;
 
  332        typedef std::unique_ptr<TextCharStyleSet> TextCharStyleSetUP;
 
  333        typedef std::shared_ptr<TextCharStyleSet> TextCharStyleSetSP;
 
  334        typedef std::weak_ptr<TextCharStyleSet> TextCharStyleSetWP;
 
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.