diff options
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed.c | 8 | ||||
-rw-r--r-- | embed/ephy-embed.h | 8 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed.cpp | 21 |
3 files changed, 19 insertions, 18 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index 6c6406d9c..c0858a32f 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -245,10 +245,10 @@ ephy_embed_base_init (gpointer g_class) G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (EphyEmbedClass, zoom_change), NULL, NULL, - g_cclosure_marshal_VOID__INT, + g_cclosure_marshal_VOID__FLOAT, G_TYPE_NONE, 1, - G_TYPE_INT); + G_TYPE_FLOAT); initialized = TRUE; } } @@ -411,7 +411,7 @@ ephy_embed_copy_page (EphyEmbed *dest, gresult ephy_embed_zoom_set (EphyEmbed *embed, - int zoom, + float zoom, gboolean reflow) { EphyEmbedClass *klass = EPHY_EMBED_GET_CLASS (embed); @@ -420,7 +420,7 @@ ephy_embed_zoom_set (EphyEmbed *embed, gresult ephy_embed_zoom_get (EphyEmbed *embed, - int *zoom) + float *zoom) { EphyEmbedClass *klass = EPHY_EMBED_GET_CLASS (embed); return klass->zoom_get (embed, zoom); diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index 73671ccbd..c8e732e09 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -235,10 +235,10 @@ struct EphyEmbedClass EphyEmbed *source, EmbedDisplayType display_type); gresult (* zoom_set) (EphyEmbed *embed, - int zoom, + float zoom, gboolean reflow); gresult (* zoom_get) (EphyEmbed *embed, - int *zoom); + float *zoom); gresult (* selection_can_cut) (EphyEmbed *embed); gresult (* selection_can_copy) (EphyEmbed *embed); gresult (* can_paste) (EphyEmbed *embed); @@ -337,11 +337,11 @@ gresult ephy_embed_copy_page (EphyEmbed *dest, /* Zoom */ gresult ephy_embed_zoom_set (EphyEmbed *embed, - int zoom, + float zoom, gboolean reflow); gresult ephy_embed_zoom_get (EphyEmbed *embed, - int *zoom); + float *zoom); /* Clipboard */ gresult ephy_embed_selection_can_cut (EphyEmbed *embed); diff --git a/embed/mozilla/mozilla-embed.cpp b/embed/mozilla/mozilla-embed.cpp index aaca63203..06c12b032 100644 --- a/embed/mozilla/mozilla-embed.cpp +++ b/embed/mozilla/mozilla-embed.cpp @@ -25,6 +25,7 @@ #include "MozillaPrivate.h" #include "EphyWrapper.h" #include "EventContext.h" +#include "ephy-debug.h" #include <nsIWindowWatcher.h> #include <nsIURI.h> @@ -37,8 +38,6 @@ #include <nsIPrintOptions.h> #include <nsGfxCIID.h> -#include <math.h> - static void mozilla_embed_class_init (MozillaEmbedClass *klass); static void @@ -104,11 +103,11 @@ impl_copy_page (EphyEmbed *dest, EmbedDisplayType display_type); static gresult impl_zoom_set (EphyEmbed *embed, - int zoom, + float zoom, gboolean reflow); static gresult impl_zoom_get (EphyEmbed *embed, - int *zoom); + float *zoom); static gresult impl_selection_can_cut (EphyEmbed *embed); static gresult @@ -772,7 +771,7 @@ impl_copy_page (EphyEmbed *dest, static gresult impl_zoom_set (EphyEmbed *embed, - int zoom, + float zoom, gboolean reflow) { EphyWrapper *wrapper; @@ -781,7 +780,7 @@ impl_zoom_set (EphyEmbed *embed, wrapper = MOZILLA_EMBED(embed)->priv->wrapper; g_return_val_if_fail (wrapper != NULL, G_FAILED); - result = wrapper->SetZoom ((float)(zoom) / 100, reflow); + result = wrapper->SetZoom (zoom, reflow); if (NS_SUCCEEDED (result)) { @@ -793,7 +792,7 @@ impl_zoom_set (EphyEmbed *embed, static gresult impl_zoom_get (EphyEmbed *embed, - int *zoom) + float *zoom) { float f; EphyWrapper *wrapper; @@ -801,15 +800,17 @@ impl_zoom_get (EphyEmbed *embed, wrapper = MOZILLA_EMBED(embed)->priv->wrapper; if (!wrapper) { - *zoom = 100; - return G_OK; + LOG ("impl_zoom_get: wrapper == NULL") + + *zoom = 1.0; + return G_FAILED; } nsresult result = wrapper->GetZoom (&f); if (NS_SUCCEEDED (result)) { - *zoom = (int) rint (f * 100); + *zoom = f; return G_OK; } |