| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- //
- // ActiveViewController.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 12/15/15.
- // Copyright © 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- //#import "TouchLabel.h"
- #import "NotificationNameCenter.h"
- //#import "ScanApiHelper.h"
- #import "AppDelegateBase.h"
- @protocol ActiveViewController
- @required
- -(void) showHidePrice;
- @end
- #ifdef RA_NOTIFICATION
- @interface ActiveViewController : UIViewController <ActiveViewController,ScannerEventsFeedback>
- #else
- @interface ActiveViewController : UIViewController <ActiveViewController>
- -(void) reload_container_getdata:(bool) update_data;
- #endif
- -(void) logout;
- -(void) refresh_on_login;
- @property int refresh_type;
- @property bool isrefreshing;
- -(void)refresh_btn_click:(UILongPressGestureRecognizer*)gestureRecognizer;
- //-(void) showHidePrice;
- @property bool disable_refresh;
- #ifndef RA_NOTIFICATION
- //support scanner
- -(void) OnUpdateDevicesList;
- -(void) onDecodedData:(NSString*) value;
- -(void) onErrorInfo:(NSString*) errorInfo;
- -(void) onStatusChanged:(NSString*) status;
- -(void) onLogUpdate;
- #else
- @property bool support_scanner;
- #endif
- - (void)reRefreshView;
- @property NotificationRefreshLevel notification_refreshLevel;
- #pragma mark - child class response notification
- -(void) refresh_ui;
- -(void) reload_data;
- -(void) clear_data;
- -(void) refresh_price;
- +(void) Notify:(NSString*) arr_receiver Message:(NSString*)notification_msg ;
- @end
|