ScannerSettingViewController.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // ViewController.h
  3. // Test_scan
  4. //
  5. // Created by Ray on 12/22/15.
  6. // Copyright © 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //#import "ScanApiHelper.h"
  10. #import <MessageUI/MessageUI.h>
  11. #import "ActiveViewController.h"
  12. @interface ScannerSettingViewController : ActiveViewController</*ScanApiHelperDelegate,*/MFMailComposeViewControllerDelegate>
  13. //{
  14. // NSMutableArray* _devices;
  15. //}
  16. @property BOOL softScannerEnabled;
  17. @property (strong, nonatomic) IBOutlet UISwitch *scan_switch;
  18. @property (strong, nonatomic) IBOutlet UIButton *conn_btn;
  19. @property (strong, nonatomic) IBOutlet UITextView *tv_info;
  20. @property (strong, nonatomic) IBOutlet UILabel *Status;
  21. @property (strong, nonatomic) IBOutlet UITableView *dev_table;
  22. @property (strong, nonatomic) IBOutlet UITextField *Entry;
  23. //@property (strong, nonatomic) ScanApiHelper* ScanApi;
  24. //@property (strong, nonatomic) NSTimer* ScanApiConsumer;
  25. //@property (nonatomic) BOOL doAppDataConfirmation;
  26. @property (strong, nonatomic) IBOutlet UILabel *appinfoLabel;
  27. @property (strong, nonatomic) IBOutlet UISwitch *auto_launch_switch;
  28. @property (nonatomic , copy) void (^onDismissVC)();
  29. //@property (strong, nonatomic) NSString *scanApiVersion;
  30. @end