Trait sourceview5::prelude::PrintOperationExt
source · pub trait PrintOperationExt: IsA<PrintOperation> + Sealed + 'static {
Show 67 methods
// Provided methods
fn cancel(&self) { ... }
fn draw_page_finish(&self) { ... }
fn default_page_setup(&self) -> PageSetup { ... }
fn embeds_page_setup(&self) -> bool { ... }
fn has_selection(&self) -> bool { ... }
fn n_pages_to_print(&self) -> i32 { ... }
fn print_settings(&self) -> Option<PrintSettings> { ... }
fn status(&self) -> PrintStatus { ... }
fn status_string(&self) -> GString { ... }
fn supports_selection(&self) -> bool { ... }
fn is_finished(&self) -> bool { ... }
fn run(
&self,
action: PrintOperationAction,
parent: Option<&impl IsA<Window>>,
) -> Result<PrintOperationResult, Error> { ... }
fn set_allow_async(&self, allow_async: bool) { ... }
fn set_current_page(&self, current_page: i32) { ... }
fn set_custom_tab_label(&self, label: Option<&str>) { ... }
fn set_default_page_setup(&self, default_page_setup: Option<&PageSetup>) { ... }
fn set_defer_drawing(&self) { ... }
fn set_embed_page_setup(&self, embed: bool) { ... }
fn set_export_filename(&self, filename: impl AsRef<Path>) { ... }
fn set_has_selection(&self, has_selection: bool) { ... }
fn set_job_name(&self, job_name: &str) { ... }
fn set_n_pages(&self, n_pages: i32) { ... }
fn set_print_settings(&self, print_settings: Option<&PrintSettings>) { ... }
fn set_show_progress(&self, show_progress: bool) { ... }
fn set_support_selection(&self, support_selection: bool) { ... }
fn set_track_print_status(&self, track_status: bool) { ... }
fn set_unit(&self, unit: Unit) { ... }
fn set_use_full_page(&self, full_page: bool) { ... }
fn allows_async(&self) -> bool { ... }
fn current_page(&self) -> i32 { ... }
fn custom_tab_label(&self) -> Option<GString> { ... }
fn export_filename(&self) -> Option<GString> { ... }
fn job_name(&self) -> Option<GString> { ... }
fn n_pages(&self) -> i32 { ... }
fn shows_progress(&self) -> bool { ... }
fn tracks_print_status(&self) -> bool { ... }
fn unit(&self) -> Unit { ... }
fn uses_full_page(&self) -> bool { ... }
fn connect_begin_print<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &PrintContext) + 'static { ... }
fn connect_create_custom_widget<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) -> Option<Object> + 'static { ... }
fn connect_custom_widget_apply<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Widget) + 'static { ... }
fn connect_done<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, PrintOperationResult) + 'static { ... }
fn connect_draw_page<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &PrintContext, i32) + 'static { ... }
fn connect_end_print<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &PrintContext) + 'static { ... }
fn connect_paginate<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &PrintContext) -> bool + 'static { ... }
fn connect_preview<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &PrintOperationPreview, &PrintContext, Option<&Window>) -> bool + 'static { ... }
fn connect_request_page_setup<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &PrintContext, i32, &PageSetup) + 'static { ... }
fn connect_status_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_update_custom_widget<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &Widget, &PageSetup, &PrintSettings) + 'static { ... }
fn connect_allow_async_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_current_page_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_custom_tab_label_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_default_page_setup_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_embed_page_setup_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_export_filename_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_has_selection_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_job_name_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_n_pages_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_n_pages_to_print_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_print_settings_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_show_progress_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_status_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_status_string_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_support_selection_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_track_print_status_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_unit_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_use_full_page_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn cancel(&self)
fn draw_page_finish(&self)
fn default_page_setup(&self) -> PageSetup
fn embeds_page_setup(&self) -> bool
fn has_selection(&self) -> bool
fn n_pages_to_print(&self) -> i32
fn print_settings(&self) -> Option<PrintSettings>
fn status(&self) -> PrintStatus
fn status_string(&self) -> GString
fn supports_selection(&self) -> bool
fn is_finished(&self) -> bool
fn run( &self, action: PrintOperationAction, parent: Option<&impl IsA<Window>>, ) -> Result<PrintOperationResult, Error>
fn set_allow_async(&self, allow_async: bool)
fn set_current_page(&self, current_page: i32)
fn set_custom_tab_label(&self, label: Option<&str>)
fn set_default_page_setup(&self, default_page_setup: Option<&PageSetup>)
fn set_defer_drawing(&self)
fn set_embed_page_setup(&self, embed: bool)
fn set_export_filename(&self, filename: impl AsRef<Path>)
fn set_has_selection(&self, has_selection: bool)
fn set_job_name(&self, job_name: &str)
fn set_n_pages(&self, n_pages: i32)
fn set_print_settings(&self, print_settings: Option<&PrintSettings>)
fn set_show_progress(&self, show_progress: bool)
fn set_support_selection(&self, support_selection: bool)
fn set_track_print_status(&self, track_status: bool)
fn set_unit(&self, unit: Unit)
fn set_use_full_page(&self, full_page: bool)
fn allows_async(&self) -> bool
fn current_page(&self) -> i32
fn custom_tab_label(&self) -> Option<GString>
fn export_filename(&self) -> Option<GString>
fn job_name(&self) -> Option<GString>
fn n_pages(&self) -> i32
fn shows_progress(&self) -> bool
fn tracks_print_status(&self) -> bool
fn unit(&self) -> Unit
fn uses_full_page(&self) -> bool
fn connect_begin_print<F>(&self, f: F) -> SignalHandlerId
fn connect_create_custom_widget<F>(&self, f: F) -> SignalHandlerId
fn connect_custom_widget_apply<F>(&self, f: F) -> SignalHandlerId
fn connect_done<F>(&self, f: F) -> SignalHandlerId
fn connect_draw_page<F>(&self, f: F) -> SignalHandlerId
fn connect_end_print<F>(&self, f: F) -> SignalHandlerId
fn connect_paginate<F>(&self, f: F) -> SignalHandlerId
fn connect_preview<F>(&self, f: F) -> SignalHandlerId
fn connect_request_page_setup<F>(&self, f: F) -> SignalHandlerId
fn connect_status_changed<F>(&self, f: F) -> SignalHandlerId
fn connect_update_custom_widget<F>(&self, f: F) -> SignalHandlerId
fn connect_allow_async_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_current_page_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_custom_tab_label_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_default_page_setup_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_embed_page_setup_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_export_filename_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_has_selection_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_job_name_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_n_pages_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_n_pages_to_print_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_print_settings_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_show_progress_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_status_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_status_string_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_support_selection_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_track_print_status_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_unit_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_use_full_page_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.