12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // VLCDetailViewController.h
- // AspenProject
- //
- // Created by Felix Paul Kühne on 27.02.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface VLCMovieViewController : UIViewController <VLCMediaPlayerDelegate, UIActionSheetDelegate>
- {
- VLCMediaPlayer *_mediaPlayer;
- BOOL _controlsHidden;
- UIActionSheet *_subtitleActionSheet;
- UIActionSheet *_audiotrackActionSheet;
- }
- @property (nonatomic, strong) IBOutlet UIView *movieView;
- @property (nonatomic, strong) IBOutlet UIBarButtonItem *backButton;
- @property (nonatomic, strong) IBOutlet UISlider *positionSlider;
- @property (nonatomic, strong) IBOutlet UIBarButtonItem *timeDisplay;
- @property (nonatomic, strong) IBOutlet UIButton *playPauseButton;
- @property (nonatomic, strong) IBOutlet UIButton *bwdButton;
- @property (nonatomic, strong) IBOutlet UIButton *fwdButton;
- @property (nonatomic, strong) IBOutlet UIButton *subtitleSwitcherButton;
- @property (nonatomic, strong) IBOutlet UIButton *audioSwitcherButton;
- @property (nonatomic, strong) IBOutlet UIToolbar *toolbar;
- @property (nonatomic, strong) IBOutlet UIView *controllerPanel;
- @property (nonatomic, strong) IBOutlet UIView *playingExternallyView;
- @property (nonatomic, strong) IBOutlet UILabel *playingExternallyTitle;
- @property (nonatomic, strong) IBOutlet UILabel *playingExternallyDescription;
- @property (nonatomic, strong) MLFile *mediaItem;
- - (IBAction)closePlayback:(id)sender;
- - (IBAction)positionSliderAction:(id)sender;
- - (IBAction)play:(id)sender;
- - (IBAction)backward:(id)sender;
- - (IBAction)forward:(id)sender;
- - (IBAction)switchAudioTrack:(id)sender;
- - (IBAction)switchSubtitleTrack:(id)sender;
- @end
|