gtkmm 4.16.0
|
Typedefed as Gtk::TextBuffer::TagTable. More...
#include <gtkmm/texttagtable.h>
Public Types | |
typedef sigc::slot< void(const Glib::RefPtr< TextTag > &)> | SlotForEach |
Public Member Functions | |
TextTagTable (TextTagTable &&src) noexcept | |
TextTagTable & | operator= (TextTagTable &&src) noexcept |
~TextTagTable () noexcept override | |
GtkTextTagTable * | gobj () |
Provides access to the underlying C GObject. | |
const GtkTextTagTable * | gobj () const |
Provides access to the underlying C GObject. | |
GtkTextTagTable * | gobj_copy () |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. | |
bool | add (const Glib::RefPtr< TextTag > &tag) |
Add a tag to the table. | |
void | remove (const Glib::RefPtr< TextTag > &tag) |
Remove a tag from the table. | |
Glib::RefPtr< TextTag > | lookup (const Glib::ustring & name) |
Look up a named tag. | |
Glib::RefPtr< const TextTag > | lookup (const Glib::ustring & name) const |
Look up a named tag. | |
void | foreach (const SlotForEach &slot) |
int | get_size () const |
Returns the size of the table (number of tags) | |
Glib::SignalProxy< void(const Glib::RefPtr< TextTag > &, bool)> | signal_tag_changed () |
Glib::SignalProxy< void(const Glib::RefPtr< TextTag > &)> | signal_tag_added () |
Glib::SignalProxy< void(const Glib::RefPtr< TextTag > &)> | signal_tag_removed () |
![]() | |
Buildable (Buildable &&src) noexcept | |
Buildable & | operator= (Buildable &&src) noexcept |
~Buildable () noexcept override | |
GtkBuildable * | gobj () |
Provides access to the underlying C GObject. | |
const GtkBuildable * | gobj () const |
Provides access to the underlying C GObject. | |
Glib::ustring | get_buildable_id () const |
Gets the ID of the buildable object. | |
Static Public Member Functions | |
static GType | get_type () |
Get the GType for this class, for use with the underlying GObject type system. | |
static Glib::RefPtr< TextTagTable > | create () |
![]() | |
static void | add_interface (GType gtype_implementer) |
static GType | get_type () |
Get the GType for this class, for use with the underlying GObject type system. | |
Protected Member Functions | |
TextTagTable () | |
![]() | |
Buildable () | |
You should derive from this class to use it. | |
Related Symbols | |
(Note that these are not member symbols.) | |
Glib::RefPtr< Gtk::TextTagTable > | wrap (GtkTextTagTable *object, bool take_copy=false) |
A Glib::wrap() method for this object. | |
![]() | |
Glib::RefPtr< Gtk::Buildable > | wrap (GtkBuildable *object, bool take_copy=false) |
A Glib::wrap() method for this object. | |
Typedefed as Gtk::TextBuffer::TagTable.
A Collection of Gtk::TextBuffer::Tags that can be used together.
A tag table defines a set of Gtk::TextBuffer::Tags that can be used together. Each buffer has one tag table associated with it; only tags from that tag table can be used with the buffer. A single tag table can be shared between multiple buffers, however.
typedef sigc::slot<void(const Glib::RefPtr<TextTag>&)> Gtk::TextTagTable::SlotForEach |
|
noexcept |
|
overridenoexcept |
|
protected |
Add a tag to the table.
The tag is assigned the highest priority in the table.
tag must not be in a tag table already, and may not have the same name as an already-added tag.
tag | A Gtk::TextTag . |
true
on success.
|
static |
void Gtk::TextTagTable::foreach | ( | const SlotForEach & | slot | ) |
int Gtk::TextTagTable::get_size | ( | ) | const |
Returns the size of the table (number of tags)
|
static |
Get the GType for this class, for use with the underlying GObject type system.
|
inline |
Provides access to the underlying C GObject.
|
inline |
Provides access to the underlying C GObject.
GtkTextTagTable * Gtk::TextTagTable::gobj_copy | ( | ) |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
Look up a named tag.
name | Name of a tag. |
Look up a named tag.
name | Name of a tag. |
|
noexcept |
Remove a tag from the table.
If a Gtk::TextBuffer
has table as its tag table, the tag is removed from the buffer. The table’s reference to the tag is removed, so the tag will end up destroyed if you don’t have a reference to it.
tag | A Gtk::TextTag . |
void on_my_tag_added(const Glib::RefPtr<TextTag>& tag)
Flags: Run Last
Emitted every time a new tag is added in the Gtk::TextTagTable
.
tag | The added tag. |
Glib::SignalProxy< void(const Glib::RefPtr< TextTag > &, bool)> Gtk::TextTagTable::signal_tag_changed | ( | ) |
void on_my_tag_changed(const Glib::RefPtr<TextTag>& tag, bool size_changed)
Flags: Run Last
Emitted every time a tag in the Gtk::TextTagTable
changes.
tag | The changed tag. |
size_changed | Whether the change affects the Gtk::TextView layout. |
void on_my_tag_removed(const Glib::RefPtr<TextTag>& tag)
Flags: Run Last
Emitted every time a tag is removed from the Gtk::TextTagTable
.
The tag is still valid by the time the signal is emitted, but it is not associated with a tag table any more.
tag | The removed tag. |
|
related |
A Glib::wrap() method for this object.
object | The C instance. |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |