This repository was archived by the owner on Jul 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 609
Expand file tree
/
Copy pathStringElement.cs
More file actions
256 lines (219 loc) · 7.74 KB
/
StringElement.cs
File metadata and controls
256 lines (219 loc) · 7.74 KB
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
using System;
using UIKit;
using Foundation;
using SDWebImage;
using System.Reactive.Subjects;
using System.Reactive.Linq;
namespace CodeHub.iOS.DialogElements
{
public class ButtonElement : StringElement
{
public ButtonElement (string caption, string value, UIImage image = null)
: base (caption, value, UITableViewCellStyle.Value1)
{
Image = image;
Accessory = UITableViewCellAccessory.DisclosureIndicator;
}
public ButtonElement (string caption, UIImage image = null)
: this (caption, null, image)
{
}
}
public class StringElement : Element
{
public static UIColor DefaultTitleColor = UIColor.FromRGB(41, 41, 41);
public static UIColor DefaultDetailColor = UIColor.FromRGB(80, 80, 80);
public static UIColor BgColor = UIColor.White;
static NSString [] skey = { new NSString (".1"), new NSString (".2"), new NSString (".3"), new NSString (".4") };
public UITableViewCellStyle Style;
public UIFont Font;
public UIFont SubtitleFont;
public UIColor TextColor;
private UIImage _image;
private Uri _imageUri;
private string _value;
private UITableViewCellAccessory _accessory = UITableViewCellAccessory.DisclosureIndicator;
private readonly Subject<object> _tapped = new Subject<object>();
private UITableViewCellSelectionStyle _selectionStyle = UITableViewCellSelectionStyle.Default;
public IObservable<object> Clicked
{
get { return _tapped.AsObservable(); }
}
public UITableViewCellSelectionStyle SelectionStyle
{
get { return _selectionStyle; }
set
{
if (_selectionStyle == value)
return;
_selectionStyle = value;
var cell = GetActiveCell();
if (cell != null)
cell.SelectionStyle = value;
}
}
private string _caption;
public string Caption
{
get { return _caption; }
set
{
if (_caption == value)
return;
_caption = value;
var cell = GetActiveCell();
if (cell != null && cell.TextLabel != null)
cell.TextLabel.Text = value ?? string.Empty;
}
}
public string Value
{
get { return _value; }
set
{
if (_value == value)
return;
_value = value;
var cell = GetActiveCell();
if (cell != null && cell.DetailTextLabel != null)
cell.DetailTextLabel.Text = value ?? string.Empty;
}
}
public UITableViewCellAccessory Accessory
{
get { return _accessory; }
set
{
if (_accessory == value)
return;
_accessory = value;
var cell = GetActiveCell();
if (cell != null)
cell.Accessory = value;
}
}
private int _lines;
public int Lines
{
get { return _lines; }
set
{
if (_lines == value)
return;
_lines = value;
var cell = GetActiveCell();
if (cell != null)
cell.TextLabel.Lines = value;
}
}
private UILineBreakMode _lineBreakMode;
public UILineBreakMode LineBreakMode
{
get { return _lineBreakMode; }
set
{
if (_lineBreakMode == value)
return;
_lineBreakMode = value;
var cell = GetActiveCell();
if (cell != null)
cell.TextLabel.LineBreakMode = value;
}
}
public UIColor ImageTintColor { get; set; }
public StringElement()
{
Font = UIFont.PreferredBody;
SubtitleFont = UIFont.PreferredSubheadline;
TextColor = DefaultTitleColor;
}
public StringElement (string caption)
: this()
{
Caption = caption;
}
public StringElement (string caption, UIImage image)
: this (caption)
{
Image = image;
}
public StringElement (string caption, string value)
: this (caption)
{
Style = UITableViewCellStyle.Value1;
Value = value;
}
public StringElement (string caption, string value, UITableViewCellStyle style)
: this (caption, value)
{
this.Style = style;
}
public StringElement (string caption, UITableViewCellStyle style)
: this (caption, null, style)
{
}
public UIImage Image {
get { return _image; }
set
{
_image = value;
var cell = GetActiveCell();
if (cell != null)
cell.ImageView.Image = value;
}
}
// Loads the image from the specified uri (use this or Image)
public Uri ImageUri {
get { return _imageUri; }
set {
if (_imageUri == value)
return;
_imageUri = value;
var cell = GetActiveCell();
if (cell != null && value != null)
cell.ImageView.SetImage(new NSUrl(value.AbsoluteUri));
}
}
protected virtual string GetKey (int style)
{
return skey [style];
}
protected virtual UITableViewCell CreateTableViewCell(UITableViewCellStyle style, string key)
{
return new UITableViewCell (style, key);
}
public override UITableViewCell GetCell (UITableView tv)
{
var key = GetKey ((int) Style);
var cell = tv.DequeueReusableCell(key) ?? CreateTableViewCell(Style, key);
return InitializeCell(cell);
}
protected virtual UITableViewCell InitializeCell(UITableViewCell cell)
{
cell.SelectionStyle = SelectionStyle;
cell.TextLabel.Text = Caption;
cell.TextLabel.TextColor = TextColor;
cell.ImageView.Image = Image;
cell.Accessory = Accessory;
if (ImageUri != null)
cell.ImageView.SetImage(new NSUrl(ImageUri.AbsoluteUri), Image);
if (cell.DetailTextLabel != null)
{
cell.DetailTextLabel.Text = Value ?? "";
cell.DetailTextLabel.TextColor = DefaultDetailColor;
}
return cell;
}
public override void Selected (UITableView tableView, NSIndexPath indexPath)
{
base.Selected(tableView, indexPath);
_tapped.OnNext(this);
}
public override bool Matches (string text)
{
var cap = Caption ?? string.Empty;
var val = Value ?? string.Empty;
return cap.IndexOf(text, StringComparison.CurrentCultureIgnoreCase) != -1 || val.IndexOf(text, StringComparison.CurrentCultureIgnoreCase) != -1;
}
}
}