VLCNowPlayingInterfaceController.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. /*****************************************************************************
  2. * VLCNowPlayingInterfaceController.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Tobias Conradi <videolan # tobias-conradi.de>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import <WatchKit/WatchKit.h>
  13. #import <Foundation/Foundation.h>
  14. @interface VLCNowPlayingInterfaceController : WKInterfaceController
  15. @property (weak, nonatomic) IBOutlet WKInterfaceGroup *playElementsGroup;
  16. @property (weak, nonatomic) IBOutlet WKInterfaceLabel *titleLabel;
  17. @property (weak, nonatomic) IBOutlet WKInterfaceLabel *durationLabel;
  18. @property (weak, nonatomic) IBOutlet WKInterfaceButton *skipBackwardButton;
  19. @property (weak, nonatomic) IBOutlet WKInterfaceButton *playPauseButton;
  20. @property (weak, nonatomic) IBOutlet WKInterfaceGroup *playPauseButtonGroup;
  21. @property (weak, nonatomic) IBOutlet WKInterfaceButton *skipForwardButton;
  22. @property (weak, nonatomic) IBOutlet WKInterfaceObject *progressObject;
  23. @property (weak, nonatomic) IBOutlet WKInterfaceSlider *volumeSlider;
  24. - (IBAction)playPausePressed;
  25. - (IBAction)skipForward;
  26. - (IBAction)skipBackward;
  27. - (IBAction)volumeSliderChanged:(float)value;
  28. @end