Trait sourceview5::prelude::CellAreaExt
source · pub trait CellAreaExt: IsA<CellArea> + Sealed + 'static {
Show 44 methods
// Provided methods
fn activate(
&self,
context: &impl IsA<CellAreaContext>,
widget: &impl IsA<Widget>,
cell_area: &Rectangle,
flags: CellRendererState,
edit_only: bool,
) -> bool { ... }
fn activate_cell(
&self,
widget: &impl IsA<Widget>,
renderer: &impl IsA<CellRenderer>,
event: impl AsRef<Event>,
cell_area: &Rectangle,
flags: CellRendererState,
) -> bool { ... }
fn add(&self, renderer: &impl IsA<CellRenderer>) { ... }
fn add_focus_sibling(
&self,
renderer: &impl IsA<CellRenderer>,
sibling: &impl IsA<CellRenderer>,
) { ... }
fn apply_attributes(
&self,
tree_model: &impl IsA<TreeModel>,
iter: &TreeIter,
is_expander: bool,
is_expanded: bool,
) { ... }
fn attribute_connect(
&self,
renderer: &impl IsA<CellRenderer>,
attribute: &str,
column: i32,
) { ... }
fn attribute_disconnect(
&self,
renderer: &impl IsA<CellRenderer>,
attribute: &str,
) { ... }
fn attribute_get_column(
&self,
renderer: &impl IsA<CellRenderer>,
attribute: &str,
) -> i32 { ... }
fn copy_context(
&self,
context: &impl IsA<CellAreaContext>,
) -> CellAreaContext { ... }
fn create_context(&self) -> CellAreaContext { ... }
fn event(
&self,
context: &impl IsA<CellAreaContext>,
widget: &impl IsA<Widget>,
event: impl AsRef<Event>,
cell_area: &Rectangle,
flags: CellRendererState,
) -> i32 { ... }
fn focus(&self, direction: DirectionType) -> bool { ... }
fn foreach<P>(&self, callback: P)
where P: FnMut(&CellRenderer) -> bool { ... }
fn foreach_alloc<P>(
&self,
context: &impl IsA<CellAreaContext>,
widget: &impl IsA<Widget>,
cell_area: &Rectangle,
background_area: &Rectangle,
callback: P,
)
where P: FnMut(&CellRenderer, &Rectangle, &Rectangle) -> bool { ... }
fn cell_allocation(
&self,
context: &impl IsA<CellAreaContext>,
widget: &impl IsA<Widget>,
renderer: &impl IsA<CellRenderer>,
cell_area: &Rectangle,
) -> Rectangle { ... }
fn cell_at_position(
&self,
context: &impl IsA<CellAreaContext>,
widget: &impl IsA<Widget>,
cell_area: &Rectangle,
x: i32,
y: i32,
) -> (CellRenderer, Rectangle) { ... }
fn current_path_string(&self) -> GString { ... }
fn edit_widget(&self) -> Option<CellEditable> { ... }
fn edited_cell(&self) -> Option<CellRenderer> { ... }
fn focus_cell(&self) -> Option<CellRenderer> { ... }
fn focus_from_sibling(
&self,
renderer: &impl IsA<CellRenderer>,
) -> Option<CellRenderer> { ... }
fn focus_siblings(
&self,
renderer: &impl IsA<CellRenderer>,
) -> Vec<CellRenderer> { ... }
fn preferred_height(
&self,
context: &impl IsA<CellAreaContext>,
widget: &impl IsA<Widget>,
) -> (i32, i32) { ... }
fn preferred_height_for_width(
&self,
context: &impl IsA<CellAreaContext>,
widget: &impl IsA<Widget>,
width: i32,
) -> (i32, i32) { ... }
fn preferred_width(
&self,
context: &impl IsA<CellAreaContext>,
widget: &impl IsA<Widget>,
) -> (i32, i32) { ... }
fn preferred_width_for_height(
&self,
context: &impl IsA<CellAreaContext>,
widget: &impl IsA<Widget>,
height: i32,
) -> (i32, i32) { ... }
fn request_mode(&self) -> SizeRequestMode { ... }
fn has_renderer(&self, renderer: &impl IsA<CellRenderer>) -> bool { ... }
fn inner_cell_area(
&self,
widget: &impl IsA<Widget>,
cell_area: &Rectangle,
) -> Rectangle { ... }
fn is_activatable(&self) -> bool { ... }
fn is_focus_sibling(
&self,
renderer: &impl IsA<CellRenderer>,
sibling: &impl IsA<CellRenderer>,
) -> bool { ... }
fn remove(&self, renderer: &impl IsA<CellRenderer>) { ... }
fn remove_focus_sibling(
&self,
renderer: &impl IsA<CellRenderer>,
sibling: &impl IsA<CellRenderer>,
) { ... }
fn request_renderer(
&self,
renderer: &impl IsA<CellRenderer>,
orientation: Orientation,
widget: &impl IsA<Widget>,
for_size: i32,
) -> (i32, i32) { ... }
fn set_focus_cell(&self, renderer: Option<&impl IsA<CellRenderer>>) { ... }
fn snapshot(
&self,
context: &impl IsA<CellAreaContext>,
widget: &impl IsA<Widget>,
snapshot: &impl IsA<Snapshot>,
background_area: &Rectangle,
cell_area: &Rectangle,
flags: CellRendererState,
paint_focus: bool,
) { ... }
fn stop_editing(&self, canceled: bool) { ... }
fn connect_add_editable<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &CellRenderer, &CellEditable, &Rectangle, TreePath) + 'static { ... }
fn connect_apply_attributes<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &TreeModel, &TreeIter, bool, bool) + 'static { ... }
fn connect_focus_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &CellRenderer, TreePath) + 'static { ... }
fn connect_remove_editable<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &CellRenderer, &CellEditable) + 'static { ... }
fn connect_edit_widget_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_edited_cell_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_focus_cell_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
👎Deprecated: Since 4.10
Provided Methods§
fn activate( &self, context: &impl IsA<CellAreaContext>, widget: &impl IsA<Widget>, cell_area: &Rectangle, flags: CellRendererState, edit_only: bool, ) -> bool
👎Deprecated: Since 4.10
fn activate_cell( &self, widget: &impl IsA<Widget>, renderer: &impl IsA<CellRenderer>, event: impl AsRef<Event>, cell_area: &Rectangle, flags: CellRendererState, ) -> bool
👎Deprecated: Since 4.10
fn add(&self, renderer: &impl IsA<CellRenderer>)
👎Deprecated: Since 4.10
fn add_focus_sibling( &self, renderer: &impl IsA<CellRenderer>, sibling: &impl IsA<CellRenderer>, )
👎Deprecated: Since 4.10
fn apply_attributes( &self, tree_model: &impl IsA<TreeModel>, iter: &TreeIter, is_expander: bool, is_expanded: bool, )
👎Deprecated: Since 4.10
fn attribute_connect( &self, renderer: &impl IsA<CellRenderer>, attribute: &str, column: i32, )
👎Deprecated: Since 4.10
fn attribute_disconnect( &self, renderer: &impl IsA<CellRenderer>, attribute: &str, )
👎Deprecated: Since 4.10
fn attribute_get_column( &self, renderer: &impl IsA<CellRenderer>, attribute: &str, ) -> i32
👎Deprecated: Since 4.10
fn copy_context(&self, context: &impl IsA<CellAreaContext>) -> CellAreaContext
👎Deprecated: Since 4.10
fn create_context(&self) -> CellAreaContext
👎Deprecated: Since 4.10
fn event( &self, context: &impl IsA<CellAreaContext>, widget: &impl IsA<Widget>, event: impl AsRef<Event>, cell_area: &Rectangle, flags: CellRendererState, ) -> i32
👎Deprecated: Since 4.10
fn focus(&self, direction: DirectionType) -> bool
👎Deprecated: Since 4.10
fn foreach<P>(&self, callback: P)
👎Deprecated: Since 4.10
fn foreach_alloc<P>( &self, context: &impl IsA<CellAreaContext>, widget: &impl IsA<Widget>, cell_area: &Rectangle, background_area: &Rectangle, callback: P, )
👎Deprecated: Since 4.10
fn cell_allocation( &self, context: &impl IsA<CellAreaContext>, widget: &impl IsA<Widget>, renderer: &impl IsA<CellRenderer>, cell_area: &Rectangle, ) -> Rectangle
👎Deprecated: Since 4.10
fn cell_at_position( &self, context: &impl IsA<CellAreaContext>, widget: &impl IsA<Widget>, cell_area: &Rectangle, x: i32, y: i32, ) -> (CellRenderer, Rectangle)
👎Deprecated: Since 4.10
fn current_path_string(&self) -> GString
👎Deprecated: Since 4.10
fn edit_widget(&self) -> Option<CellEditable>
👎Deprecated: Since 4.10
fn edited_cell(&self) -> Option<CellRenderer>
👎Deprecated: Since 4.10
fn focus_cell(&self) -> Option<CellRenderer>
👎Deprecated: Since 4.10
fn focus_from_sibling( &self, renderer: &impl IsA<CellRenderer>, ) -> Option<CellRenderer>
👎Deprecated: Since 4.10
fn focus_siblings(&self, renderer: &impl IsA<CellRenderer>) -> Vec<CellRenderer>
👎Deprecated: Since 4.10
fn preferred_height( &self, context: &impl IsA<CellAreaContext>, widget: &impl IsA<Widget>, ) -> (i32, i32)
👎Deprecated: Since 4.10
fn preferred_height_for_width( &self, context: &impl IsA<CellAreaContext>, widget: &impl IsA<Widget>, width: i32, ) -> (i32, i32)
👎Deprecated: Since 4.10
fn preferred_width( &self, context: &impl IsA<CellAreaContext>, widget: &impl IsA<Widget>, ) -> (i32, i32)
👎Deprecated: Since 4.10
fn preferred_width_for_height( &self, context: &impl IsA<CellAreaContext>, widget: &impl IsA<Widget>, height: i32, ) -> (i32, i32)
👎Deprecated: Since 4.10
fn request_mode(&self) -> SizeRequestMode
👎Deprecated: Since 4.10
fn has_renderer(&self, renderer: &impl IsA<CellRenderer>) -> bool
👎Deprecated: Since 4.10
fn inner_cell_area( &self, widget: &impl IsA<Widget>, cell_area: &Rectangle, ) -> Rectangle
👎Deprecated: Since 4.10
fn is_activatable(&self) -> bool
👎Deprecated: Since 4.10
fn is_focus_sibling( &self, renderer: &impl IsA<CellRenderer>, sibling: &impl IsA<CellRenderer>, ) -> bool
👎Deprecated: Since 4.10
fn remove(&self, renderer: &impl IsA<CellRenderer>)
👎Deprecated: Since 4.10
fn remove_focus_sibling( &self, renderer: &impl IsA<CellRenderer>, sibling: &impl IsA<CellRenderer>, )
👎Deprecated: Since 4.10
fn request_renderer( &self, renderer: &impl IsA<CellRenderer>, orientation: Orientation, widget: &impl IsA<Widget>, for_size: i32, ) -> (i32, i32)
👎Deprecated: Since 4.10
fn set_focus_cell(&self, renderer: Option<&impl IsA<CellRenderer>>)
👎Deprecated: Since 4.10
fn snapshot( &self, context: &impl IsA<CellAreaContext>, widget: &impl IsA<Widget>, snapshot: &impl IsA<Snapshot>, background_area: &Rectangle, cell_area: &Rectangle, flags: CellRendererState, paint_focus: bool, )
👎Deprecated: Since 4.10
fn stop_editing(&self, canceled: bool)
👎Deprecated: Since 4.10
fn connect_add_editable<F>(&self, f: F) -> SignalHandlerId
👎Deprecated: Since 4.10
fn connect_apply_attributes<F>(&self, f: F) -> SignalHandlerId
👎Deprecated: Since 4.10
fn connect_focus_changed<F>(&self, f: F) -> SignalHandlerId
👎Deprecated: Since 4.10
fn connect_remove_editable<F>(&self, f: F) -> SignalHandlerId
👎Deprecated: Since 4.10
fn connect_edit_widget_notify<F>(&self, f: F) -> SignalHandlerId
👎Deprecated: Since 4.10
fn connect_edited_cell_notify<F>(&self, f: F) -> SignalHandlerId
👎Deprecated: Since 4.10
fn connect_focus_cell_notify<F>(&self, f: F) -> SignalHandlerId
👎Deprecated: Since 4.10
Object Safety§
This trait is not object safe.