~vcs-imports/totem/main

« back to all changes in this revision

Viewing changes to src/totem-private.h

  • Committer: pwithnall
  • Date: 2009-04-15 06:53:25 UTC
  • Revision ID: vcs-imports@canonical.com-20090415065325-s9pcshw8nvwct4vc
2009-04-15  Philip Withnall  <philip@tecnocode.co.uk>

        * src/backend/bacon-video-widget-gst-0.10.c (resize_video_window),
        (bacon_video_widget_init), (bacon_video_widget_set_zoom),
        (bacon_video_widget_get_zoom):
        * src/backend/bacon-video-widget-xine.c
        (bacon_video_widget_realize), (bacon_video_widget_set_zoom),
        (bacon_video_widget_get_zoom):
        * src/backend/bacon-video-widget.h:
        * src/totem-object.c (totem_action_zoom),
        (totem_action_zoom_relative):
        * src/totem-private.h: Change bacon_video_widget_set_zoom to take a
        double. (Closes: #577961)

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
#define VOLUME_DOWN_OFFSET (-0.08)
171
171
#define VOLUME_UP_OFFSET (0.08)
172
172
 
173
 
#define ZOOM_IN_OFFSET 1
174
 
#define ZOOM_OUT_OFFSET -1
 
173
#define ZOOM_IN_OFFSET 0.01
 
174
#define ZOOM_OUT_OFFSET -0.01
175
175
 
176
176
void    totem_action_open                       (Totem *totem);
177
177
void    totem_action_open_location              (Totem *totem);
178
178
void    totem_action_eject                      (Totem *totem);
179
 
void    totem_action_zoom_relative              (Totem *totem, int off_pct);
 
179
void    totem_action_zoom_relative              (Totem *totem, double off_pct);
180
180
void    totem_action_zoom_reset                 (Totem *totem);
181
181
void    totem_action_show_help                  (Totem *totem);
182
182
void    totem_action_show_properties            (Totem *totem);