[iphone] Memory leak fixed. Widget does not crash anymore after a few seconds. No...
[zxing.git] / iphone / ZXingWidget / Classes / ZXingWidgetController.h
1 /**
2  * Copyright 2009 Jeff Verkoeyen
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *    http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <UIKit/UIKit.h>
18 #include <AudioToolbox/AudioToolbox.h>
19 #include "Decoder.h"
20 #include "ParsedResult.h"
21 #include "OverlayView.h"
22
23 @protocol ZXingDelegate;
24
25 @interface ZXingWidgetController : UIImagePickerController <DecoderDelegate, CancelDelegate> {
26   ParsedResult *result;
27   NSArray *actions;       
28   OverlayView *overlayView;
29   SystemSoundID beepSound;
30   BOOL showCancel;
31   NSURL *soundToPlay;
32   id<ZXingDelegate> delegate;
33   BOOL wasCancelled;
34   BOOL oneDMode;
35 }
36
37 @property (nonatomic, assign) id<ZXingDelegate> delegate;
38 @property (nonatomic, assign) BOOL showCancel;
39 @property (nonatomic, assign) NSURL *soundToPlay;
40 @property (nonatomic, assign) BOOL oneDMode;
41 @property (nonatomic, retain) ParsedResult *result;
42 @property (nonatomic, retain) NSArray *actions;
43
44 - (id)initWithDelegate:(id<ZXingDelegate>)delegate;
45 - (BOOL)fixedFocus;
46 @end
47
48 @protocol ZXingDelegate
49 - (void)scanResult:(NSString *)result;
50 - (void)cancelled;
51 @end