1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #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, OCNetworkingDelegate, BKPasscodeViewControllerDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate>
- @property (nonatomic, weak) id <CCMoveDelegate> delegate;
- @property (nonatomic, strong) NSOperationQueue *networkingOperationQueue;
- @property BOOL includeDirectoryE2EEncryption;
- @property BOOL hideCreateFolder;
- @property (nonatomic, strong) NSString *serverUrl;
- @property (nonatomic, strong) tableMetadata *passMetadata;
- @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>
- - (void)moveServerUrlTo:(NSString *)serverUrlTo title:(NSString *)title;
- @optional - (void)dismissMove;
- @end
|