You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.3 KiB
83 lines
3.3 KiB
/*****************************************************************************
|
|
* VLCControlsBarCommon.h: MacOS X interface module
|
|
*****************************************************************************
|
|
* Copyright (C) 2012-2019 VLC authors and VideoLAN
|
|
*
|
|
* Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
|
|
* David Fuhrmann <david dot fuhrmann at googlemail dot com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class VLCDragDropView;
|
|
@class VLCSlider;
|
|
@class VLCVolumeSlider;
|
|
@class VLCTimeField;
|
|
@class VLCImageView;
|
|
@class VLCBottomBarView;
|
|
@class VLCWrappableTextField;
|
|
|
|
/*****************************************************************************
|
|
* VLCControlsBarCommon
|
|
*
|
|
* Holds all outlets, actions and code common for controls bar in detached
|
|
* and in main window.
|
|
*****************************************************************************/
|
|
|
|
@interface VLCControlsBarCommon : NSObject
|
|
|
|
@property (readwrite, strong) IBOutlet VLCDragDropView *dropView;
|
|
|
|
@property (readwrite, strong) IBOutlet NSButton *playButton;
|
|
@property (readwrite, strong) IBOutlet NSButton *backwardButton;
|
|
@property (readwrite, strong) IBOutlet NSButton *forwardButton;
|
|
|
|
@property (readwrite, strong) IBOutlet VLCSlider *timeSlider;
|
|
@property (readwrite, strong) IBOutlet VLCVolumeSlider *volumeSlider;
|
|
@property (readwrite, strong) IBOutlet NSButton *muteVolumeButton;
|
|
|
|
@property (readwrite, strong) IBOutlet VLCImageView *artworkImageView;
|
|
@property (readwrite, strong) IBOutlet NSButton *artworkButton;
|
|
@property (readwrite, strong) IBOutlet VLCWrappableTextField *playingItemDisplayField;
|
|
@property (readwrite, strong) IBOutlet VLCTimeField *timeField;
|
|
@property (readwrite, strong) IBOutlet VLCTimeField *trailingTimeField;
|
|
|
|
@property (readwrite, strong) IBOutlet NSButton *fullscreenButton;
|
|
@property (readwrite, strong) IBOutlet NSLayoutConstraint *fullscreenButtonWidthConstraint;
|
|
|
|
@property (readwrite, strong) IBOutlet VLCBottomBarView *bottomBarView;
|
|
|
|
@property (readonly) BOOL nativeFullscreenMode;
|
|
|
|
- (CGFloat)height;
|
|
|
|
- (IBAction)play:(id)sender;
|
|
- (IBAction)bwd:(id)sender;
|
|
- (IBAction)fwd:(id)sender;
|
|
|
|
- (IBAction)timeSliderAction:(id)sender;
|
|
- (IBAction)volumeAction:(id)sender;
|
|
- (IBAction)fullscreen:(id)sender;
|
|
|
|
- (void)updateMuteVolumeButtonImage;
|
|
|
|
- (void)updateTimeSlider:(NSNotification *)aNotification;
|
|
- (void)updateVolumeSlider:(NSNotification *)aNotification;
|
|
- (void)updateMuteVolumeButton:(NSNotification *)aNotification;
|
|
- (void)updateCurrentItemDisplayControls:(NSNotification *)aNotification;
|
|
|
|
@end
|
|
|