VLCKit
All Classes Functions Variables Properties Pages
VLCDialogProvider.h
1 /*****************************************************************************
2  * VLCDialogProvider.h: an implementation of the libvlc dialog API
3  *****************************************************************************
4  * Copyright (C) 2016 VideoLabs SAS
5  * $Id$
6  *
7  * Authors: Felix Paul Kühne <fkuehne # videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software Foundation,
21  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23 
24 @class VLCLibrary;
25 
26 NS_ASSUME_NONNULL_BEGIN
27 
28 typedef NS_ENUM(NSUInteger, VLCDialogQuestionType) {
29  VLCDialogQuestionNormal,
30  VLCDialogQuestionWarning,
31  VLCDialogQuestionCritical,
32 };
33 
37 @protocol VLCCustomDialogRendererProtocol <NSObject>
38 
44 - (void)showErrorWithTitle:(NSString *)error
45  message:(NSString *)message;
46 
56 - (void)showLoginWithTitle:(NSString *)title
57  message:(NSString *)message
58  defaultUsername:(nullable NSString *)username
59  askingForStorage:(BOOL)askingForStorage
60  withReference:(NSValue *)reference;
61 
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;
79 
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;
95 
101 - (void)updateProgressWithReference:(NSValue *)reference
102  message:(nullable NSString *)message
103  position:(float)position;
104 
108 - (void)cancelDialogWithReference:(NSValue *)reference;
109 
110 @end
111 
112 
117 @interface VLCDialogProvider : NSObject
118 
127 - (nullable instancetype)initWithLibrary:(nullable VLCLibrary *)library
128  customUI:(BOOL)customUI;
129 
135 @property (weak, readwrite, nonatomic, nullable) id<VLCCustomDialogRendererProtocol> customRenderer;
136 
144 - (void)postUsername:(NSString *)username
145  andPassword:(NSString *)password
146  forDialogReference:(NSValue *)dialogReference
147  store:(BOOL)store;
148 
154 - (void)postAction:(int)buttonNumber
155 forDialogReference:(NSValue *)dialogReference;
156 
161 - (void)dismissDialogWithReference:(NSValue *)dialogReference;
162 
163 @end
164 
165 NS_ASSUME_NONNULL_END
VLCCustomDialogRendererProtocol-p
Definition: VLCDialogProvider.h:37
VLCDialogProvider
Definition: VLCDialogProvider.h:117
VLCLibrary
Definition: VLCLibrary.h:44
VLCDialogProvider::customRenderer
id< VLCCustomDialogRendererProtocol > customRenderer
Definition: VLCDialogProvider.h:135