VLCRemotePlaybackViewController.h 1.1 KB

12345678910111213141516171819202122232425262728
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2015 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <UIKit/UIKit.h>
  12. #import "VLCDeletionCapableViewController.h"
  13. @interface VLCRemotePlaybackViewController : VLCDeletionCapableViewController
  14. @property (readwrite, nonatomic, weak) IBOutlet UILabel *httpServerLabel;
  15. @property (readwrite, nonatomic, weak) IBOutlet UIButton *toggleHTTPServerButton;
  16. @property (readwrite, nonatomic, weak) IBOutlet UILabel *cachedMediaLabel;
  17. @property (readwrite, nonatomic, weak) IBOutlet UILabel *cachedMediaLongLabel;
  18. @property (readwrite, nonatomic, weak) IBOutlet UICollectionView *cachedMediaCollectionView;
  19. @property (readwrite, nonatomic, weak) IBOutlet UIImageView *cachedMediaConeImageView;
  20. - (IBAction)toggleHTTPServer:(id)sender;
  21. @end