26 NS_ASSUME_NONNULL_BEGIN
28 typedef NS_ENUM(NSUInteger, VLCDialogQuestionType) {
29 VLCDialogQuestionNormal,
30 VLCDialogQuestionWarning,
31 VLCDialogQuestionCritical,
44 - (void)showErrorWithTitle:(NSString *)error
45 message:(NSString *)message;
56 - (void)showLoginWithTitle:(NSString *)title
57 message:(NSString *)message
58 defaultUsername:(nullable NSString *)username
59 askingForStorage:(BOOL)askingForStorage
60 withReference:(NSValue *)reference;
72 - (void)showQuestionWithTitle:(NSString *)title
73 message:(NSString *)message
74 type:(VLCDialogQuestionType)questionType
75 cancelString:(nullable NSString *)cancelString
76 action1String:(nullable NSString *)action1String
77 action2String:(nullable NSString *)action2String
78 withReference:(NSValue *)reference;
89 - (void)showProgressWithTitle:(NSString *)title
90 message:(NSString *)message
91 isIndeterminate:(BOOL)isIndeterminate
92 position:(
float)position
93 cancelString:(nullable NSString *)cancelString
94 withReference:(NSValue *)reference;
101 - (void)updateProgressWithReference:(NSValue *)reference
102 message:(nullable NSString *)message
103 position:(
float)position;
108 - (void)cancelDialogWithReference:(NSValue *)reference;
127 - (nullable instancetype)initWithLibrary:(nullable
VLCLibrary *)library
128 customUI:(BOOL)customUI;
135 @property (weak, readwrite, nonatomic, nullable) id<VLCCustomDialogRendererProtocol>
customRenderer;
144 - (void)postUsername:(NSString *)username
145 andPassword:(NSString *)password
146 forDialogReference:(NSValue *)dialogReference
154 - (void)postAction:(
int)buttonNumber
155 forDialogReference:(NSValue *)dialogReference;
161 - (void)dismissDialogWithReference:(NSValue *)dialogReference;
165 NS_ASSUME_NONNULL_END