123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #import <UIKit/UIKit.h>
- #import "TWMessageBarManager.h"
- #import "UIScrollView+EmptyDataSet.h"
- #import "CCBKPasscode.h"
- #import "CCUtility.h"
- #import "OCNetworking.h"
- #import "CCHud.h"
- @class tableMetadata;
- @protocol CCMoveDelegate;
- @interface CCMove : UITableViewController <UIAlertViewDelegate, UITableViewDelegate, BKPasscodeViewControllerDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate>
- @property (nonatomic, weak) id <CCMoveDelegate> delegate;
- @property (nonatomic, strong) NSOperationQueue *networkingOperationQueue;
- @property BOOL includeDirectoryE2EEncryption;
- @property BOOL includeImages;
- @property BOOL hideCreateFolder;
- @property BOOL hideMoveutton;
- @property BOOL selectFile;
- @property (nonatomic, strong) NSString *serverUrl;
- @property (nonatomic, strong) tableMetadata *passMetadata;
- @property (nonatomic, strong) NSString *type;
- @property (nonatomic) NSUInteger failedAttempts;
- @property (nonatomic, strong) NSDate *lockUntilDate;
- @property (nonatomic, strong) UIColor *barTintColor;
- @property (nonatomic, strong) UIColor *tintColor;
- @property (nonatomic, strong) UIColor *tintColorTitle;
- @property (nonatomic, weak) IBOutlet UIBarButtonItem *cancel;
- @property (nonatomic, weak) IBOutlet UIBarButtonItem *move;
- @property (nonatomic, weak) IBOutlet UIBarButtonItem *create;
- @end
- @protocol CCMoveDelegate <NSObject>
- @optional - (void)moveServerUrlTo:(NSString *)serverUrlTo title:(NSString *)title type:(NSString *)type;
- @optional - (void)dismissMove;
- @optional - (void)selectMetadata:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl;
- @end
|