~fcwu-tw/ubuntu/precise/totem/fix-for-lp-1041032

« back to all changes in this revision

Viewing changes to src/totem.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-08-12 13:09:09 UTC
  • mfrom: (1.11.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20100812130909-hzn8tsoh9z7t3dbx
Tags: 2.31.6-0ubuntu1
* New upstream version:
  - Add support for Web-M to browser, movie player, and YouTube plugin
  Movie Player:
  - Add deinterlacing support, automatically used for interlaced content
  - Do not block when loading playlists
  - Remove libunique dependency
  - Make auto-resize use half-scale or 2x if the player would fit on the 
    screen
  - Make screensaver preference clearer
  - Support running with RGBA (semi-transparent) GTK+ themes
  Plugins:
  - Update for YouTube website changes
  Browser plugin:
  - Fix running browser plugin in non-GTK+ front-ends
  - VLC-compatible browser plugin:
  - Support input.time and input.length property
  - Support togglePause function
  - Support toolbar plugin argument
* debian/control.in:
  - updated the build requirements to match the configure
* debian/patches/80_webm.patch,
  debian/patches/81_mpegts.patch,
  debian/patches/91_git_correct_rgba_use.patch:
  - the changes are in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
130
130
#define TOTEM_TYPE_REMOTE_SETTING       (totem_remote_setting_get_type())
131
131
#define TOTEM_REMOTE_SETTING            totem_remote_setting_quark ()
132
132
 
133
 
GType totem_disc_media_type_get_type    (void);
134
 
GQuark totem_disc_media_type_quark      (void);
135
 
#define TOTEM_TYPE_DISC_MEDIA_TYPE      (totem_disc_media_type_get_type())
136
 
#define TOTEM_DISC_MEDIA_TYPE           totem_disc_media_type_quark ()
137
 
 
138
133
#define TOTEM_TYPE_OBJECT              (totem_object_get_type ())
139
134
#define TOTEM_OBJECT(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), totem_object_get_type (), TotemObject))
140
135
#define TOTEM_OBJECT_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), totem_object_get_type (), TotemObjectClass))
200
195
void    totem_action_fullscreen                 (Totem *totem, gboolean state);
201
196
void    totem_action_next                       (Totem *totem);
202
197
void    totem_action_previous                   (Totem *totem);
203
 
void    totem_action_seek_time                  (Totem *totem, gint64 sec);
204
 
void    totem_action_seek_relative              (Totem *totem, gint64 offset);
 
198
void    totem_action_seek_time                  (Totem *totem, gint64 msec, gboolean accurate);
 
199
void    totem_action_seek_relative              (Totem *totem, gint64 offset, gboolean accurate);
205
200
double  totem_get_volume                        (Totem *totem);
206
201
void    totem_action_volume                     (Totem *totem, double volume);
207
202
void    totem_action_volume_relative            (Totem *totem, double off_pct);