]> git.sesse.net Git - vlc/blob - plugins/beos/VideoWindow.h
* Header cleaning: filled all empty authors fields, added CVS $Id stuff.
[vlc] / plugins / beos / VideoWindow.h
1 /*****************************************************************************
2  * VideoWindow.h: BeOS video window class prototype
3  *****************************************************************************
4  * Copyright (C) 1999, 2000, 2001 VideoLAN
5  * $Id: VideoWindow.h,v 1.4 2001/03/21 13:42:33 sam Exp $
6  *
7  * Authors: Jean-Marc Dressler <polux@via.ecp.fr>
8  *          Tony Castley <tcastley@mail.powerup.com.au>
9  *          Richard Shepherd <richard@rshepherd.demon.co.uk>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25 #include <Slider.h>
26 #include <Accelerant.h>
27 #include <Bitmap.h>
28
29 class VLCView : public BView
30 {
31 public:
32         VLCView( BRect bounds);
33         ~VLCView();
34         
35         virtual void MouseDown(BPoint point);
36 };
37
38
39 class VideoWindow : public BWindow
40 {
41 public:
42     // standard constructor and destructor
43     VideoWindow( BRect frame, const char *name,
44                  struct vout_thread_s *p_video_output); 
45     ~VideoWindow();
46
47     // standard window member
48     virtual bool    QuitRequested();
49     virtual void    FrameResized(float width, float height);
50     virtual void    MessageReceived(BMessage *message);
51     virtual void        Zoom(BPoint origin, float width, float height);
52
53     // this is the hook controling direct screen connection
54     int32                   i_bytes_per_pixel;
55     int32                   i_screen_depth;
56     struct vout_thread_s   *p_vout;
57      
58     int32           fRowBytes;
59
60     uint32          fNumClipRects;
61
62     int                         i_buffer_index;
63     bool            fDirty;
64     thread_id       fDrawThreadID;
65     BBitmap                     *bitmap[2];
66     VLCView                     *view;
67     bool                        teardownwindow;
68     bool                        is_zoomed;
69     bool                        fUsingOverlay;
70     BScreen                     *screen;
71
72 private:
73         display_mode old_mode;
74         BRect rect;
75
76 };
77