diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-07-22 01:25:53 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-07-22 01:25:53 +0800 |
commit | 800d438285ec852a357c2703a931a5c139b09cf2 (patch) | |
tree | fbd1f74b77660ff8b22855ab136bd79e00b5904b /lib/ephy-gui.h | |
parent | 17923704a6396397ceebe608cd0f0369dccef944 (diff) | |
download | gsoc2013-epiphany-800d438285ec852a357c2703a931a5c139b09cf2.tar gsoc2013-epiphany-800d438285ec852a357c2703a931a5c139b09cf2.tar.gz gsoc2013-epiphany-800d438285ec852a357c2703a931a5c139b09cf2.tar.bz2 gsoc2013-epiphany-800d438285ec852a357c2703a931a5c139b09cf2.tar.lz gsoc2013-epiphany-800d438285ec852a357c2703a931a5c139b09cf2.tar.xz gsoc2013-epiphany-800d438285ec852a357c2703a931a5c139b09cf2.tar.zst gsoc2013-epiphany-800d438285ec852a357c2703a931a5c139b09cf2.zip |
Add our options in a custom tab in the print dialogue.
2006-07-21 Christian Persch <chpe@cvs.gnome.org>
* data/epiphany.schemas.in:
* data/glade/print.glade:
* embed/mozilla/GeckoPrintService.cpp:
* embed/mozilla/GeckoPrintService.h:
* lib/ephy-gui.c: (ephy_gui_message_dialog_get_content_box),
(ephy_gui_message_dialog_set_wrap_mode), (checkbutton_toggled_cb),
(ephy_gui_connect_checkbutton_to_gconf):
* lib/ephy-gui.h:
Add our options in a custom tab in the print dialogue.
Diffstat (limited to 'lib/ephy-gui.h')
-rw-r--r-- | lib/ephy-gui.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/lib/ephy-gui.h b/lib/ephy-gui.h index 10b681fbe..d989b06e6 100644 --- a/lib/ephy-gui.h +++ b/lib/ephy-gui.h @@ -21,12 +21,13 @@ #ifndef EPHY_GUI_H #define EPHY_GUI_H +#include <gdk/gdkkeysyms.h> +#include <gdk-pixbuf/gdk-pixbuf.h> #include <gtk/gtkmenu.h> -#include <gtk/gtktreeview.h> +#include <gtk/gtkmessagedialog.h> #include <gtk/gtktreeviewcolumn.h> +#include <gtk/gtktreeview.h> #include <gtk/gtkwindow.h> -#include <gdk-pixbuf/gdk-pixbuf.h> -#include <gdk/gdkkeysyms.h> G_BEGIN_DECLS @@ -78,6 +79,12 @@ void ephy_gui_window_update_user_time (GtkWidget *window, GtkWidget *ephy_gui_message_dialog_get_content_box (GtkWidget *dialog); +void ephy_gui_message_dialog_set_wrap_mode (GtkMessageDialog *dialog, + PangoWrapMode wrap_mode); + +void ephy_gui_connect_checkbutton_to_gconf (GtkWidget *widget, + const char *pref); + G_END_DECLS #endif |