123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- /*****************************************************************************
- * VLCMovieViewController.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013-2017 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"
- #import "VLCPlaybackController.h"
- @class OBSlider;
- @class VLCStatusLabel;
- @class VLCHorizontalSwipeGestureRecognizer;
- @class VLCVerticalSwipeGestureRecognizer;
- @class VLCTimeNavigationTitleView;
- @class VLCMovieViewControlPanelView;
- typedef NS_ENUM(NSInteger, VLCMovieJumpState) {
- VLCMovieJumpStateDefault,
- VLCMovieJumpStateForward,
- VLCMovieJumpStateBackward
- };
- @interface VLCMovieViewController : UIViewController <UIActionSheetDelegate, VLCPlaybackControllerDelegate>
- @property (nonatomic, strong) IBOutlet UIView *movieView;
- @property (nonatomic, strong) IBOutlet VLCTimeNavigationTitleView *timeNavigationTitleView;
- @property (nonatomic, strong) IBOutlet UIButton *sleepTimerButton;
- @property (nonatomic, strong) IBOutlet VLCStatusLabel *statusLabel;
- @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 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 UISlider *playbackSpeedSlider;
- @property (nonatomic, strong) IBOutlet UILabel *playbackSpeedLabel;
- @property (nonatomic, strong) IBOutlet UILabel *playbackSpeedIndicator;
- @property (nonatomic, strong) IBOutlet UISlider *audioDelaySlider;
- @property (nonatomic, strong) IBOutlet UILabel *audioDelayLabel;
- @property (nonatomic, strong) IBOutlet UILabel *audioDelayIndicator;
- @property (nonatomic, strong) IBOutlet UISlider *spuDelaySlider;
- @property (nonatomic, strong) IBOutlet UILabel *spuDelayLabel;
- @property (nonatomic, strong) IBOutlet UILabel *spuDelayIndicator;
- @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) IBOutlet NSLayoutConstraint *widthConstraint;
- - (IBAction)closePlayback:(id)sender;
- - (IBAction)minimizePlayback:(id)sender;
- - (IBAction)positionSliderAction:(id)sender;
- - (IBAction)positionSliderTouchDown:(id)sender;
- - (IBAction)positionSliderTouchUp:(id)sender;
- - (IBAction)positionSliderDrag:(id)sender;
- - (IBAction)toggleTimeDisplay:(id)sender;
- - (IBAction)sleepTimer:(id)sender;
- - (IBAction)videoFilterSliderAction:(id)sender;
- - (IBAction)playbackSliderAction:(id)sender;
- - (IBAction)videoDimensionAction:(id)sender;
- - (void)toggleRepeatMode;
- - (void)toggleShuffleMode;
- - (void)toggleEqualizer;
- - (void)toggleUILock;
- - (void)toggleChapterAndTitleSelector;
- - (void)hideMenu;
- - (BOOL)rotationIsDisabled;
- @end
|