]> git.sesse.net Git - vlc/blob - modules/gui/beos/VlcWrapper.h
36d9aaf1e90725e5a739892e7de7b6f01c84a2c2
[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.13 2003/01/14 14:48:55 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     void InputSlower();
69     void InputFaster();
70     BList * InputGetChannels( int i_cat );
71     void openFiles( BList *o_files, bool replace = true );
72     void openDisc( BString o_type, BString o_device,
73                    int i_title, int i_chapter );
74     void LoadSubFile( char * psz_file );
75     void ToggleLanguage( int i_language );
76     void ToggleSubtitle( int i_subtitle );
77     const char* getTimeAsString();
78     float getTimeAsFloat();
79     void setTimeAsFloat( float i_offset );
80     bool IsPlaying();
81         
82     /* Playlist */
83     int PlaylistSize();
84     char *PlaylistItemName( int );
85     int PlaylistCurrent();
86     int PlaylistStatus();
87     bool PlaylistPlay();
88     void PlaylistPause();
89     void PlaylistStop();
90     void PlaylistNext();
91     void PlaylistPrev();
92     void PlaylistSkip(int i);
93     void PlaylistGoto(int i);
94     void PlaylistLoop(); 
95     BList* PlaylistAsArray();
96     bool PlaylistPlaying();
97     void getPlaylistInfo( int32& currentIndex,
98                             int32& maxIndex );
99     void PlaylistJumpTo( int );
100     void getNavCapabilities( bool* canSkipPrev,
101                              bool* canSkipNext );
102         void navigatePrev();
103         void navigateNext();
104
105     /* audio */
106     unsigned short GetVolume();
107     void SetVolume( int value );
108     void VolumeMute();
109     void VolumeRestore();
110     bool IsMuted();
111     bool HasAudio();
112
113     /* DVD */
114     bool HasTitles();
115     void PrevTitle();
116     void NextTitle();
117     bool HasChapters();
118     void PrevChapter();
119     void NextChapter();
120     void TitleInfo( int32& currentIndex, int32& maxIndex );
121     void ChapterInfo( int32& currentIndex, int32& maxIndex );
122     void toggleTitle( int i_title );
123     void toggleChapter( int i_chapter );
124     
125 private:
126     intf_thread_t * p_intf;
127     input_thread_t * p_input;
128     playlist_t * p_playlist;
129     aout_instance_t * p_aout;
130 };
131