the very simple test app that calls the ZXingWidget
[zxing.git] / iphone / ZXingWidget / 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         id<ZXingDelegate> delegate;
32         BOOL wasCancelled;
33 }
34
35 @property (nonatomic, assign) id<ZXingDelegate> delegate;
36 @property (nonatomic, assign) BOOL showCancel;
37 @property (nonatomic, retain) ParsedResult *result;
38 @property (nonatomic, retain) NSArray *actions;
39
40 - (id)initWithDelegate:(id<ZXingDelegate>)delegate;
41 - (BOOL)fixedFocus;
42 @end
43
44 @protocol ZXingDelegate
45 - (void)scanResult:(NSString *)result;
46 - (void)cancelled;
47 @end