JXRoomMemberVC.h 839 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // JXRoomMemberVC.h
  3. // shiku_im
  4. //
  5. // Created by flyeagleTang on 14-6-10.
  6. // Copyright (c) 2014年 Reese. All rights reserved.
  7. //
  8. #import "admobViewController.h"
  9. @class roomData;
  10. @class JXRoomObject;
  11. @interface JXRoomMemberVC : admobViewController<LXActionSheetDelegate>{
  12. JXLabel* _desc;
  13. JXLabel* _userName;
  14. JXLabel* _roomName;
  15. UILabel* _creater;
  16. UILabel* _size;
  17. NSMutableArray* _deleteArr;
  18. NSMutableArray* _images;
  19. NSMutableArray* _names;
  20. BOOL _delMode;
  21. JXRoomObject *_chatRoom;
  22. int _h;
  23. BOOL _isAdmin;
  24. BOOL _allowEdit;
  25. JXEmoji* _note;
  26. UIView* _heads;
  27. int _delete;
  28. int _disable;
  29. BOOL _disableMode;
  30. JXUserObject* _user;
  31. JXImageView* _blackBtn;
  32. }
  33. @property (nonatomic,retain) JXRoomObject* chatRoom;
  34. @property (nonatomic,retain) roomData* room;
  35. @end