1234567891011121314151617181920212223242526272829303132333435 |
- /*****************************************************************************
- * VLCMovieViewControlPanelView.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Tobias Conradi <videolan@tobias-conradi.de>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import <UIKit/UIKit.h>
- #import "VLCVolumeView.h"
- #import "VLCFrostedGlasView.h"
- @interface VLCMovieViewControlPanelView : VLCFrostedGlasView
- @property (nonatomic, strong) UIButton *playbackSpeedButton;
- @property (nonatomic, strong) UIButton *trackSwitcherButton;
- @property (nonatomic, strong) UIButton *bwdButton;
- @property (nonatomic, strong) UIButton *playPauseButton;
- @property (nonatomic, strong) UIButton *fwdButton;
- @property (nonatomic, strong) UIButton *videoFilterButton;
- @property (nonatomic, strong) UIButton *moreActionsButton;
- @property (nonatomic, strong) VLCVolumeView *volumeView;
- - (void)updateButtons;
- @end
|