VLCNowPlayingInterfaceController.h 915 B

123456789101112131415161718192021222324252627
  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 WKInterfaceLabel *titleLabel;
  16. @property (weak, nonatomic) IBOutlet WKInterfaceLabel *durationLabel;
  17. @property (weak, nonatomic) IBOutlet WKInterfaceButton *playPauseButton;
  18. - (IBAction)playPausePressed;
  19. - (IBAction)skipForward;
  20. - (IBAction)skipBackward;
  21. @end