|
@@ -41,6 +41,8 @@
|
|
#import "CCSettings.h"
|
|
#import "CCSettings.h"
|
|
#import "CCFavorites.h"
|
|
#import "CCFavorites.h"
|
|
|
|
|
|
|
|
+@class CCLoginWeb;
|
|
|
|
+
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate, BKPasscodeLockScreenManagerDelegate, BKPasscodeViewControllerDelegate, LMMediaPlayerViewDelegate, TWMessageBarStyleSheet, CCNetworkingDelegate>
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate, BKPasscodeLockScreenManagerDelegate, BKPasscodeViewControllerDelegate, LMMediaPlayerViewDelegate, TWMessageBarStyleSheet, CCNetworkingDelegate>
|
|
|
|
|
|
// Timer Process
|
|
// Timer Process
|
|
@@ -118,6 +120,8 @@
|
|
@property (nonatomic, retain) CCSettings *activeSettings;
|
|
@property (nonatomic, retain) CCSettings *activeSettings;
|
|
@property (nonatomic, retain) CCActivity *activeActivity;
|
|
@property (nonatomic, retain) CCActivity *activeActivity;
|
|
@property (nonatomic, retain) CCTransfers *activeTransfers;
|
|
@property (nonatomic, retain) CCTransfers *activeTransfers;
|
|
|
|
+@property (nonatomic, retain) CCLogin *activeLogin;
|
|
|
|
+@property (nonatomic, retain) CCLoginWeb *activeLoginWeb;
|
|
|
|
|
|
@property (nonatomic, strong) NSMutableDictionary *listMainVC;
|
|
@property (nonatomic, strong) NSMutableDictionary *listMainVC;
|
|
@property (nonatomic, strong) NSMutableDictionary *listProgressMetadata;
|
|
@property (nonatomic, strong) NSMutableDictionary *listProgressMetadata;
|
|
@@ -128,6 +132,9 @@
|
|
// Maintenance Mode
|
|
// Maintenance Mode
|
|
@property BOOL maintenanceMode;
|
|
@property BOOL maintenanceMode;
|
|
|
|
|
|
|
|
+// Login View
|
|
|
|
+- (void)openLoginView:(id)delegate loginType:(enumLoginType)enumLoginType;
|
|
|
|
+
|
|
// Setting Active Account
|
|
// Setting Active Account
|
|
- (void)settingActiveAccount:(NSString *)activeAccount activeUrl:(NSString *)activeUrl activeUser:(NSString *)activeUser activePassword:(NSString *)activePassword;
|
|
- (void)settingActiveAccount:(NSString *)activeAccount activeUrl:(NSString *)activeUrl activeUser:(NSString *)activeUser activePassword:(NSString *)activePassword;
|
|
|
|
|