pangomm 2.46.4
Pango::AttrList Class Reference

A Pango::AttrList represents a list of attributes that apply to a section of text. More...

#include <pangomm/attrlist.h>

Public Member Functions

 AttrList ()
 
 AttrList (PangoAttrList * gobject, bool make_a_copy=true)
 
 AttrList (const AttrList & other)
 
AttrListoperator= (const AttrList & other)
 
 AttrList (AttrList && other) noexcept
 
AttrListoperator= (AttrList && other) noexcept
 
 ~AttrList () noexcept
 
void swap (AttrList & other) noexcept
 
PangoAttrList * gobj ()
 Provides access to the underlying C instance.
 
const PangoAttrList * gobj () const
 Provides access to the underlying C instance.
 
PangoAttrList * gobj_copy () const
 Provides access to the underlying C instance. The caller is responsible for freeing it. Use when directly setting fields in structs.
 
 AttrList (const Glib::ustring & markup_text, gunichar accel_marker=0)
 Constructs an attribute list by parsing a marked-up text (see markup format).
 
 AttrList (const Glib::ustring & markup_text, gunichar accel_marker, Glib::ustring & text, gunichar & accel_char)
 Constructs an attribute list by parsing a marked-up text (see markup format).
 
 operator bool ()
 
 operator bool () const
 Tests whether the AttrList is valid.
 
void insert (Attribute & attr)
 
void insert_before (Attribute & attr)
 
void change (Attribute & attr)
 
void splice (AttrList & other, int pos, int len)
 This function opens up a hole in list, fills it in with attributes from the left, and then merges other on top of the hole.
 
AttrIter get_iter ()
 Create a iterator initialized to the beginning of the list.
 

Static Public Member Functions

static GType get_type ()
 Get the GType for this class, for use with the underlying GObject type system.
 

Protected Attributes

PangoAttrList * gobject_
 

Related Symbols

(Note that these are not member symbols.)

void swap (AttrList & lhs, AttrList & rhs) noexcept
 
Pango::AttrList wrap (PangoAttrList * object, bool take_copy=false)
 A Glib::wrap() method for this object.
 

Detailed Description

A Pango::AttrList represents a list of attributes that apply to a section of text.

The attributes are, in general, allowed to overlap in an arbitrary fashion, however, if the attributes are manipulated only through Pango::AttrList::change(), the overlap between properties will meet stricter criteria.

Since the Pango::AttrList structure is stored as a linear list, it is not suitable for storing attributes for large amounts of text. In general, you should not use a single Pango::AttrList for more than one paragraph of text.

When obtaining an AttrList, you should check that it is valid. For instance, if(attrlist).

Constructor & Destructor Documentation

◆ AttrList() [1/6]

Pango::AttrList::AttrList ( )

◆ AttrList() [2/6]

Pango::AttrList::AttrList ( PangoAttrList * gobject,
bool make_a_copy = true )
explicit

◆ AttrList() [3/6]

Pango::AttrList::AttrList ( const AttrList & other)

◆ AttrList() [4/6]

Pango::AttrList::AttrList ( AttrList && other)
noexcept

◆ ~AttrList()

Pango::AttrList::~AttrList ( )
noexcept

◆ AttrList() [5/6]

Pango::AttrList::AttrList ( const Glib::ustring & markup_text,
gunichar accel_marker = 0 )
explicit

Constructs an attribute list by parsing a marked-up text (see markup format).

If accel_marker is nonzero, the given character will mark the character following it as an accelerator. For example, the accel marker might be an ampersand or underscore. All characters marked as an accelerator will receive a Pango::UNDERLINE_LOW attribute. Two accel_marker characters following each other produce a single literal accel_marker character.

Parameters
markup_textMarkup to parse (see markup format).
accel_markerCharacter that precedes an accelerator, or 0 for none.

◆ AttrList() [6/6]

Pango::AttrList::AttrList ( const Glib::ustring & markup_text,
gunichar accel_marker,
Glib::ustring & text,
gunichar & accel_char )

Constructs an attribute list by parsing a marked-up text (see markup format).

text is set to the plaintext string. If accel_marker is nonzero, the given character will mark the character following it as an accelerator. For example, the accel marker might be an ampersand or underscore. All characters marked as an accelerator will receive a Pango::UNDERLINE_LOW attribute. The first character so marked will be returned in accel_char. Two accel_marker characters following each other produce a single literal accel_marker character.

Parameters
markup_textMarkup to parse (see markup format).
accel_markerCharacter that precedes an accelerator, or 0 for none.
textReturn location for text with tags stripped.
accel_charReturn location for accelerator char.

Member Function Documentation

◆ change()

void Pango::AttrList::change ( Attribute & attr)

◆ get_iter()

AttrIter Pango::AttrList::get_iter ( )

Create a iterator initialized to the beginning of the list.

list must not be modified until this iterator is freed.

Returns
The newly allocated Pango::AttrIterator, which should be freed with Pango::AttrIterator::destroy().

◆ get_type()

static GType Pango::AttrList::get_type ( )
static

Get the GType for this class, for use with the underlying GObject type system.

◆ gobj() [1/2]

PangoAttrList * Pango::AttrList::gobj ( )
inline

Provides access to the underlying C instance.

◆ gobj() [2/2]

const PangoAttrList * Pango::AttrList::gobj ( ) const
inline

Provides access to the underlying C instance.

◆ gobj_copy()

PangoAttrList * Pango::AttrList::gobj_copy ( ) const

Provides access to the underlying C instance. The caller is responsible for freeing it. Use when directly setting fields in structs.

◆ insert()

void Pango::AttrList::insert ( Attribute & attr)

◆ insert_before()

void Pango::AttrList::insert_before ( Attribute & attr)

◆ operator bool() [1/2]

Pango::AttrList::operator bool ( )
explicit
Deprecated
Use the const version

◆ operator bool() [2/2]

Pango::AttrList::operator bool ( ) const
explicit

Tests whether the AttrList is valid.

◆ operator=() [1/2]

AttrList & Pango::AttrList::operator= ( AttrList && other)
noexcept

◆ operator=() [2/2]

AttrList & Pango::AttrList::operator= ( const AttrList & other)

◆ splice()

void Pango::AttrList::splice ( AttrList & other,
int pos,
int len )

This function opens up a hole in list, fills it in with attributes from the left, and then merges other on top of the hole.

This operation is equivalent to stretching every attribute that applies at position pos in list by an amount len, and then calling change() with a copy of each attribute in other in sequence (offset in position by pos).

This operation proves useful for, for instance, inserting a pre-edit string in the middle of an edit buffer.

Parameters
otherAnother Pango::AttrList.
posThe position in list at which to insert other.
lenThe length of the spliced segment. (Note that this must be specified since the attributes in other may only be present at some subsection of this range).

◆ swap()

void Pango::AttrList::swap ( AttrList & other)
noexcept

Friends And Related Symbol Documentation

◆ swap()

void swap ( AttrList & lhs,
AttrList & rhs )
related
Parameters
lhsThe left-hand side
rhsThe right-hand side

◆ wrap()

Pango::AttrList wrap ( PangoAttrList * object,
bool take_copy = false )
related

A Glib::wrap() method for this object.

Parameters
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
Returns
A C++ instance that wraps this C instance.

Member Data Documentation

◆ gobject_

PangoAttrList* Pango::AttrList::gobject_
protected