Trait sourceview5::prelude::RegionExt
source · pub trait RegionExt: IsA<Region> + Sealed + 'static {
// Provided methods
fn add_region(&self, region_to_add: Option<&impl IsA<Region>>) { ... }
fn add_subregion(&self, _start: &TextIter, _end: &TextIter) { ... }
fn bounds(&self) -> Option<(TextIter, TextIter)> { ... }
fn buffer(&self) -> Option<TextBuffer> { ... }
fn start_region_iter(&self) -> RegionIter { ... }
fn intersect_region(
&self,
region2: Option<&impl IsA<Region>>,
) -> Option<Region> { ... }
fn intersect_subregion(
&self,
_start: &TextIter,
_end: &TextIter,
) -> Option<Region> { ... }
fn is_empty(&self) -> bool { ... }
fn subtract_region(&self, region_to_subtract: Option<&impl IsA<Region>>) { ... }
fn subtract_subregion(&self, _start: &TextIter, _end: &TextIter) { ... }
fn to_str(&self) -> Option<GString> { ... }
}
Provided Methods§
sourcefn add_region(&self, region_to_add: Option<&impl IsA<Region>>)
fn add_region(&self, region_to_add: Option<&impl IsA<Region>>)
sourcefn add_subregion(&self, _start: &TextIter, _end: &TextIter)
fn add_subregion(&self, _start: &TextIter, _end: &TextIter)
sourcefn buffer(&self) -> Option<TextBuffer>
fn buffer(&self) -> Option<TextBuffer>
§Returns
the #GtkTextBuffer.
sourcefn start_region_iter(&self) -> RegionIter
fn start_region_iter(&self) -> RegionIter
Initializes a RegionIter
to the first subregion of @self.
If @self is empty, @iter will be initialized to the end iterator.
§Returns
§iter
iterator to initialize to the first subregion.
sourcefn subtract_region(&self, region_to_subtract: Option<&impl IsA<Region>>)
fn subtract_region(&self, region_to_subtract: Option<&impl IsA<Region>>)
sourcefn subtract_subregion(&self, _start: &TextIter, _end: &TextIter)
fn subtract_subregion(&self, _start: &TextIter, _end: &TextIter)
sourcefn to_str(&self) -> Option<GString>
fn to_str(&self) -> Option<GString>
Gets a string represention of @self, for debugging purposes.
The returned string contains the character offsets of the subregions. It doesn’t include a newline character at the end of the string.
§Returns
a string represention of @self. Free with g_free() when no longer needed.
Object Safety§
This trait is not object safe.