| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //
- // 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>
- #endif
- -(void) reload_container_getdata:(bool) update_data;
- -(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
|