~woodrow-shen/totem/mybranch

« back to all changes in this revision

Viewing changes to browser-plugin/idl/totemIConeAudio.idl

Tags: 2.24.3-3
* totem-mozilla.docs: ship README.browser-plugin which explains how to 
  disable the plugin for some MIME types.
* rules: remove the hack that only let totem-xine support VCDs and 
  DVDs, now that GStreamer supports them. Closes: #370789.
* 01_fake_keypresses.patch: new patch. Completely disable the broken 
  XTEST code that generates fake keypresses. Closes: #500330.
* 90_autotools.patch: regenerated.
* Build-depend on nautilus 2.22 to be sure to build the extension for 
  the correct version.
* totem-xine depends on libxine1-x.
* Standards version is 3.8.1.
* Upload to unstable.
* 04_tracker_build.patch: new patch, stolen upstream. Fix build with 
  latest tracker version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  Copyright © 2006-2008, Bastien Nocera <hadess@hadess.net
3
 
 *
4
 
 *  This library is free software; you can redistribute it and/or
5
 
 *  modify it under the terms of the GNU Lesser General Public
6
 
 *  License as published by the Free Software Foundation; either
7
 
 *  version 2.1 of the License, or (at your option) any later version.
8
 
 *
9
 
 *  This library is distributed in the hope that it will be useful,
10
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
 *  Lesser General Public License for more details.
13
 
 *
14
 
 *  You should have received a copy of the GNU Lesser General Public
15
 
 *  License along with this library; if not, write to the
16
 
 *  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
 
 *  Boston, MA 02111-1307, USA.
18
 
 */
19
 
 
20
 
#include "nsISupports.idl"
21
 
 
22
 
/* Documentation at
23
 
 * http://wiki.videolan.org/Documentation:Play_HowTo/Advanced_Use_of_VLC#Building_HTML_pages_for_Mozilla.2FFirefox.2FInternet_Explorere.2FSafari_.28VLC_version_0.8.6_and_above.29 */
24
 
 
25
 
[scriptable, uuid(d31bc3e4-00d8-46f2-a841-990d63b16347)]
26
 
interface totemIConeAudio : nsISupports
27
 
{
28
 
  attribute boolean mute;
29
 
  attribute long volume;
30
 
  attribute long track;
31
 
  attribute long channel;
32
 
  void toggleMute ();
33
 
};
34