VLCPlexConnectServerViewController.h 1.3 KB

123456789101112131415161718192021222324252627282930
  1. /*****************************************************************************
  2. * VLCPlexConnectServerViewController.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2015 VideoLAN. All rights reserved.
  6. *
  7. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  8. * Pierre SAGASPE <pierre.sagaspe # me.com>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import <UIKit/UIKit.h>
  13. @interface VLCPlexConnectServerViewController : UIViewController
  14. @property (nonatomic, strong) IBOutlet UITextField *serverAddressField;
  15. @property (nonatomic, strong) IBOutlet UIButton *connectButton;
  16. @property (nonatomic, strong) IBOutlet UITextField *portField;
  17. @property (nonatomic, strong) IBOutlet UILabel *serverAddressLabel;
  18. @property (nonatomic, strong) IBOutlet UILabel *portLabel;
  19. @property (nonatomic, strong) IBOutlet UILabel *serverAddressHelpLabel;
  20. @property (nonatomic, strong) IBOutlet UITableView *serverPlexBookmark;
  21. @property (nonatomic, strong) IBOutlet UIButton *bookmarkButton;
  22. @property (strong, nonatomic) IBOutlet UILabel *bookmarkLabel;
  23. - (IBAction)connectToServer:(id)sender;
  24. - (IBAction)savePlexServer:(id)sender;
  25. @end