Searched defs:TextAttributes (Results 1 – 1 of 1) sorted by relevance
3662 struct TextAttributes { struct3663 TextAttributes() in TextAttributes() function3670 … TextAttributes& setInitialIndent( std::size_t _value ) { initialIndent = _value; return *this; } in setInitialIndent()3671 TextAttributes& setIndent( std::size_t _value ) { indent = _value; return *this; } in setIndent()3672 TextAttributes& setWidth( std::size_t _value ) { width = _value; return *this; } in setWidth()3673 TextAttributes& setTabChar( char _value ) { tabChar = _value; return *this; } in setTabChar()3675 std::size_t initialIndent; // indent of first line, or npos3676 std::size_t indent; // indent of subsequent lines, or all if initialIndent is npos3677 … std::size_t width; // maximum width of text, including indent. Longer text will wrap3678 char tabChar; // If this char is seen the indent is changed to current pos[all …]