123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /*****************************************************************************
- * VLCMovieViewController.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013-2014 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- * Gleb Pinigin <gpinigin # gmail.com>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import <MediaPlayer/MediaPlayer.h>
- #import "VLCFrostedGlasView.h"
- @class OBSlider;
- @class VLCStatusLabel;
- @class VLCHorizontalSwipeGestureRecognizer;
- @class VLCVerticalSwipeGestureRecognizer;
- @interface VLCMovieViewController : UIViewController <VLCMediaPlayerDelegate, UIActionSheetDelegate>
- @property (nonatomic, strong) IBOutlet UIView *movieView;
- @property (nonatomic, strong) IBOutlet UIBarButtonItem *backButton;
- @property (nonatomic, strong) IBOutlet OBSlider *positionSlider;
- @property (nonatomic, strong) IBOutlet UIButton *timeDisplay;
- @property (nonatomic, strong) IBOutlet UIButton *playPauseButton;
- @property (nonatomic, strong) IBOutlet UIButton *playPauseButtonLandscape;
- @property (nonatomic, strong) IBOutlet UIButton *bwdButton;
- @property (nonatomic, strong) IBOutlet UIButton *bwdButtonLandscape;
- @property (nonatomic, strong) IBOutlet UIButton *fwdButton;
- @property (nonatomic, strong) IBOutlet UIButton *fwdButtonLandscape;
- @property (nonatomic, strong) IBOutlet UIView *subtitleContainer;
- @property (nonatomic, strong) IBOutlet UIView *subtitleContainerLandscape;
- @property (nonatomic, strong) IBOutlet UIButton *subtitleSwitcherButton;
- @property (nonatomic, strong) IBOutlet UIButton *subtitleSwitcherButtonLandscape;
- @property (nonatomic, strong) IBOutlet UIButton *audioSwitcherButton;
- @property (nonatomic, strong) IBOutlet UIButton *audioSwitcherButtonLandscape;
- @property (nonatomic, strong) IBOutlet UIButton *repeatButton;
- @property (nonatomic, strong) IBOutlet UIButton *repeatButtonLandscape;
- @property (nonatomic, strong) IBOutlet UINavigationBar *toolbar;
- @property (nonatomic, strong) IBOutlet VLCFrostedGlasView *controllerPanel;
- @property (nonatomic, strong) IBOutlet VLCFrostedGlasView *controllerPanelLandscape;
- @property (nonatomic, strong) IBOutlet VLCStatusLabel *statusLabel;
- @property (nonatomic, strong) IBOutlet MPVolumeView *volumeView;
- @property (nonatomic, strong) IBOutlet MPVolumeView *volumeViewLandscape;
- @property (nonatomic, strong) IBOutlet UIView *playingExternallyView;
- @property (nonatomic, strong) IBOutlet UILabel *playingExternallyTitle;
- @property (nonatomic, strong) IBOutlet UILabel *playingExternallyDescription;
- @property (nonatomic, strong) IBOutlet VLCFrostedGlasView *videoFilterView;
- @property (nonatomic, strong) IBOutlet UIButton *videoFilterButton;
- @property (nonatomic, strong) IBOutlet UIButton *videoFilterButtonLandscape;
- @property (nonatomic, strong) IBOutlet UILabel *hueLabel;
- @property (nonatomic, strong) IBOutlet UISlider *hueSlider;
- @property (nonatomic, strong) IBOutlet UILabel *contrastLabel;
- @property (nonatomic, strong) IBOutlet UISlider *contrastSlider;
- @property (nonatomic, strong) IBOutlet UILabel *brightnessLabel;
- @property (nonatomic, strong) IBOutlet UISlider *brightnessSlider;
- @property (nonatomic, strong) IBOutlet UILabel *saturationLabel;
- @property (nonatomic, strong) IBOutlet UISlider *saturationSlider;
- @property (nonatomic, strong) IBOutlet UILabel *gammaLabel;
- @property (nonatomic, strong) IBOutlet UISlider *gammaSlider;
- @property (nonatomic, strong) IBOutlet UIButton *resetVideoFilterButton;
- @property (nonatomic, strong) IBOutlet VLCFrostedGlasView *playbackSpeedView;
- @property (nonatomic, strong) IBOutlet UIButton *playbackSpeedButton;
- @property (nonatomic, strong) IBOutlet UIButton *playbackSpeedButtonLandscape;
- @property (nonatomic, strong) IBOutlet UISlider *playbackSpeedSlider;
- @property (nonatomic, strong) IBOutlet UILabel *playbackSpeedLabel;
- @property (nonatomic, strong) IBOutlet UILabel *playbackSpeedIndicator;
- @property (nonatomic, strong) IBOutlet UIButton *aspectRatioButton;
- @property (nonatomic, strong) IBOutlet VLCFrostedGlasView *scrubIndicatorView;
- @property (nonatomic, strong) IBOutlet UILabel *currentScrubSpeedLabel;
- @property (nonatomic, strong) IBOutlet UILabel *scrubHelpLabel;
- @property (nonatomic, strong) IBOutlet UILabel *artistNameLabel;
- @property (nonatomic, strong) IBOutlet UILabel *albumNameLabel;
- @property (nonatomic, strong) IBOutlet UILabel *trackNameLabel;
- @property (nonatomic, strong) IBOutlet UIImageView *artworkImageView;
- @property (nonatomic, strong) MLFile *fileFromMediaLibrary;
- @property (nonatomic, strong) NSURL *url;
- @property (nonatomic, strong) NSString *pathToExternalSubtitlesFile;
- @property (nonatomic, retain) VLCMediaList *mediaList;
- @property (nonatomic, readwrite) int itemInMediaListToBePlayedFirst;
- - (IBAction)closePlayback:(id)sender;
- - (IBAction)positionSliderAction:(id)sender;
- - (IBAction)positionSliderTouchDown:(id)sender;
- - (IBAction)positionSliderTouchUp:(id)sender;
- - (IBAction)positionSliderDrag:(id)sender;
- - (IBAction)toggleTimeDisplay:(id)sender;
- - (IBAction)playPause;
- - (IBAction)backward:(id)sender;
- - (IBAction)forward:(id)sender;
- - (IBAction)toggleRepeatMode:(id)sender;
- - (IBAction)switchAudioTrack:(id)sender;
- - (IBAction)switchSubtitleTrack:(id)sender;
- - (IBAction)videoFilterToggle:(id)sender;
- - (IBAction)videoFilterSliderAction:(id)sender;
- - (IBAction)playbackSpeedSliderAction:(id)sender;
- - (IBAction)videoDimensionAction:(id)sender;
- @end
|