forked from gobbledegook/creevey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DYJpegtranPanel.h
25 lines (22 loc) · 970 Bytes
/
DYJpegtranPanel.h
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
//Copyright 2005 Dominic Yu. Some rights reserved.
//This work is licensed under the Creative Commons
//Attribution-NonCommercial-ShareAlike License. To view a copy of this
//license, visit http://creativecommons.org/licenses/by-nc-sa/2.0/ or send
//a letter to Creative Commons, 559 Nathan Abbott Way, Stanford,
//California 94305, USA.
/* DYJpegtranPanel */
#import <Cocoa/Cocoa.h>
#import "DYJpegtran.h"
@interface DYJpegtranPanel : NSObject
@property (retain) IBOutlet NSPanel *topLevel;
@property (assign) IBOutlet NSPopUpButton *markersMenu;
@property (assign) IBOutlet NSButton *grayscaleBtn;
@property (assign) IBOutlet NSButton *optimizeBtn;
@property (assign) IBOutlet NSButton *progressiveBtn;
@property (assign) IBOutlet NSPopUpButton *transformMenu;
@property (assign) IBOutlet NSButton *trimBtn;
- (IBAction)convert:(id)sender;
- (IBAction)stopModal:(id)sender;
- (IBAction)transformChanged:(id)sender;
- (BOOL)runOptionsPanel:(DYJpegtranInfo *)i;
@end