TUIEmojiMeditorProtocol.h 621 B

123456789101112131415161718192021222324252627
  1. //
  2. // TUIEmojiMeditorProtocol.h
  3. // TUIEmojiPlugin
  4. //
  5. // Created by wyl on 2023/11/14.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "TIMDefine.h"
  10. #import "TIMCommonModel.h"
  11. @class V2TIMMessage;
  12. @class TUIFaceGroup;
  13. NS_ASSUME_NONNULL_BEGIN
  14. @protocol TUIEmojiMeditorProtocol <NSObject>
  15. - (void)updateEmojiGroups;
  16. - (id)getFaceGroup;
  17. - (void)appendFaceGroup:(TUIFaceGroup *)faceGroup;
  18. - (id)getChatPopDetailGroups;
  19. - (id)getChatContextEmojiDetailGroups;
  20. - (id)getChatPopMenuRecentQueue;
  21. - (void)updateRecentMenuQueue:(NSString *)faceName;
  22. @end
  23. NS_ASSUME_NONNULL_END