Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cut-n-paste/zoom-control/ephy-zoom-action.h
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2010-05-31 15:31:26 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2010-05-31 16:57:59 (GMT)
commit8e0b5c5df827306c6c4e3761b1ea4a9f3a1674ed (patch)
tree7576a0282faffe4c30d48bf18cba9829a1721f67 /cut-n-paste/zoom-control/ephy-zoom-action.h
parent8e69dbdaaee65857fc56fbc8b7aca739150c9289 (diff)
[ephy-zoom] Add max/min zoom properties
Diffstat (limited to 'cut-n-paste/zoom-control/ephy-zoom-action.h')
-rw-r--r--cut-n-paste/zoom-control/ephy-zoom-action.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/cut-n-paste/zoom-control/ephy-zoom-action.h b/cut-n-paste/zoom-control/ephy-zoom-action.h
index d7362c0..2d07c69 100644
--- a/cut-n-paste/zoom-control/ephy-zoom-action.h
+++ b/cut-n-paste/zoom-control/ephy-zoom-action.h
@@ -52,11 +52,16 @@ struct _EphyZoomActionClass
void (* zoom_to_level) (EphyZoomAction *action, float level);
};
-GType ephy_zoom_action_get_type (void);
+GType ephy_zoom_action_get_type (void);
-void ephy_zoom_action_set_zoom_level (EphyZoomAction *action, float zoom);
+void ephy_zoom_action_set_zoom_level (EphyZoomAction *action,
+ float zoom);
+float ephy_zoom_action_get_zoom_level (EphyZoomAction *action);
-float ephy_zoom_action_get_zoom_level (EphyZoomAction *action);
+void ephy_zoom_action_set_min_zoom_level (EphyZoomAction *action,
+ float zoom);
+void ephy_zoom_action_set_max_zoom_level (EphyZoomAction *action,
+ float zoom);
G_END_DECLS