diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-08-05 23:06:23 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-08-05 23:06:23 +0800 |
commit | a7d77f6d5eb0e0d73c1029dd751014efc21d95df (patch) | |
tree | 64314563f2a7321b6e11721605b07096accf3397 /lib/ephy-string.h | |
parent | 3fd222083b1d51093e6d736c8d657cfa9a43689f (diff) | |
download | gsoc2013-epiphany-a7d77f6d5eb0e0d73c1029dd751014efc21d95df.tar gsoc2013-epiphany-a7d77f6d5eb0e0d73c1029dd751014efc21d95df.tar.gz gsoc2013-epiphany-a7d77f6d5eb0e0d73c1029dd751014efc21d95df.tar.bz2 gsoc2013-epiphany-a7d77f6d5eb0e0d73c1029dd751014efc21d95df.tar.lz gsoc2013-epiphany-a7d77f6d5eb0e0d73c1029dd751014efc21d95df.tar.xz gsoc2013-epiphany-a7d77f6d5eb0e0d73c1029dd751014efc21d95df.tar.zst gsoc2013-epiphany-a7d77f6d5eb0e0d73c1029dd751014efc21d95df.zip |
A lib/ephy-print-utils.c: A lib/ephy-print-utils.h:
2006-08-05 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed-shell.c: (ephy_embed_shell_set_page_setup),
(ephy_embed_shell_get_page_setup),
(ephy_embed_shell_set_print_settings),
(ephy_embed_shell_get_print_settings):
A lib/ephy-print-utils.c:
A lib/ephy-print-utils.h:
* lib/ephy-string.c: (ephy_string_flags_from_string),
(ephy_string_flags_to_string), (ephy_string_enum_from_string),
(ephy_string_enum_to_string):
* lib/ephy-string.h:
Persist print settings and page setup.
Diffstat (limited to 'lib/ephy-string.h')
-rw-r--r-- | lib/ephy-string.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/ephy-string.h b/lib/ephy-string.h index 6bb50ff3e..2ed7d708a 100644 --- a/lib/ephy-string.h +++ b/lib/ephy-string.h @@ -22,6 +22,7 @@ #define EPHY_STRING_H #include <glib.h> +#include <glib-object.h> G_BEGIN_DECLS @@ -36,6 +37,18 @@ char *ephy_string_shorten (char *str, char *ephy_string_collate_key_for_domain (const char *host, gssize len); +guint ephy_string_flags_from_string (GType type, + const char *flags_string); + +char *ephy_string_flags_to_string (GType type, + guint flags_value); + +guint ephy_string_enum_from_string (GType type, + const char *enum_string); + +char *ephy_string_enum_to_string (GType type, + guint enum_value); + G_END_DECLS #endif |