VLCNowPlayingInterfaceController.h 1.0 KB

1234567891011121314151617181920212223242526272829
  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 *playPauseButton;
  19. @property (weak, nonatomic) IBOutlet WKInterfaceSeparator *progressSeparator;
  20. - (IBAction)playPausePressed;
  21. - (IBAction)skipForward;
  22. - (IBAction)skipBackward;
  23. @end