SettingsViewController.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. //
  2. // SettingsViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/8/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomCheckBox;
  11. @class CustomButton;
  12. @interface SettingsViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  15. #pragma mark - Instance Methods
  16. - (IBAction)btnCloseTouched:(id)sender;
  17. @property (strong, nonatomic) DashboardModel *dashboardModel;
  18. @end
  19. @interface SettingsAccountTableViewCell : KNTableViewCell
  20. @property (weak, nonatomic) IBOutlet CustomLabel *lblEmail;
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblNickname;
  22. @property (weak, nonatomic) IBOutlet CustomLabel *lblChangeNickname;
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblChangePassword;
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblChangeEmail;
  25. @property (weak, nonatomic) IBOutlet CustomLabel *lblEmailWaiting;
  26. @property (weak, nonatomic) IBOutlet CustomLabel *lblPhoneNum;
  27. @property (weak, nonatomic) IBOutlet CustomButton *btnChangeNum;
  28. @property (weak, nonatomic) IBOutlet CustomLabel *lblQuiz;
  29. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkAutoLogin;
  30. @property (weak, nonatomic) IBOutlet CustomButton *btnLogout;
  31. @property (weak, nonatomic) IBOutlet CustomButton *btnProfile;
  32. @property (weak, nonatomic) IBOutlet CustomButton *btnProfileSetting;
  33. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *contraintEmailChangeBottom;
  34. @end
  35. @interface SettingsNotificationTableViewCell : KNTableViewCell
  36. @property (weak, nonatomic) IBOutlet CustomCheckBox *chkHomeModeChange;
  37. //@property (weak, nonatomic) IBOutlet CustomCheckBox *chkHomeEmptyChange;
  38. //@property (weak, nonatomic) IBOutlet CustomLabel *lblHomehubWarn;
  39. //@property (weak, nonatomic) IBOutlet KNView *homehubInfoView;
  40. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintHomehubInfoViewHeight;
  41. @property (weak, nonatomic) IBOutlet UIView *viewThingsSet;
  42. @property (weak, nonatomic) IBOutlet CustomButton *btnThingsSet;
  43. @end
  44. @interface SettingsServiceTableViewCell : KNTableViewCell
  45. @property (weak, nonatomic) IBOutlet CustomButton *btnService;
  46. @property (weak, nonatomic) IBOutlet CustomButton *btnPolicy;
  47. @end
  48. @interface SettingsVersionTableViewCell : KNTableViewCell
  49. @property (weak, nonatomic) IBOutlet CustomLabel *lblVersion;
  50. @property (weak, nonatomic) IBOutlet CustomButton *btnLicense;
  51. @end
  52. @interface SettingsDeleteTableViewCell : KNTableViewCell
  53. @property (weak, nonatomic) IBOutlet CustomButton *btnDelete;
  54. @end
  55. @interface SettingsPasswdTableViewCell : KNTableViewCell
  56. @property (weak, nonatomic) IBOutlet CustomButton *btnPassword;
  57. @end