FloatJSWindow.h 709 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // FloatingWindow.h
  3. // AIIM
  4. //
  5. // Created by gan on 2025/7/9.
  6. //
  7. #ifndef FloatingWindow_h
  8. #define FloatingWindow_h
  9. #endif /* FloatingWindow_h */
  10. #import <UIKit/UIKit.h>
  11. @import JitsiMeetSDK;
  12. @interface FloatJSWindow : UIView
  13. @property (nonatomic, copy) void (^onSshow)(void);
  14. @property (nonatomic, copy) void (^onShide)(void);
  15. @property (nonatomic, copy) void (^onCancel)(void);
  16. @property (nonatomic, strong) UIButton *floatingButton;
  17. @property (nonatomic, assign) BOOL isfirstShow;
  18. - (void)show;
  19. - (void)hide;
  20. //---------
  21. @property (nonatomic) BOOL isCaller;
  22. @property (nonatomic) BOOL audioOnly;
  23. @property (nonatomic, weak) NSString *chatId;
  24. @property (nonatomic, weak) NSString *room;
  25. @end