VLCDeletionCapableViewController.h 877 B

123456789101112131415161718192021222324
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2015 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Tobias Conradi <videolan # tobias-conradi.de>
  8. * Felix Paul Kühne <fkuehne # videolan.org>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import <UIKit/UIKit.h>
  13. @interface VLCDeletionCapableViewController : UIViewController
  14. @property (nonatomic, weak, nullable) IBOutlet UIView *deleteHintView;
  15. @property (nonatomic, readonly, nullable) NSIndexPath *indexPathToDelete;
  16. @property (nonatomic, readonly, nullable) NSString *itemToDelete;
  17. - (void)deleteFileAtIndex:(NSIndexPath * _Nullable)indexPathToDelete;
  18. @end