]> git.sesse.net Git - vlc/blob - projects/macosx/frontrow_plugin/VLCMediaLayer.h
Sync PO files
[vlc] / projects / macosx / frontrow_plugin / VLCMediaLayer.h
1 //
2 //  VLCMediaLayer.h
3 //  FRVLC
4 //
5 //  Created by hyei on 11/09/07.
6 //  Copyright 2007 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10 #import <QuartzCore/QuartzCore.h>
11 #import <VLCKit/VLCKit.h>
12 #import <OpenGL/OpenGL.h>
13
14 @interface VLCMediaLayer : CALayer
15 {
16     VLCVideoLayer * _videoLayer;
17     VLCMediaPlayer * _player;
18 }
19
20 @property(retain, nonatomic) VLCMedia * media;
21
22 @property(readonly) VLCMediaPlayer * player;
23
24 - (void)goFaster;
25 - (void)goSlower;
26 - (void)playPause;
27
28 @end