diff options
Diffstat (limited to 'embed/ephy-embed-shell.h')
-rw-r--r-- | embed/ephy-embed-shell.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/embed/ephy-embed-shell.h b/embed/ephy-embed-shell.h index 74a25a22e..4c243f6e3 100644 --- a/embed/ephy-embed-shell.h +++ b/embed/ephy-embed-shell.h @@ -21,8 +21,10 @@ #ifndef EPHY_EMBED_SHELL_H #define EPHY_EMBED_SHELL_H -#include <glib-object.h> #include <glib.h> +#include <glib-object.h> +#include <gtk/gtkpagesetup.h> +#include <gtk/gtkprintsettings.h> G_BEGIN_DECLS @@ -77,6 +79,16 @@ GObject *ephy_embed_shell_get_adblock_manager (EphyEmbedShell *shell); void ephy_embed_shell_prepare_close (EphyEmbedShell *shell); +void ephy_embed_shell_set_page_setup (EphyEmbedShell *shell, + GtkPageSetup *page_setup); + +GtkPageSetup *ephy_embed_shell_get_page_setup (EphyEmbedShell *shell); + +void ephy_embed_shell_set_print_settings (EphyEmbedShell *shell, + GtkPrintSettings *settings); + +GtkPrintSettings *ephy_embed_shell_get_print_settings (EphyEmbedShell *shell); + G_END_DECLS #endif /* !EPHY_EMBED_SHELL_H */ |