1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #import <UIKit/UIKit.h>
- #import <MobileCoreServices/MobileCoreServices.h>
- #import <MediaPlayer/MediaPlayer.h>
- #import <AudioToolbox/AudioToolbox.h>
- #import <DZNEmptyDataSet/UIScrollView+EmptyDataSet.h>
- #import "AHKActionSheet.h"
- #import "BKPasscodeViewController.h"
- #import "NSString+TruncateToWidth.h"
- #import "CCLogin.h"
- #import "CCCellMain.h"
- #import "CCCellMainTransfer.h"
- #import "CCDetail.h"
- #import "CCGraphics.h"
- #import "CCSection.h"
- #import "CCUtility.h"
- #import "CCHud.h"
- #import "CCMenuAccount.h"
- #import "CCPeekPop.h"
- #import <MGSwipeTableCell/MGSwipeTableCell.h>
- @class tableMetadata;
- @interface CCMain : UIViewController <UITableViewDataSource, UITableViewDelegate, UIActionSheetDelegate, UIGestureRecognizerDelegate, UIViewControllerPreviewingDelegate, BKPasscodeViewControllerDelegate, UISplitViewControllerDelegate, UIPopoverControllerDelegate, UIDocumentMenuDelegate, UIDocumentPickerDelegate, UISearchResultsUpdating, UISearchControllerDelegate, UISearchBarDelegate, UIScrollViewDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate>
- @property (nonatomic, weak) IBOutlet UITableView *tableView;
- @property (nonatomic, strong) tableMetadata *metadata;
- @property (nonatomic, strong) tableMetadata *metadataForPushDetail;
- @property (nonatomic, strong) NSString *selectorForPushDetail;
- @property (nonatomic, strong) NSString *serverUrl;
- @property (nonatomic, strong) NSString *titleMain;
- @property (nonatomic, weak) CCDetail *detailViewController;
- @property (nonatomic, strong) UISearchController *searchController;
- @property (nonatomic, strong) UIView *reMenuBackgroundView;
- @property (nonatomic, strong) UITapGestureRecognizer *singleFingerTap;
- @property (nonatomic, strong) NSString *blinkFileNamePath;
- @property (nonatomic, readonly, strong) UIImage *cellFavouriteImage;
- @property (nonatomic, readonly, strong) UIImage *cellTrashImage;
- @property BOOL isSelectedMode;
- - (void)shouldPerformSegue:(tableMetadata *)metadata selector:(NSString *)selector;
- - (void)performSegueDirectoryWithControlPasscode:(BOOL)controlPasscode metadata:(tableMetadata *)metadata blinkFileNamePath:(NSString *)blinkFileNamePath;
- - (void)saveToPhotoAlbum:(tableMetadata *)metadata;
- - (void)copyFileToPasteboard:(tableMetadata *)metadata;
- - (void)closeAllMenu;
- - (void)setUINavigationBarDefault;
- - (void)readFolder:(NSString *)serverUrl;
- - (void)readFileReloadFolder;
- - (void)uploadFileAsset:(NSMutableArray *)assets serverUrl:(NSString *)serverUrl useSubFolder:(BOOL)useSubFolder session:(NSString *)session;
- - (void)reloadDatasource:(NSString *)serverUrl ocId:(NSString *)ocId action:(NSInteger)action;
- - (void)clearDateReadDataSource:(NSNotification *)notification;
- - (void)cancelSearchBar;
- - (void)openAssetsPickerController;
- - (void)openImportDocumentPicker;
- - (void)createFolder;
- @end
|