]> git.sesse.net Git - vlc/blob - bindings/java/org/videolan/jvlc/VideoIntf.java
Add separate audio and video popup menus
[vlc] / bindings / java / org / videolan / jvlc / VideoIntf.java
1 /*
2  * Created on 28-feb-2006
3  *
4  * $Id$
5  *
6  * This program is free software; you can redistribute it
7  * and/or modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  * 
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19  * 
20  */
21 /**
22  * @author Filippo Carone <filippo@carone.org>
23  */
24
25 package org.videolan.jvlc;
26
27 public interface VideoIntf {
28     void toggleFullscreen();
29     void setFullscreen();
30     void getFullscreen();
31     
32 }