]> git.sesse.net Git - vlc/blob - modules/gui/beos/VlcWrapper.h
Fixed language and subtitle selection.
[vlc] / modules / gui / beos / VlcWrapper.h
1 /*****************************************************************************
2  * VlcWrapper.h: BeOS plugin for vlc (derived from MacOS X port)
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: VlcWrapper.h,v 1.11 2003/01/08 02:09:15 titer Exp $
6  *
7  * Authors: Florian G. Pflug <fgp@phlo.org>
8  *          Jon Lech Johansen <jon-vl@nanocrew.net>
9  *          Tony Castley <tony@castley.net>
10  *          Stephan Aßmus <stippi@yellowbites.com>
11  *          Eric Petit <titer@videolan.org>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  * 
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
26  *****************************************************************************/
27
28 #define SEEKSLIDER_RANGE 2048
29
30 class InterfaceWindow;
31 class VlcWrapper;
32
33 /*****************************************************************************
34  * intf_sys_t: internal variables of the BeOS interface
35  *****************************************************************************/
36 struct intf_sys_t
37 {
38     InterfaceWindow * p_window;
39     
40     vlc_bool_t        b_loop;
41     vlc_bool_t        b_mute;
42     int               i_part;
43     audio_volume_t    i_saved_volume;
44     int               i_channel;
45     
46     VlcWrapper * p_wrapper;
47 };
48
49 /*****************************************************************************
50  * VlcWrapper
51  *****************************************************************************
52  * This class makes the link between the BeOS interface and the vlc core.
53  * There is only one VlcWrapper instance at any time, which is stored
54  * in p_intf->p_sys->p_wrapper
55  *****************************************************************************/
56 class VlcWrapper
57 {
58 public:
59     VlcWrapper( intf_thread_t *p_intf );
60     ~VlcWrapper();
61     
62     bool UpdateInputAndAOut();
63     
64     /* input */
65     bool HasInput();
66     int InputStatus();
67     int InputRate();
68     int InputTell();
69     int InputSize();
70     void InputSlower();
71     void InputFaster();
72     BList * InputGetChannels( int i_cat );
73     void openFiles( BList *o_files, bool replace = true );
74     void openDisc( BString o_type, BString o_device,
75                    int i_title, int i_chapter );
76     void ToggleLanguage( int i_language );
77     void ToggleSubtitle( int i_subtitle );
78     const char* getTimeAsString();
79     float getTimeAsFloat();
80     void setTimeAsFloat( float i_offset );
81     bool IsPlaying();
82         
83     /* Playlist */
84     int PlaylistSize();
85     char *PlaylistItemName( int );
86     int PlaylistCurrent();
87     int PlaylistStatus();
88     bool PlaylistPlay();
89     void PlaylistPause();
90     void PlaylistStop();
91     void PlaylistNext();
92     void PlaylistPrev();
93     void PlaylistSkip(int i);
94     void PlaylistGoto(int i);
95     void PlaylistLoop(); 
96     BList* PlaylistAsArray();
97     bool PlaylistPlaying();
98     void getPlaylistInfo( int32& currentIndex,
99                             int32& maxIndex );
100     void PlaylistJumpTo( int );
101     void getNavCapabilities( bool* canSkipPrev,
102                              bool* canSkipNext );
103         void navigatePrev();
104         void navigateNext();
105
106     /* audio */
107     unsigned short GetVolume();
108     void SetVolume( int value );
109     void VolumeMute();
110     void VolumeRestore();
111     bool IsMuted();
112     bool HasAudio();
113
114     /* DVD */
115     bool HasTitles();
116     void PrevTitle();
117     void NextTitle();
118     bool HasChapters();
119     void PrevChapter();
120     void NextChapter();
121     void TitleInfo( int32& currentIndex, int32& maxIndex );
122     void ChapterInfo( int32& currentIndex, int32& maxIndex );
123     void toggleTitle( int i_title );
124     void toggleChapter( int i_chapter );
125     
126 private:
127     intf_thread_t * p_intf;
128     input_thread_t * p_input;
129     playlist_t * p_playlist;
130     aout_instance_t * p_aout;
131 };
132