gtkmm 4.16.0
|
A Gtk::PrintDialog object collects the arguments that are needed to present a print dialog to the user, such as a title for the dialog and whether it should be modal. More...
#include <gtkmm/printdialog.h>
Public Member Functions | |
PrintDialog (PrintDialog &&src) noexcept | |
PrintDialog & | operator= (PrintDialog &&src) noexcept |
~PrintDialog () noexcept override | |
GtkPrintDialog * | gobj () |
Provides access to the underlying C GObject. | |
const GtkPrintDialog * | gobj () const |
Provides access to the underlying C GObject. | |
GtkPrintDialog * | gobj_copy () |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. | |
Glib::ustring | get_title () const |
Returns the title that will be shown on the print dialog. | |
void | set_title (const Glib::ustring &title) |
Sets the title that will be shown on the print dialog. | |
Glib::ustring | get_accept_label () const |
Returns the label that will be shown on the accept button of the print dialog. | |
void | set_accept_label (const Glib::ustring &accept_label) |
Sets the label that will be shown on the accept button of the print dialog shown for setup(). | |
bool | get_modal () const |
Returns whether the print dialog blocks interaction with the parent window while it is presented. | |
void | set_modal (bool modal=true) |
Sets whether the print dialog blocks interaction with the parent window while it is presented. | |
Glib::RefPtr< PageSetup > | get_page_setup () |
Returns the page setup. | |
Glib::RefPtr< const PageSetup > | get_page_setup () const |
Returns the page setup. | |
void | set_page_setup (const Glib::RefPtr< PageSetup > &page_setup) |
Set the page setup for the print dialog. | |
Glib::RefPtr< PrintSettings > | get_print_settings () |
Returns the print settings for the print dialog. | |
Glib::RefPtr< const PrintSettings > | get_print_settings () const |
Returns the print settings for the print dialog. | |
void | set_print_settings (const Glib::RefPtr< PrintSettings > &print_settings) |
Sets the print settings for the print dialog. | |
void | setup (Window & parent, const Gio::SlotAsyncReady &slot, const Glib::RefPtr< Gio::Cancellable > &cancellable={}) |
This function presents a print dialog to let the user select a printer, and set up print settings and page setup. | |
void | setup (const Gio::SlotAsyncReady &slot, const Glib::RefPtr< Gio::Cancellable > &cancellable={}) |
A setup() convenience overload. | |
Glib::RefPtr< PrintSetup > | setup_finish (const Glib::RefPtr< Gio::AsyncResult > &result) |
Finishes the setup() call. | |
void | print (Window & parent, const Gio::SlotAsyncReady &slot, const Glib::RefPtr< PrintSetup > &setup={}, const Glib::RefPtr< Gio::Cancellable > &cancellable={}) |
This function prints content from a stream. | |
void | print (const Gio::SlotAsyncReady &slot, const Glib::RefPtr< PrintSetup > &setup={}, const Glib::RefPtr< Gio::Cancellable > &cancellable={}) |
A print() convenience overload. | |
Glib::RefPtr< Gio::OutputStream > | print_finish (const Glib::RefPtr< Gio::AsyncResult > &result) |
Finishes the print() call and returns the results. | |
void | print_file (Window & parent, const Gio::SlotAsyncReady &slot, const Glib::RefPtr< Gio::File > & file, const Glib::RefPtr< PrintSetup > &setup={}, const Glib::RefPtr< Gio::Cancellable > &cancellable={}) |
This function prints a file. | |
void | print_file (const Gio::SlotAsyncReady &slot, const Glib::RefPtr< Gio::File > & file, const Glib::RefPtr< PrintSetup > &setup={}, const Glib::RefPtr< Gio::Cancellable > &cancellable={}) |
A print_file() convenience overload. | |
bool | print_file_finish (const Glib::RefPtr< Gio::AsyncResult > &result) |
Finishes the print_file() call and returns the results. | |
Glib::PropertyProxy< Glib::ustring > | property_title () |
A title that may be shown on the print dialog that is presented by Gtk::PrintDialog::setup(). | |
Glib::PropertyProxy_ReadOnly< Glib::ustring > | property_title () const |
A title that may be shown on the print dialog that is presented by Gtk::PrintDialog::setup(). | |
Glib::PropertyProxy< Glib::ustring > | property_accept_label () |
A label that may be shown on the accept button of a print dialog that is presented by Gtk::PrintDialog::setup(). | |
Glib::PropertyProxy_ReadOnly< Glib::ustring > | property_accept_label () const |
A label that may be shown on the accept button of a print dialog that is presented by Gtk::PrintDialog::setup(). | |
Glib::PropertyProxy< bool > | property_modal () |
Whether the print dialog is modal. | |
Glib::PropertyProxy_ReadOnly< bool > | property_modal () const |
Whether the print dialog is modal. | |
Glib::PropertyProxy< Glib::RefPtr< PageSetup > > | property_page_setup () |
The page setup to use. | |
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< PageSetup > > | property_page_setup () const |
The page setup to use. | |
Glib::PropertyProxy< Glib::RefPtr< PrintSettings > > | property_print_settings () |
The print settings to use. | |
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< PrintSettings > > | property_print_settings () const |
The print settings to use. | |
Static Public Member Functions | |
static GType | get_type () |
Get the GType for this class, for use with the underlying GObject type system. | |
static Glib::RefPtr< PrintDialog > | create () |
Protected Member Functions | |
PrintDialog () | |
Related Symbols | |
(Note that these are not member symbols.) | |
Glib::RefPtr< Gtk::PrintDialog > | wrap (GtkPrintDialog *object, bool take_copy=false) |
A Glib::wrap() method for this object. | |
A Gtk::PrintDialog object collects the arguments that are needed to present a print dialog to the user, such as a title for the dialog and whether it should be modal.
The dialog is shown with the setup() function. The actual printing can be done with print() or print_file(). These APIs follow the GIO async pattern, and the results can be obtained by calling the corresponding finish methods.
|
noexcept |
|
overridenoexcept |
|
protected |
|
static |
Glib::ustring Gtk::PrintDialog::get_accept_label | ( | ) | const |
Returns the label that will be shown on the accept button of the print dialog.
bool Gtk::PrintDialog::get_modal | ( | ) | const |
Returns whether the print dialog blocks interaction with the parent window while it is presented.
Glib::RefPtr< PageSetup > Gtk::PrintDialog::get_page_setup | ( | ) |
Glib::RefPtr< PrintSettings > Gtk::PrintDialog::get_print_settings | ( | ) |
Glib::RefPtr< const PrintSettings > Gtk::PrintDialog::get_print_settings | ( | ) | const |
Glib::ustring Gtk::PrintDialog::get_title | ( | ) | const |
|
static |
Get the GType for this class, for use with the underlying GObject type system.
|
inline |
Provides access to the underlying C GObject.
|
inline |
Provides access to the underlying C GObject.
GtkPrintDialog * Gtk::PrintDialog::gobj_copy | ( | ) |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
|
noexcept |
void Gtk::PrintDialog::print | ( | const Gio::SlotAsyncReady & | slot, |
const Glib::RefPtr< PrintSetup > & | setup = {} , |
||
const Glib::RefPtr< Gio::Cancellable > & | cancellable = {} |
||
) |
A print() convenience overload.
void Gtk::PrintDialog::print | ( | Window & | parent, |
const Gio::SlotAsyncReady & | slot, | ||
const Glib::RefPtr< PrintSetup > & | setup = {} , |
||
const Glib::RefPtr< Gio::Cancellable > & | cancellable = {} |
||
) |
This function prints content from a stream.
If you pass nullptr
as setup, then this method will present a print dialog. Otherwise, it will attempt to print directly, without user interaction.
The slot will be called when the printing is done.
parent | The parent Gtk::Window . |
setup | The Gtk::PrintSetup to use. |
cancellable | A Cancellable to cancel the operation. |
slot | A callback to call when the operation is complete. |
void Gtk::PrintDialog::print_file | ( | const Gio::SlotAsyncReady & | slot, |
const Glib::RefPtr< Gio::File > & | file, | ||
const Glib::RefPtr< PrintSetup > & | setup = {} , |
||
const Glib::RefPtr< Gio::Cancellable > & | cancellable = {} |
||
) |
A print_file() convenience overload.
void Gtk::PrintDialog::print_file | ( | Window & | parent, |
const Gio::SlotAsyncReady & | slot, | ||
const Glib::RefPtr< Gio::File > & | file, | ||
const Glib::RefPtr< PrintSetup > & | setup = {} , |
||
const Glib::RefPtr< Gio::Cancellable > & | cancellable = {} |
||
) |
This function prints a file.
If you pass nullptr
as setup, then this method will present a print dialog. Otherwise, it will attempt to print directly, without user interaction.
parent | The parent Gtk::Window . |
setup | The Gtk::PrintSetup to use. |
file | The Gio::File to print. |
cancellable | A Cancellable to cancel the operation. |
slot | A callback to call when the operation is complete. |
bool Gtk::PrintDialog::print_file_finish | ( | const Glib::RefPtr< Gio::AsyncResult > & | result | ) |
Finishes the print_file() call and returns the results.
result | A Gio::AsyncResult . |
Gtk::DialogError |
Glib::RefPtr< Gio::OutputStream > Gtk::PrintDialog::print_finish | ( | const Glib::RefPtr< Gio::AsyncResult > & | result | ) |
Finishes the print() call and returns the results.
If the call was successful, the content to be printed should be written to the returned output stream. Otherwise, nullptr
is returned.
The overall results of the print operation will be returned in the Gio::OutputStream::close() call, so if you are interested in the results, you need to explicitly close the output stream (it will be closed automatically if you just unref it). Be aware that the close call may not be instant as it operation will for the printer to finish printing.
result | A Gio::AsyncResult . |
Gtk::DialogError |
Glib::PropertyProxy< Glib::ustring > Gtk::PrintDialog::property_accept_label | ( | ) |
A label that may be shown on the accept button of a print dialog that is presented by Gtk::PrintDialog::setup().
Default value: ""
Glib::PropertyProxy_ReadOnly< Glib::ustring > Gtk::PrintDialog::property_accept_label | ( | ) | const |
A label that may be shown on the accept button of a print dialog that is presented by Gtk::PrintDialog::setup().
Default value: ""
Glib::PropertyProxy< bool > Gtk::PrintDialog::property_modal | ( | ) |
Whether the print dialog is modal.
Default value: true
Glib::PropertyProxy_ReadOnly< bool > Gtk::PrintDialog::property_modal | ( | ) | const |
Whether the print dialog is modal.
Default value: true
Glib::PropertyProxy< Glib::RefPtr< PageSetup > > Gtk::PrintDialog::property_page_setup | ( | ) |
The page setup to use.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< PageSetup > > Gtk::PrintDialog::property_page_setup | ( | ) | const |
The page setup to use.
Glib::PropertyProxy< Glib::RefPtr< PrintSettings > > Gtk::PrintDialog::property_print_settings | ( | ) |
The print settings to use.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr< PrintSettings > > Gtk::PrintDialog::property_print_settings | ( | ) | const |
The print settings to use.
Glib::PropertyProxy< Glib::ustring > Gtk::PrintDialog::property_title | ( | ) |
A title that may be shown on the print dialog that is presented by Gtk::PrintDialog::setup().
Default value: ""
Glib::PropertyProxy_ReadOnly< Glib::ustring > Gtk::PrintDialog::property_title | ( | ) | const |
A title that may be shown on the print dialog that is presented by Gtk::PrintDialog::setup().
Default value: ""
Sets the label that will be shown on the accept button of the print dialog shown for setup().
accept_label | The new accept label. |
Sets whether the print dialog blocks interaction with the parent window while it is presented.
modal | The new value. |
void Gtk::PrintDialog::set_print_settings | ( | const Glib::RefPtr< PrintSettings > & | print_settings | ) |
Sets the print settings for the print dialog.
print_settings | The new print settings. |
Sets the title that will be shown on the print dialog.
title | The new title. |
void Gtk::PrintDialog::setup | ( | const Gio::SlotAsyncReady & | slot, |
const Glib::RefPtr< Gio::Cancellable > & | cancellable = {} |
||
) |
A setup() convenience overload.
void Gtk::PrintDialog::setup | ( | Window & | parent, |
const Gio::SlotAsyncReady & | slot, | ||
const Glib::RefPtr< Gio::Cancellable > & | cancellable = {} |
||
) |
This function presents a print dialog to let the user select a printer, and set up print settings and page setup.
The slot will be called when the dialog is dismissed. The obtained Gtk::PrintSetup can then be passed to print() or print_file().
One possible use for this method is to have the user select a printer, then show a page setup UI in the application (e.g. to arrange images on a page), then call print() on self to do the printing without further user interaction.
parent | The parent Gtk::Window . |
cancellable | A Cancellable to cancel the operation. |
slot | A callback to call when the operation is complete. |
Glib::RefPtr< PrintSetup > Gtk::PrintDialog::setup_finish | ( | const Glib::RefPtr< Gio::AsyncResult > & | result | ) |
Finishes the setup() call.
If the call was successful, it returns a Gtk::PrintSetup which contains the print settings and page setup information that will be used to print.
result | A Gio::AsyncResult . |
Gtk::PrintSetup
object that resulted from the call, or nullptr
if the call was not successful.Gtk::DialogError |
|
related |
A Glib::wrap() method for this object.
object | The C instance. |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |