123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #import <UIKit/UIKit.h>
- #import "CCUtility.h"
- #import "CCHud.h"
- @class tableMetadata;
- @protocol NCSelectDestinationDelegate;
- @interface NCSelectDestination : UITableViewController <UIAlertViewDelegate, UITableViewDelegate>
- @property (nonatomic, weak) id <NCSelectDestinationDelegate> delegate;
- @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, 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 NCSelectDestinationDelegate <NSObject>
- @optional - (void)moveServerUrlTo:(NSString *)serverUrlTo title:(NSString *)title type:(NSString *)type;
- @optional - (void)dismissMove;
- @optional - (void)selectMetadata:(tableMetadata *)metadata serverUrl:(NSString *)serverUrl;
- @end
|