VLCPlexConnectServerViewController.h 1.3 KB

12345678910111213141516171819202122232425262728293031
  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 UIScrollView *scrollView;
  15. @property (nonatomic, strong) IBOutlet UITextField *serverAddressField;
  16. @property (nonatomic, strong) IBOutlet UIButton *connectButton;
  17. @property (nonatomic, strong) IBOutlet UITextField *portField;
  18. @property (nonatomic, strong) IBOutlet UILabel *serverAddressLabel;
  19. @property (nonatomic, strong) IBOutlet UILabel *portLabel;
  20. @property (nonatomic, strong) IBOutlet UILabel *serverAddressHelpLabel;
  21. @property (nonatomic, strong) IBOutlet UITableView *serverPlexBookmark;
  22. @property (nonatomic, strong) IBOutlet UIButton *bookmarkButton;
  23. @property (strong, nonatomic) IBOutlet UILabel *bookmarkLabel;
  24. - (IBAction)connectToServer:(id)sender;
  25. - (IBAction)savePlexServer:(id)sender;
  26. @end