VLCPlexMediaInformationViewController.h 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. /*****************************************************************************
  2. * VLCPlexMediaInformationViewController.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. *
  7. * Authors: Pierre Sagaspe <pierre.sagaspe # me.com>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <UIKit/UIKit.h>
  12. @interface VLCPlexMediaInformationViewController : UIViewController
  13. @property (nonatomic, strong) IBOutlet UIImageView *thumb;
  14. @property (nonatomic, strong) IBOutlet UILabel *mediaTitle;
  15. @property (nonatomic, strong) IBOutlet UILabel *codec;
  16. @property (nonatomic, strong) IBOutlet UILabel *size;
  17. @property (nonatomic, strong) IBOutlet UITextView *summary;
  18. @property (nonatomic, strong) IBOutlet UIImageView *badgeUnread;
  19. @property (nonatomic, strong) IBOutlet UIBarButtonItem *markMediaButton;
  20. - (IBAction)play:(id)sender;
  21. - (IBAction)download:(id)sender;
  22. - (IBAction)markMedia:(id)sender;
  23. - (id)initPlexMediaInformation:(NSDictionary *)mediaObject serverAddress:(NSString *)serverAddress portNumber:(NSString *)portNumber atPath:(NSString *)path authentification:(NSString *)auth;
  24. @end