You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.4KB

  1. #import <UIKit/UIKit.h>
  2. /* -- Voteable Interfaces -- */
  3. @interface VoteableElement : NSObject
  4. @property(strong, nonatomic) NSString *ident;
  5. @property(strong, nonatomic) NSString *author;
  6. @end
  7. @interface Comment : VoteableElement
  8. @property(strong, nonatomic) NSString *body;
  9. @property(strong, nonatomic) NSString *bodyHTML;
  10. @end
  11. @interface Post : VoteableElement
  12. @property(strong, nonatomic) NSString *selftext;
  13. @property(strong, nonatomic) NSString *selftextHtml;
  14. @property(assign, nonatomic) BOOL selfPost;
  15. @end
  16. /* -- UI Interfaces -- */
  17. @interface NCommentCell
  18. @property(strong, nonatomic) Comment *comment;
  19. @end
  20. @interface NCommentPostHeaderCell
  21. @property(strong, nonatomic) Post *post;
  22. @property(strong, nonatomic) id node;
  23. @end
  24. @interface CommentsViewController
  25. - (void)respondToStyleChange;
  26. @end
  27. @interface CommentPostHeaderNode
  28. @property(strong, nonatomic) Comment *comment;
  29. @property(strong, nonatomic) Post *post;
  30. @end
  31. @interface CommentNode
  32. @property(strong, nonatomic) Comment *comment;
  33. @property(strong, nonatomic) Post *post;
  34. @end
  35. @interface CommentOptionsDrawerView
  36. @property(strong, nonatomic) NSMutableArray *buttons;
  37. @property(assign, nonatomic) BOOL isPostHeader;
  38. @property(strong, nonatomic) id delegate;
  39. @property(strong, nonatomic) id node;
  40. - (void)addButton:(id)arg1;
  41. @end
  42. /* -- Other Interfaces -- */
  43. @interface MarkupEngine
  44. + (id)markDownHTML:(id)arg1 forSubreddit:(id)arg2;
  45. @end
  46. @interface Resources
  47. + (BOOL)isNight;
  48. @end