summaryrefslogtreecommitdiffstats
path: root/macosx/PictureController.h
blob: c2ea23d5ca2fbea82b1dd801f0f4c99fb5fa66cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* $Id: PictureController.h,v 1.6 2005/04/14 20:40:05 titer Exp $

   This file is part of the HandBrake source code.
   Homepage: <http://handbrake.fr/>.
   It may be used under the terms of the GNU General Public License. */

#import <Cocoa/Cocoa.h>

#import "HBFilters.h"
#import "HBPicture.h"

@protocol HBPictureControllerDelegate <NSObject>

- (IBAction)showPreviewWindow:(id)sender;

@end

@interface HBPictureController : NSWindowController <NSWindowDelegate>

@property (nonatomic, readwrite, retain) HBFilters *filters;
@property (nonatomic, readwrite, retain) HBPicture *picture;

@property (nonatomic, readwrite, assign) id <HBPictureControllerDelegate> delegate;

- (void)showPictureWindow;

@end