Trait sourceview5::prelude::CompletionWordsExt

source ·
pub trait CompletionWordsExt: IsA<CompletionWords> + Sealed + 'static {
Show 16 methods // Provided methods fn register(&self, buffer: &impl IsA<TextBuffer>) { ... } fn unregister(&self, buffer: &impl IsA<TextBuffer>) { ... } fn minimum_word_size(&self) -> u32 { ... } fn set_minimum_word_size(&self, minimum_word_size: u32) { ... } fn priority(&self) -> i32 { ... } fn set_priority(&self, priority: i32) { ... } fn proposals_batch_size(&self) -> u32 { ... } fn set_proposals_batch_size(&self, proposals_batch_size: u32) { ... } fn scan_batch_size(&self) -> u32 { ... } fn set_scan_batch_size(&self, scan_batch_size: u32) { ... } fn set_title(&self, title: Option<&str>) { ... } fn connect_minimum_word_size_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_priority_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_proposals_batch_size_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_scan_batch_size_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_title_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all CompletionWords methods.

§Implementors

CompletionWords

Provided Methods§

source

fn register(&self, buffer: &impl IsA<TextBuffer>)

Registers @buffer in the @self provider.

§buffer

a #GtkTextBuffer

source

fn unregister(&self, buffer: &impl IsA<TextBuffer>)

Unregisters @buffer from the @self provider.

§buffer

a #GtkTextBuffer

source

fn minimum_word_size(&self) -> u32

source

fn set_minimum_word_size(&self, minimum_word_size: u32)

source

fn priority(&self) -> i32

source

fn set_priority(&self, priority: i32)

source

fn proposals_batch_size(&self) -> u32

source

fn set_proposals_batch_size(&self, proposals_batch_size: u32)

source

fn scan_batch_size(&self) -> u32

source

fn set_scan_batch_size(&self, scan_batch_size: u32)

source

fn set_title(&self, title: Option<&str>)

source

fn connect_minimum_word_size_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_priority_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_proposals_batch_size_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_scan_batch_size_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Object Safety§

This trait is not object safe.

Implementors§