ActiveViewController.h 854 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // ActiveViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 12/15/15.
  6. // Copyright © 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //#import "TouchLabel.h"
  10. @protocol ActiveViewController
  11. @required
  12. -(void) showHidePrice;
  13. @end
  14. @interface ActiveViewController : UIViewController <ActiveViewController>
  15. -(void) reload_container_getdata:(bool) update_data;
  16. -(void) logout;
  17. -(void) refresh_on_login;
  18. @property int refresh_type;
  19. @property bool isrefreshing;
  20. -(void)refresh_btn_click:(UILongPressGestureRecognizer*)gestureRecognizer;
  21. //-(void) showHidePrice;
  22. @property bool disable_refresh;
  23. //support scanner
  24. -(void) OnUpdateDevicesList;
  25. -(void) onDecodedData:(NSString*) value;
  26. -(void) onErrorInfo:(NSString*) errorInfo;
  27. -(void) onStatusChanged:(NSString*) status;
  28. -(void) onLogUpdate;
  29. @end