VLCPlaylistInterfaceController.h 1.1 KB

123456789101112131415161718192021222324252627282930
  1. /*****************************************************************************
  2. * VLCPlaylistInterfaceController.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. * Carola Nitz <caro # videolan.org>
  10. *
  11. * Refer to the COPYING file of the official project for license.
  12. *****************************************************************************/
  13. #import <WatchKit/WatchKit.h>
  14. #import <Foundation/Foundation.h>
  15. #import "VLCBaseInterfaceController.h"
  16. @interface VLCPlaylistInterfaceController : VLCBaseInterfaceController
  17. @property (weak, nonatomic) IBOutlet WKInterfaceButton *previousButton;
  18. @property (nonatomic, weak) IBOutlet WKInterfaceTable *table;
  19. @property (weak, nonatomic) IBOutlet WKInterfaceButton *nextButton;
  20. @property (weak, nonatomic) IBOutlet WKInterfaceGroup *emptyLibraryGroup;
  21. @property (weak, nonatomic) IBOutlet WKInterfaceLabel *emptyLibraryLabel;
  22. - (IBAction)previousPagePressed;
  23. - (IBAction)nextPagePressed;
  24. @end