QuotedMessageView.h 482 B

123456789101112131415161718192021
  1. /**
  2. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: GPL-3.0-or-later
  4. */
  5. #import <UIKit/UIKit.h>
  6. @class AvatarImageView;
  7. NS_ASSUME_NONNULL_BEGIN
  8. @interface QuotedMessageView : UIView
  9. @property (nonatomic, strong) UILabel *actorLabel;
  10. @property (nonatomic, strong) UILabel *messageLabel;
  11. @property (nonatomic, assign) BOOL highlighted;
  12. @property (nonatomic, strong) AvatarImageView *avatarView;
  13. @end
  14. NS_ASSUME_NONNULL_END