![]() |
![]() |
Public Member Functions | |
virtual | ~Text () |
AtkText* | gobj () |
Provides access to the underlying C GObject. | |
const AtkText* | gobj () const |
Provides access to the underlying C GObject. | |
Glib::ustring | get_text (int start_offset, int end_offset) const |
Gets the specified text. | |
gunichar | get_character_at_offset (int offset) const |
Gets the specified text. | |
Glib::ustring | get_text_after_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const |
Gets the specified text. | |
Glib::ustring | get_text_at_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const |
Gets the specified text. | |
Glib::ustring | get_text_before_offset (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) const |
Gets the specified text. | |
int | get_caret_offset () const |
Gets the offset position of the caret (cursor). | |
void | get_character_extents (int offset, int& x, int& y, int& width, int& height, CoordType coords) const |
Given an offset , the x , y , width , and height values are filled appropriately. | |
AttributeSet | get_run_attributes (int offset, int& start_offset, int& end_offset) const |
Creates an Atk::AttributeSet which consists of the attributes explicitly set at the position offset in the text. | |
AttributeSet | get_default_attributes () const |
Creates an Atk::AttributeSet which consists of the default values of attributes for the text. | |
int | get_character_count () const |
Gets the character count. | |
int | get_offset_at_point (int x, int y, CoordType coords) const |
Gets the offset of the character located at coordinates x and y . | |
int | get_n_selections () const |
Gets the number of selected regions. | |
Glib::ustring | get_selection (int selection_num, int& start_offset, int& end_offset) const |
Gets the text from the specified selection. | |
bool | add_selection (int start_offset, int end_offset) |
Adds a selection bounded by the specified offsets. | |
bool | remove_selection (int selection_num) |
Removes the specified selection. | |
bool | set_selection (int selection_num, int start_offset, int end_offset) |
Changes the start and end offset of the specified selection. | |
bool | set_caret_offset (int offset) |
Sets the caret (cursor) position to the specified offset . | |
Glib::SignalProxy2< void, int, int > | signal_text_changed () |
Glib::SignalProxy1< void, int > | signal_text_caret_moved () |
Glib::SignalProxy0<void> | signal_text_selection_changed () |
Glib::SignalProxy0<void> | signal_text_attributes_changed () |
Static Public Member Functions | |
void | add_interface (GType gtype_implementer) |
Protected Member Functions | |
virtual Glib::ustring | get_text_vfunc (int start_offset, int end_offset) |
virtual gunichar | get_character_at_offset_vfunc (int offset) |
virtual Glib::ustring | get_text_after_offset_vfunc (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) |
virtual Glib::ustring | get_text_at_offset_vfunc (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) |
virtual Glib::ustring | get_text_before_offset_vfunc (int offset, TextBoundary boundary_type, int& start_offset, int& end_offset) |
virtual int | get_caret_offset_vfunc () |
virtual void | get_character_extents_vfunc (int offset, int& x, int& y, int& width, int& height, CoordType coords) |
virtual AtkAttributeSet* | get_run_attributes_vfunc (int offset, int& start_offset, int& end_offset) |
virtual AtkAttributeSet* | get_default_attributes_vfunc () |
virtual int | get_character_count_vfunc () |
virtual int | get_offset_at_point_vfunc (int x, int y, CoordType coords) |
virtual int | get_n_selections_vfunc () |
virtual Glib::ustring | get_selection_vfunc (int selection_num, int& start_offset, int& end_offset) |
virtual bool | add_selection_vfunc (int start_offset, int end_offset) |
virtual bool | remove_selection_vfunc (int selection_num) |
virtual bool | set_selection_vfunc (int selection_num, int start_offset, int end_offset) |
virtual bool | set_caret_offset_vfunc (int offset) |
virtual void | on_text_changed (int position, int length) |
virtual void | on_text_caret_moved (int location) |
virtual void | on_text_selection_changed () |
virtual void | on_text_attributes_changed () |
Related Functions | |
(Note that these are not member functions.) | |
Glib::RefPtr<Atk::Text> | wrap (AtkText* object, bool take_copy=false) |
|
|
|
|
|
Adds a selection bounded by the specified offsets.
|
|
|
|
Gets the offset position of the caret (cursor).
|
|
|
|
Gets the specified text.
|
|
|
|
Gets the character count.
|
|
|
|
Given an offset , the x , y , width , and height values are filled appropriately.
|
|
|
|
Creates an Atk::AttributeSet which consists of the default values of attributes for the text. See the enum AtkTextAttribute for types of text attributes that can be returned. Note that other attributes may also be returned.
|
|
|
|
Gets the number of selected regions.
|
|
|
|
Gets the offset of the character located at coordinates x and y . x and y are interpreted as being relative to the screen or this widget's window depending on coords .
|
|
|
|
Creates an Atk::AttributeSet which consists of the attributes explicitly set at the position offset in the text. start_offset and end_offset are set to the start and end of the range around offset where the attributes are invariant. See the enum AtkTextAttribute for types of text attributes that can be returned. Note that other attributes may also be returned.
|
|
|
|
Gets the text from the specified selection.
|
|
|
|
Gets the specified text.
|
|
Gets the specified text. If the boundary_type if ATK_TEXT_BOUNDARY_CHAR the character after the offset is returned. If the boundary_type is ATK_TEXT_BOUNDARY_WORD_START the returned string is from the word start after the offset to the next word start. The returned string will contain the word after the offset if the offset is inside a word or if the offset is not inside a word. If the boundary_type is ATK_TEXT_BOUNDARY_WORD_END the returned string is from the word end at or after the offset to the next work end. The returned string will contain the word after the offset if the offset is inside a word and will contain the word after the word after the offset if the offset is not inside a word. If the boundary type is ATK_TEXT_BOUNDARY_SENTENCE_START the returned string is from the sentence start after the offset to the next sentence start. The returned string will contain the sentence after the offset if the offset is inside a sentence or if the offset is not inside a sentence. If the boundary_type is ATK_TEXT_BOUNDARY_SENTENCE_END the returned string is from the sentence end at or after the offset to the next sentence end. The returned string will contain the sentence after the offset if the offset is inside a sentence and will contain the sentence after the sentence after the offset if the offset is not inside a sentence. If the boundary type is ATK_TEXT_BOUNDARY_LINE_START the returned string is from the line start after the offset to the next line start. If the boundary_type is ATK_TEXT_BOUNDARY_LINE_END the returned string is from the line end at or after the offset to the next line start.
|
|
|
|
Gets the specified text. If the boundary_type if ATK_TEXT_BOUNDARY_CHAR the character at the offset is returned. If the boundary_type is ATK_TEXT_BOUNDARY_WORD_START the returned string is from the word start at or before the offset to the word start after the offset. The returned string will contain the word at the offset if the offset is inside a word and will contain the word before the offset if the offset is not inside a word. If the boundary_type is ATK_TEXT_BOUNDARY_WORD_END the returned string is from the word end before the offset to the word end at or after the offset. The returned string will contain the word at the offset if the offset is inside a word and will contain the word after to the offset if the offset is not inside a word. If the boundary type is ATK_TEXT_BOUNDARY_SENTENCE_START the returned string is from the sentence start at or before the offset to the sentence start after the offset. The returned string will contain the sentence at the offset if the offset is inside a sentence and will contain the sentence before the offset if the offset is not inside a sentence. If the boundary_type is ATK_TEXT_BOUNDARY_SENTENCE_END the returned string is from the sentence end before the offset to the sentence end at or after the offset. The returned string will contain the sentence at the offset if the offset is inside a sentence and will contain the sentence after the offset if the offset is not inside a sentence. If the boundary type is ATK_TEXT_BOUNDARY_LINE_START the returned string is from the line start at or before the offset to the line start after the offset. If the boundary_type is ATK_TEXT_BOUNDARY_LINE_END the returned string is from the line end before the offset to the line end at or after the offset.
|
|
|
|
Gets the specified text. If the boundary_type if ATK_TEXT_BOUNDARY_CHAR the character before the offset is returned. If the boundary_type is ATK_TEXT_BOUNDARY_WORD_START the returned string is from the word start before the word start before the offset to the word start before the offset. The returned string will contain the word before the offset if the offset is inside a word and will contain the word before the word before the offset if the offset is not inside a word. If the boundary_type is ATK_TEXT_BOUNDARY_WORD_END the returned string is from the word end before the word end at or before the offset to the word end at or before the offset. The returned string will contain the word before the offset if the offset is inside a word or if the offset is not inside a word. If the boundary type is ATK_TEXT_BOUNDARY_SENTENCE_START the returned string is from the sentence start before the sentence start before the offset to the sentence start before the offset. The returned string will contain the sentence before the offset if the offset is inside a sentence and will contain the sentence before the sentence before the offset if the offset is not inside a sentence. If the boundary_type is ATK_TEXT_BOUNDARY_SENTENCE_END the returned string is from the sentence end before the sentence end at or before the offset to the sentence end at or before the offset. The returned string will contain the sentence before the offset if the offset is inside a sentence or if the offset is not inside a sentence. If the boundary type is ATK_TEXT_BOUNDARY_LINE_START the returned string is from the line start before the line start ar or before the offset to the line start ar or before the offset. If the boundary_type is ATK_TEXT_BOUNDARY_LINE_END the returned string is from the line end before the line end before the offset to the line end before the offset.
|
|
|
|
|
|
Provides access to the underlying C GObject.
Reimplemented from Glib::Interface. Reimplemented in Atk::NoOpObject. |
|
Provides access to the underlying C GObject.
Reimplemented from Glib::Interface. Reimplemented in Atk::NoOpObject. |
|
|
|
|
|
|
|
|
|
Removes the specified selection.
|
|
|
|
Sets the caret (cursor) position to the specified offset .
|
|
|
|
Changes the start and end offset of the specified selection.
|
|
|
|
|
|
|
|
|
|
|
|
|