]> git.sesse.net Git - vlc/blob - modules/gui/beos/VlcWrapper.h
+ macosx/equalizer.m: missing vlc_object_release()
[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.26 2003/06/22 00:40:18 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     int                  i_channel;
48     
49     VlcWrapper *         p_wrapper;
50 };
51
52 /* Necessary because of i18n */
53 const char * _AddEllipsis( char * string );
54
55 /*****************************************************************************
56  * VlcWrapper
57  *****************************************************************************
58  * This class makes the link between the BeOS interface and the vlc core.
59  * There is only one VlcWrapper instance at any time, which is stored
60  * in p_intf->p_sys->p_wrapper
61  *****************************************************************************/
62 class VlcWrapper
63 {
64 public:
65     VlcWrapper( intf_thread_t *p_intf );
66     ~VlcWrapper();
67     
68     /* Input */
69     void         UpdateInput();
70     bool         HasInput();
71     int          InputStatus();
72     int          InputRate();
73     void         InputSetRate( int rate );
74     BList *      GetChannels( int i_cat );
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     void    OpenFiles( BList *o_files, bool replace = true,
84                                    int32 index = -1 );
85     void    OpenDisc( BString o_type, BString o_device,
86                      int i_title, int i_chapter );
87     int     PlaylistSize();
88     char *  PlaylistItemName( int );
89     int     PlaylistCurrent();
90     bool    PlaylistPlay();
91     void    PlaylistPause();
92     void    PlaylistStop();
93     void    PlaylistNext();
94     void    PlaylistPrev();
95     bool    PlaylistPlaying();
96     void    GetPlaylistInfo( int32& currentIndex,
97                              int32& maxIndex );
98     void    PlaylistJumpTo( int );
99     void    GetNavCapabilities( bool * canSkipPrev,
100                                 bool * canSkipNext );
101     void    NavigatePrev();
102     void    NavigateNext();
103
104         /* Playlist manipulation */
105         bool    PlaylistLock() const;
106         void    PlaylistUnlock() const;
107         // playlist must be locked prior to calling all of these!
108         void*   PlaylistItemAt( int index ) const;
109                         // both functions return a copy of the removed item
110                         // so that it can be added at another index
111         void*   PlaylistRemoveItem( int index ) const;
112         void*   PlaylistRemoveItem( void* item ) const;
113                         // uses playlist_AddItem()
114         bool    PlaylistAddItem( void* item, int index ) const;
115         void*   PlaylistCloneItem( void* item ) const;
116                         // only modifies playlist, doesn't effect playback
117         void    PlaylistSetPlaying( int index ) const;
118
119     /* Audio */
120     unsigned short GetVolume();
121     void           SetVolume( int value );
122     void           VolumeMute();
123     void           VolumeRestore();
124     bool           IsMuted();
125
126     /* DVD */
127     bool    IsUsingMenus();
128     bool    HasTitles();
129     BList * GetTitles();
130     void    PrevTitle();
131     void    NextTitle();
132     void    ToggleTitle( int i_title );
133     void    TitleInfo( int32& currentIndex, int32& maxIndex );
134
135     bool    HasChapters();
136     BList * GetChapters();
137     void    PrevChapter();
138     void    NextChapter();
139     void    ToggleChapter( int i_chapter );
140     void    ChapterInfo( int32& currentIndex, int32& maxIndex );
141     
142     /* Miscellanous */
143     void LoadSubFile( const char * psz_file );
144     void FilterChange();
145     
146 private:
147     intf_thread_t *   p_intf;
148     input_thread_t *  p_input;
149     playlist_t *      p_playlist;
150 };