SyncControlPanelViewController.h 723 B

12345678910111213141516171819202122
  1. //
  2. // SyncControlPanelViewController.h
  3. // iSales-NPD
  4. //
  5. // Created by Ray on 7/8/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <MessageUI/MessageUI.h>
  10. @interface SyncControlPanelViewController : UIViewController<MFMailComposeViewControllerDelegate>
  11. @property (strong, nonatomic) IBOutlet UIProgressView *progress_current;
  12. @property (strong, nonatomic) IBOutlet UIProgressView *progress_overall;
  13. @property (strong, nonatomic) IBOutlet UITextView *tv_log;
  14. @property (strong, nonatomic) NSString* action_string;
  15. @property (strong, nonatomic) UIBarButtonItem *closeButton;
  16. -(void) onLogUpdate;
  17. -(void) onProgressUpdate;
  18. -(void) onSyncFinish;
  19. @end