-
Notifications
You must be signed in to change notification settings - Fork 367
/
CosmosSettingsObjCBridge.swift
381 lines (230 loc) · 9.06 KB
/
CosmosSettingsObjCBridge.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
import UIKit
import Cosmos
/**
This is a sample file that can be used in your ObjC project if you want to change Cosmos View settings.
Extend this file to add other functionality for your app.
How to use
----------
1. Import swift code in your ObjC file:
#import "YOUR_PRODUCT_MODULE_NAME-Swift.h"
2. Use Auk in your ObjC code:
- (void)viewDidLoad {
[super viewDidLoad];
[CosmosSettingsObjCBridge setStarSize:30 inCosmosView:self.cosmosView];
[CosmosSettingsObjCBridge setFillMode: 0 inCosmosView: self.cosmosView];
[CosmosSettingsObjCBridge setFilledColor: [UIColor redColor] inCosmosView:self.cosmosView];
[CosmosSettingsObjCBridge setUpdateOnTouch: NO inCosmosView:self.cosmosView];
*/
@objcMembers public class CosmosSettingsObjCBridge: NSObject {
/**
Set the star fill mode. A fill mode defines how the star is filled when the rating value is not a whole integer. It can either show full stars, half stars or stars partially filled according to the rating value.
- parameter value: Value of the fill mode. 0: full, 1: half, 2: precise.
- parameter cosmosView: A CosmosView object.
*/
public class func setFillMode(_ value: Int, inCosmosView cosmosView: CosmosView) {
guard let fillMode = StarFillMode(rawValue: value) else { return }
cosmosView.settings.fillMode = fillMode;
}
/**
Get the star fill mode. A fill mode defines how the star is filled when the rating value is not a whole integer. It can either show full stars, half stars or stars partially filled according to the rating value.
- parameter cosmosView: A CosmosView object.
*/
public class func getFillMode(_ cosmosView: CosmosView) -> Int {
return cosmosView.settings.fillMode.rawValue;
}
/**
When `true` the star fill level is updated when user touches the cosmos view. When `false` the Cosmos view only shows the rating and does not act as the input control.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setUpdateOnTouch(_ value: Bool, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.updateOnTouch = value;
}
/**
When `true` the star fill level is updated when user touches the cosmos view. When `false` the Cosmos view only shows the rating and does not act as the input control.
- parameter cosmosView: A CosmosView object.
*/
public class func getUpdateOnTouch(_ cosmosView: CosmosView) -> Bool {
return cosmosView.settings.updateOnTouch;
}
/**
Set the size of a single star.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setStarSize(_ value: Double, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.starSize = value;
}
/**
Returns the size of a single star.
- parameter cosmosView: A CosmosView object.
*/
public class func getStarSize(_ cosmosView: CosmosView) -> Double {
return cosmosView.settings.starSize;
}
/**
Set the maximum number of stars to be shown.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setTotalStars(_ value: Int, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.totalStars = value;
}
/**
Returns the maximum number of stars to be shown.
- parameter cosmosView: A CosmosView object.
*/
public class func getTotalStars(_ cosmosView: CosmosView) -> Int {
return cosmosView.settings.totalStars;
}
/**
Set the distance between stars.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setStarMargin(_ value: Double, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.starMargin = value;
}
/**
Returns the distance between stars.
- parameter cosmosView: A CosmosView object.
*/
public class func getStarMargin(_ cosmosView: CosmosView) -> Double {
return cosmosView.settings.starSize;
}
/**
Set the background color of a filled star.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setFilledColor(_ value: UIColor, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.filledColor = value;
}
/**
Returns the background color of a filled star.
- parameter cosmosView: A CosmosView object.
*/
public class func getFilledColor(_ cosmosView: CosmosView) -> UIColor {
return cosmosView.settings.filledColor;
}
/**
Set the background color of an empty star.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setEmptyColor(_ value: UIColor, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.emptyColor = value;
}
/**
Returns the background color of an empty star.
- parameter cosmosView: A CosmosView object.
*/
public class func getEmptyColor(_ cosmosView: CosmosView) -> UIColor {
return cosmosView.settings.emptyColor;
}
/**
Set the width of the border for a filled star.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setFilledBorderWidth(_ value: Double, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.filledBorderWidth = value;
}
/**
Returns the width of the border for a filled star.
- parameter cosmosView: A CosmosView object.
*/
public class func getFilledBorderWidth(_ cosmosView: CosmosView) -> Double {
return cosmosView.settings.filledBorderWidth;
}
/**
Set the border color of a filled star.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setFilledBorderColor(_ value: UIColor, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.filledBorderColor = value;
}
/**
Returns the border color of a filled star.
- parameter cosmosView: A CosmosView object.
*/
public class func getFilledBorderColor(_ cosmosView: CosmosView) -> UIColor {
return cosmosView.settings.filledBorderColor;
}
/**
Set the width of the border for an empty star.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setEmptyBorderWidth(_ value: Double, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.emptyBorderWidth = value;
}
/**
Returns the width of the border for an empty star.
- parameter cosmosView: A CosmosView object.
*/
public class func getEmptyBorderWidth(_ cosmosView: CosmosView) -> Double {
return cosmosView.settings.emptyBorderWidth;
}
/**
Set the border color of an empty star.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setEmptyBorderColor(_ value: UIColor, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.emptyBorderColor = value;
}
/**
Returns the border color of an empty star.
- parameter cosmosView: A CosmosView object.
*/
public class func getEmptyBorderColor(_ cosmosView: CosmosView) -> UIColor {
return cosmosView.settings.emptyBorderColor;
}
/**
Set the color of the text.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setTextColor(_ value: UIColor, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.textColor = value;
}
/**
Returns the color of the text.
- parameter cosmosView: A CosmosView object.
*/
public class func getTextColor(_ cosmosView: CosmosView) -> UIColor {
return cosmosView.settings.textColor;
}
/**
Set the font of the text.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setTextFont(_ value: UIFont, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.textFont = value;
}
/**
Returns the font of the text.
- parameter cosmosView: A CosmosView object.
*/
public class func getTextFont(_ cosmosView: CosmosView) -> UIFont {
return cosmosView.settings.textFont;
}
/**
Set the distance between the text and the stars.
- parameter value: The value of the setting.
- parameter cosmosView: A CosmosView object.
*/
public class func setTextMargin(_ value: Double, inCosmosView cosmosView: CosmosView) {
cosmosView.settings.textMargin = value;
}
/**
Returns the distance between the text and the stars.
- parameter cosmosView: A CosmosView object.
*/
public class func getTextMargin(_ cosmosView: CosmosView) -> Double {
return cosmosView.settings.textMargin;
}
}