~ubuntu-branches/ubuntu/vivid/mplayerplug-in/vivid

« back to all changes in this revision

Viewing changes to Source/nsIScriptableMplayerPlugin.idl

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2005-09-16 14:46:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050916144655-f38cmp9o3kwepjl5
Tags: 3.05-1ubuntu1
* Sync with debian
* Build against gtk2
* Adjusted Build-Depends / Depends for firefox

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
interface nsIScriptableMplayerPlugin : nsISupports
12
12
{
13
13
        void Play();
 
14
        void PlayAt(in double value);
14
15
        void Pause();
15
16
        void Stop();
16
17
        void quit();
23
24
        void rewind();
24
25
        void Seek(in double value);
25
26
        void Open(in string filename);
 
27
        void SetFileName(in string filename);
 
28
        void SetIsLooping(in boolean loop);
 
29
        boolean GetIsLooping();
 
30
        void SetAutoPlay(in boolean autoPlay);
 
31
        boolean GetAutoPlay();
 
32
        void SetHREF(in string url);
 
33
        string GetHREF();
 
34
        void SetURL(in string url);
 
35
        string GetURL();
 
36
        string GetMIMEType();
26
37
        double getTime();
27
38
        double getDuration();
28
39
        double getPercent();
 
40
        boolean isplaying();
29
41
        attribute string filename;
30
42
        attribute boolean ShowControls;
31
43
        attribute boolean fullscreen;