forked from esilverberg/ios-image-filters
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathiphone_filtersViewController.h
44 lines (37 loc) · 1.05 KB
/
iphone_filtersViewController.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// iphone_filtersViewController.h
// iphone-filters
//
// Created by Eric Silverberg on 6/16/11.
// Copyright 2011 Perry Street Software, Inc.
//
// Licensed under the MIT License.
//
#import <UIKit/UIKit.h>
typedef enum
{
FilterPosterize = 0,
FilterSaturate,
FilterBrightness,
FilterContrast,
FilterGamma,
FilterNoise,
FilterInvert,
FilterTotal
} FilterOptions;
@interface iphone_filtersViewController : UIViewController <UIActionSheetDelegate> {
UIImageView *imageView;
UIButton *buttonAdjustable;
UIButton *buttonPackaged;
UISlider *slider;
UIActionSheet *actionSheetAdjustable;
UIActionSheet *actionSheetPackaged;
FilterOptions activeFilter;
}
@property (nonatomic, retain) IBOutlet UIImageView *imageView;
@property (nonatomic, retain) IBOutlet UIButton *buttonAdjustable;
@property (nonatomic, retain) IBOutlet UIButton *buttonPackaged;
@property (nonatomic, retain) IBOutlet UISlider *slider;
@property (nonatomic, retain) UIActionSheet *actionSheetAdjustable;
@property (nonatomic, retain) UIActionSheet *actionSheetPackaged;
@end