xref: /haiku/src/add-ons/media/media-add-ons/videowindow/VideoWindow.h (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 /*
2  * Copyright (C) 2006-2008 Marcus Overhagen <marcus@overhagen.de>. All rights reserved.
3  * Copyright (C) 2008 Maurice Kalinowski <haiku@kaldience.com>. All rights reserved.
4  *
5  * Distributed under the terms of the MIT License.
6  */
7 #ifndef __VIDEO_WINDOW_H
8 #define __VIDEO_WINDOW_H
9 
10 
11 #include <Window.h>
12 
13 
14 class VideoView;
15 
16 
17 class VideoWindow : public BWindow
18 {
19 public:
20 	VideoWindow(BRect size, VideoView* view);
21 	~VideoWindow();
22 	void MessageReceived(BMessage *msg);
23 
24 private:
25 	VideoView *		fVideoView;
26 };
27 
28 #endif
29