]> git.sesse.net Git - vlc/blob - modules/gui/beos/VlcWrapper.h
Added a window to see vlc messages.
[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.16 2003/01/25 20:15:41 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     msg_subscription_t * p_sub;
39
40     InterfaceWindow *    p_window;
41     
42     vlc_bool_t           b_loop;
43     vlc_bool_t           b_mute;
44     int                  i_part;
45     audio_volume_t       i_saved_volume;
46     int                  i_channel;
47     bool                 b_dvdold;
48     
49     VlcWrapper *         p_wrapper;
50 };
51
52 /*****************************************************************************
53  * VlcWrapper
54  *****************************************************************************
55  * This class makes the link between the BeOS interface and the vlc core.
56  * There is only one VlcWrapper instance at any time, which is stored
57  * in p_intf->p_sys->p_wrapper
58  *****************************************************************************/
59 class VlcWrapper
60 {
61 public:
62     VlcWrapper( intf_thread_t *p_intf );
63     ~VlcWrapper();
64     
65     bool UpdateInputAndAOut();
66     
67     /* Input */
68     bool         HasInput();
69     int          InputStatus();
70     int          InputRate();
71     void         InputSlower();
72     void         InputFaster();
73     BList *      GetChannels( int i_cat );
74     void         ToggleLanguage( int i_language );
75     void         ToggleSubtitle( int i_subtitle );
76     const char * GetTimeAsString();
77     float        GetTimeAsFloat();
78     void         SetTimeAsFloat( float i_offset );
79     bool         IsPlaying();
80         
81     /* Playlist */
82     void    OpenFiles( BList *o_files, bool replace = true );
83     void    OpenDisc( BString o_type, BString o_device,
84                      int i_title, int i_chapter );
85     int     PlaylistSize();
86     char *  PlaylistItemName( int );
87     int     PlaylistCurrent();
88     bool    PlaylistPlay();
89     void    PlaylistPause();
90     void    PlaylistStop();
91     void    PlaylistNext();
92     void    PlaylistPrev();
93     bool    PlaylistPlaying();
94     void    GetPlaylistInfo( int32& currentIndex,
95                              int32& maxIndex );
96     void    PlaylistJumpTo( int );
97     void    GetNavCapabilities( bool * canSkipPrev,
98                                 bool * canSkipNext );
99     void    NavigatePrev();
100     void    NavigateNext();
101
102     /* Audio */
103     bool           HasAudio();
104     unsigned short GetVolume();
105     void           SetVolume( int value );
106     void           VolumeMute();
107     void           VolumeRestore();
108     bool           IsMuted();
109
110     /* DVD */
111     bool    HasTitles();
112     BList * GetTitles();
113     void    PrevTitle();
114     void    NextTitle();
115     void    ToggleTitle( int i_title );
116     void    TitleInfo( int32& currentIndex, int32& maxIndex );
117
118     bool    HasChapters();
119     BList * GetChapters();
120     void    PrevChapter();
121     void    NextChapter();
122     void    ToggleChapter( int i_chapter );
123     void    ChapterInfo( int32& currentIndex, int32& maxIndex );
124     
125     /* Miscellanous */
126     void         LoadSubFile( char * psz_file );
127     
128 private:
129     intf_thread_t *   p_intf;
130     input_thread_t *  p_input;
131     playlist_t *      p_playlist;
132     aout_instance_t * p_aout;
133 };