ScannerViewController.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. Copyright 2013 Scott Logic Ltd
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. #import <UIKit/UIKit.h>
  14. //#import "ScannerControlViewController.h"
  15. #import "ScannerControllerView.h"
  16. #import "ScanResultViewController.h"
  17. @interface ScannerViewController : UIViewController
  18. @property bool handelOutput;
  19. @property (strong, nonatomic) IBOutlet UIButton *scanButton;
  20. //@property (strong,nonatomic) ScannerControlViewController * ScannerControl;
  21. @property (strong, nonatomic) IBOutlet ScannerControllerView *backgroundView;
  22. //@property (strong,nonatomic) ScannerControllerView* scannerController;
  23. @property (strong, nonatomic) IBOutlet UIImageView *focusZone;
  24. @property (weak, nonatomic) IBOutlet UIButton *typeButton;
  25. @property (strong, nonatomic) ScanResultViewController* resultvc;
  26. @property (strong, nonatomic) IBOutlet UIButton *targetButton;
  27. @property int target;
  28. @property int type;
  29. @property (strong, nonatomic) NSString *scan_val;
  30. @property bool auto_style;
  31. @end