]> git.sesse.net Git - vlc/blob - modules/gui/beos/VlcWrapper.h
18ca5d0881c860cce9f3aa39d192ff793d488945
[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.23 2003/05/12 19:59:48 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 #include <SupportKit.h>
29
30 #define SEEKSLIDER_RANGE 2048
31
32 class InterfaceWindow;
33 class VlcWrapper;
34
35 /*****************************************************************************
36  * intf_sys_t: internal variables of the BeOS interface
37  *****************************************************************************/
38 struct intf_sys_t
39 {
40     msg_subscription_t * p_sub;
41
42     InterfaceWindow *    p_window;
43     
44     vlc_bool_t           b_loop;
45     vlc_bool_t           b_mute;
46     int                  i_part;
47     audio_volume_t       i_saved_volume;
48     int                  i_channel;
49     
50     VlcWrapper *         p_wrapper;
51 };
52
53 /* Necessary because of i18n */
54 const char * _AddEllipsis( char * string );
55
56 /*****************************************************************************
57  * VlcWrapper
58  *****************************************************************************
59  * This class makes the link between the BeOS interface and the vlc core.
60  * There is only one VlcWrapper instance at any time, which is stored
61  * in p_intf->p_sys->p_wrapper
62  *****************************************************************************/
63 class VlcWrapper
64 {
65 public:
66     VlcWrapper( intf_thread_t *p_intf );
67     ~VlcWrapper();
68     
69     bool UpdateInput();
70     
71     /* Input */
72     bool         HasInput();
73     int          InputStatus();
74     int          InputRate();
75     void         InputSlower();
76     void         InputFaster();
77     BList *      GetChannels( int i_cat );
78     void         ToggleLanguage( int i_language );
79     void         ToggleSubtitle( int i_subtitle );
80     const char * GetTimeAsString();
81     float        GetTimeAsFloat();
82     void         SetTimeAsFloat( float i_offset );
83     bool         IsPlaying();
84         
85     /* Playlist */
86     void    OpenFiles( BList *o_files, bool replace = true,
87                                    int32 index = -1 );
88     void    OpenDisc( BString o_type, BString o_device,
89                      int i_title, int i_chapter );
90     int     PlaylistSize();
91     char *  PlaylistItemName( int );
92     int     PlaylistCurrent();
93     bool    PlaylistPlay();
94     void    PlaylistPause();
95     void    PlaylistStop();
96     void    PlaylistNext();
97     void    PlaylistPrev();
98     bool    PlaylistPlaying();
99     void    GetPlaylistInfo( int32& currentIndex,
100                              int32& maxIndex );
101     void    PlaylistJumpTo( int );
102     void    GetNavCapabilities( bool * canSkipPrev,
103                                 bool * canSkipNext );
104     void    NavigatePrev();
105     void    NavigateNext();
106
107         /* Playlist manipulation */
108         bool    PlaylistLock() const;
109         void    PlaylistUnlock() const;
110         // playlist must be locked prior to calling all of these!
111         void*   PlaylistItemAt( int index ) const;
112                         // both functions return a copy of the removed item
113                         // so that it can be added at another index
114         void*   PlaylistRemoveItem( int index ) const;
115         void*   PlaylistRemoveItem( void* item ) const;
116                         // uses playlist_AddItem()
117         bool    PlaylistAddItem( void* item, int index ) const;
118         void*   PlaylistCloneItem( void* item ) const;
119                         // only modifies playlist, doesn't effect playback
120         void    PlaylistSetPlaying( int index ) const;
121
122     /* Audio */
123     unsigned short GetVolume();
124     void           SetVolume( int value );
125     void           VolumeMute();
126     void           VolumeRestore();
127     bool           IsMuted();
128
129     /* DVD */
130     bool    HasTitles();
131     BList * GetTitles();
132     void    PrevTitle();
133     void    NextTitle();
134     void    ToggleTitle( int i_title );
135     void    TitleInfo( int32& currentIndex, int32& maxIndex );
136
137     bool    HasChapters();
138     BList * GetChapters();
139     void    PrevChapter();
140     void    NextChapter();
141     void    ToggleChapter( int i_chapter );
142     void    ChapterInfo( int32& currentIndex, int32& maxIndex );
143     
144     /* Miscellanous */
145     void LoadSubFile( const char * psz_file );
146     void FilterChange();
147     
148 private:
149     intf_thread_t *   p_intf;
150     input_thread_t *  p_input;
151     playlist_t *      p_playlist;
152 };