Trait sourceview5::prelude::CompletionWordsExt[][src]

pub trait CompletionWordsExt: 'static {
    fn register<P: IsA<TextBuffer>>(&self, buffer: &P);
fn unregister<P: IsA<TextBuffer>>(&self, buffer: &P);
fn get_property_minimum_word_size(&self) -> u32;
fn set_property_minimum_word_size(&self, minimum_word_size: u32);
fn get_property_priority(&self) -> i32;
fn set_property_priority(&self, priority: i32);
fn get_property_proposals_batch_size(&self) -> u32;
fn set_property_proposals_batch_size(&self, proposals_batch_size: u32);
fn get_property_scan_batch_size(&self) -> u32;
fn set_property_scan_batch_size(&self, scan_batch_size: u32);
fn get_property_title(&self) -> Option<GString>;
fn set_property_title(&self, title: Option<&str>);
fn connect_property_minimum_word_size_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_priority_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_proposals_batch_size_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_scan_batch_size_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Trait containing all CompletionWords methods.

Implementors

CompletionWords

Required methods

fn register<P: IsA<TextBuffer>>(&self, buffer: &P)[src]

Registers buffer in the self provider.

buffer

a gtk::TextBuffer

fn unregister<P: IsA<TextBuffer>>(&self, buffer: &P)[src]

Unregisters buffer from the self provider.

buffer

a gtk::TextBuffer

fn get_property_minimum_word_size(&self) -> u32[src]

fn set_property_minimum_word_size(&self, minimum_word_size: u32)[src]

fn get_property_priority(&self) -> i32[src]

fn set_property_priority(&self, priority: i32)[src]

fn get_property_proposals_batch_size(&self) -> u32[src]

fn set_property_proposals_batch_size(&self, proposals_batch_size: u32)[src]

fn get_property_scan_batch_size(&self) -> u32[src]

fn set_property_scan_batch_size(&self, scan_batch_size: u32)[src]

fn get_property_title(&self) -> Option<GString>[src]

fn set_property_title(&self, title: Option<&str>)[src]

fn connect_property_minimum_word_size_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_priority_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_proposals_batch_size_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_scan_batch_size_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_title_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<CompletionWords>> CompletionWordsExt for O[src]

Loading content...