diff options
author | handbrake <[email protected]> | 2006-01-14 12:53:59 +0000 |
---|---|---|
committer | handbrake <[email protected]> | 2006-01-14 12:53:59 +0000 |
commit | a9a84221af31ca7d11d1aa182d8b152270203f9f (patch) | |
tree | da452de9a4d3bb509d59de4a65fe12e9fb8e7825 /macosx/PictureGLView.h | |
parent | 939b35fc70bb688d38b086afebd8d14d8193d2c9 (diff) |
HandBrake 0.3
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/PictureGLView.h')
-rw-r--r-- | macosx/PictureGLView.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/macosx/PictureGLView.h b/macosx/PictureGLView.h new file mode 100644 index 000000000..effbf3ee2 --- /dev/null +++ b/macosx/PictureGLView.h @@ -0,0 +1,20 @@ +/* PictureGLView */ + +#include <Cocoa/Cocoa.h> + +#include "Manager.h" + +@interface PictureGLView : NSOpenGLView + +{ + HBManager * fManager; + HBTitle * fTitle; + + uint8_t * fPicture; +} + +- (void) SetManager: (HBManager*) manager; +- (void) SetTitle: (HBTitle*) title; +- (void) ShowPicture: (int) picture; + +@end |