Trait sourceview5::prelude::GutterRendererExt
source · pub trait GutterRendererExt: IsA<GutterRenderer> + Sealed + 'static {
Show 26 methods
// Provided methods
fn activate(
&self,
iter: &TextIter,
area: &Rectangle,
button: u32,
state: ModifierType,
n_presses: i32,
) { ... }
fn align_cell(&self, line: u32, width: f32, height: f32) -> (f32, f32) { ... }
fn alignment_mode(&self) -> GutterRendererAlignmentMode { ... }
fn buffer(&self) -> Option<Buffer> { ... }
fn view(&self) -> View { ... }
fn xalign(&self) -> f32 { ... }
fn xpad(&self) -> i32 { ... }
fn yalign(&self) -> f32 { ... }
fn ypad(&self) -> i32 { ... }
fn query_activatable(&self, iter: &TextIter, area: &Rectangle) -> bool { ... }
fn set_alignment_mode(&self, mode: GutterRendererAlignmentMode) { ... }
fn set_xalign(&self, xalign: f32) { ... }
fn set_xpad(&self, xpad: i32) { ... }
fn set_yalign(&self, yalign: f32) { ... }
fn set_ypad(&self, ypad: i32) { ... }
fn lines(&self) -> Option<GutterLines> { ... }
fn connect_activate<F: Fn(&Self, &TextIter, &Rectangle, u32, ModifierType, i32) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_query_activatable<F: Fn(&Self, &TextIter, &Rectangle) -> bool + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_query_data<F: Fn(&Self, &Object, u32) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_alignment_mode_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_lines_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_view_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_xalign_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_xpad_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_yalign_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_ypad_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Expand description
Trait containing all GutterRenderer
methods.
§Implementors
Provided Methods§
sourcefn activate(
&self,
iter: &TextIter,
area: &Rectangle,
button: u32,
state: ModifierType,
n_presses: i32,
)
fn activate( &self, iter: &TextIter, area: &Rectangle, button: u32, state: ModifierType, n_presses: i32, )
Emits the activate
signal of the renderer. This is
called from Gutter
and should never have to be called manually.
§iter
a #GtkTextIter at the start of the line where the renderer is activated
§area
a #GdkRectangle of the cell area where the renderer is activated
§button
the button that was pressed
§state
a #GdkModifierType
§n_presses
the number of button presses
sourcefn align_cell(&self, line: u32, width: f32, height: f32) -> (f32, f32)
fn align_cell(&self, line: u32, width: f32, height: f32) -> (f32, f32)
Locates where to render content that is @width x @height based on the renderers alignment and padding.
The location will be placed into @x and @y and is relative to the renderer’s coordinates.
It is encouraged that renderers use this function when snappshotting to ensure consistent placement of their contents.
§line
the line number for content
§width
the width of the content to draw
§height
the height of the content to draw
§Returns
§x
the X position to render the content
§y
the Y position to render the content
sourcefn alignment_mode(&self) -> GutterRendererAlignmentMode
fn alignment_mode(&self) -> GutterRendererAlignmentMode
sourcefn xalign(&self) -> f32
fn xalign(&self) -> f32
Gets the xalign
property.
This may be used to adjust where within the cell rectangle the renderer will draw.
sourcefn xpad(&self) -> i32
fn xpad(&self) -> i32
Gets the xpad
property.
This may be used to adjust the cell rectangle that the renderer will use to draw.
sourcefn yalign(&self) -> f32
fn yalign(&self) -> f32
Gets the yalign
property.
This may be used to adjust where within the cell rectangle the renderer will draw.
sourcefn ypad(&self) -> i32
fn ypad(&self) -> i32
Gets the ypad
property.
This may be used to adjust the cell rectangle that the renderer will use to draw.
sourcefn query_activatable(&self, iter: &TextIter, area: &Rectangle) -> bool
fn query_activatable(&self, iter: &TextIter, area: &Rectangle) -> bool
sourcefn set_alignment_mode(&self, mode: GutterRendererAlignmentMode)
fn set_alignment_mode(&self, mode: GutterRendererAlignmentMode)
sourcefn set_xalign(&self, xalign: f32)
fn set_xalign(&self, xalign: f32)
Adjusts the xalign
property.
This may be used to adjust where within the cell rectangle the renderer will draw.
§xalign
the Y padding for the drawing cell
sourcefn set_xpad(&self, xpad: i32)
fn set_xpad(&self, xpad: i32)
Adjusts the xpad
property.
This may be used to adjust the cell rectangle that the renderer will use to draw.
§xpad
the Y padding for the drawing cell
sourcefn set_yalign(&self, yalign: f32)
fn set_yalign(&self, yalign: f32)
Adjusts the yalign
property.
This may be used to adjust where within the cell rectangle the renderer will draw.
§yalign
the Y padding for the drawing cell
sourcefn set_ypad(&self, ypad: i32)
fn set_ypad(&self, ypad: i32)
Adjusts the ypad
property.
This may be used to adjust the cell rectangle that the renderer will use to draw.
§ypad
the Y padding for the drawing cell
sourcefn lines(&self) -> Option<GutterLines>
fn lines(&self) -> Option<GutterLines>
Contains information about the lines to be rendered.
It should be used by #GtkSourceGutterRenderer implementations from WidgetImpl::snapshot()
.