123456789101112131415161718192021222324252627282930313233343536373839 |
- /*****************************************************************************
- * VLCCloudStorageTableViewController.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- * Fabio Ritrovato <sephiroth87 # videolan.org>
- * Carola Nitz <nitz.carola # googlemail.com>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "VLCCloudStorageTableViewCell.h"
- #import "VLCCloudStorageController.h"
- @interface VLCCloudStorageTableViewController : UIViewController <VLCCloudStorageDelegate>
- @property (nonatomic, strong) IBOutlet UITableView *tableView;
- @property (nonatomic, strong) IBOutlet UIView *loginToCloudStorageView;
- @property (nonatomic, strong) IBOutlet UIButton *loginButton;
- @property (nonatomic, strong) IBOutlet UIButton *flatLoginButton;
- @property (nonatomic, strong) IBOutlet UIImageView *cloudStorageLogo;
- @property (nonatomic, strong) UIBarButtonItem *numberOfFilesBarButtonItem;
- @property (nonatomic, strong) VLCCloudStorageController *controller;
- @property (nonatomic, strong) NSString *currentPath;
- @property (nonatomic) BOOL authorizationInProgress;
- @property (nonatomic, strong) UIActivityIndicatorView *activityIndicator;
- - (IBAction)loginAction:(id)sender;
- - (void)_requestInformationForCurrentPath;
- - (void)_showLoginPanel;
- - (void)updateViewAfterSessionChange;
- - (void)goBack;
- @end
|