-
Notifications
You must be signed in to change notification settings - Fork 391
Expand file tree
/
Copy pathLabeledSlider.cs
More file actions
449 lines (389 loc) · 12.1 KB
/
Copy pathLabeledSlider.cs
File metadata and controls
449 lines (389 loc) · 12.1 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
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
using System.Globalization;
using Intersect.Client.Framework.GenericClasses;
using Intersect.Client.Framework.Graphics;
using Intersect.Client.Framework.Gwen.Control.EventArguments;
using Intersect.Client.Framework.Gwen.ControlInternal;
using Intersect.Framework;
namespace Intersect.Client.Framework.Gwen.Control;
public partial class LabeledSlider : Base, ISmartAutoSizeToContents, INumericInput, ITextContainer
{
private readonly Label _label;
private readonly Slider _slider;
private readonly TextBoxNumeric _sliderValue;
private double _scale = 1.0;
private int _rounding = -1;
private bool _recomputeValueMinimumSize = true;
private bool _autoSizeToContentWidth;
private bool _autoSizeToContentHeight;
private bool _autoSizeToContentWidthOnChildResize;
private bool _autoSizeToContentHeightOnChildResize;
/// <summary>
/// Initializes a new instance of the <see cref="LabeledSlider" /> class.
/// </summary>
/// <param name="parent">Parent control.</param>
/// <param name="name"></param>
public LabeledSlider(Base parent, string? name = default) : base(parent: parent, name: name)
{
DockChildSpacing = new Padding(4);
_label = new Label(this, nameof(_label))
{
Alignment = [Alignments.CenterV],
TextAlign = Pos.Right | Pos.CenterV,
};
_slider = new Slider(this, nameof(_slider));
_sliderValue = new TextBoxNumeric(this, nameof(_sliderValue))
{
Alignment = [Alignments.CenterV],
AutoSizeToContents = true,
};
_slider.ValueChanged += (sender, arguments) =>
{
if (sender == _sliderValue)
{
return;
}
var newValue = _slider.Value * _scale;
if (_rounding > -1)
{
newValue = Math.Round(newValue, _rounding);
}
if (newValue.Equals(_sliderValue.Value))
{
return;
}
_slider.SetValue(newValue, skipEvents: true);
_sliderValue.SetValue(newValue, skipEvents: true);
ValueChanged?.Invoke(
sender,
new ValueChangedEventArgs<double>
{
Value = newValue,
}
);
};
_sliderValue.TextChanged += (sender, _) =>
{
var newValue = _sliderValue.Value / _scale;
var clampedValue = Math.Clamp(newValue, Minimum, Maximum);
if (!clampedValue.Equals(newValue))
{
_sliderValue.Value = clampedValue;
}
_slider.Value = clampedValue;
_slider.SetValue(clampedValue, skipEvents: true);
ValueChanged?.Invoke(
sender,
new ValueChangedEventArgs<double>
{
Value = clampedValue,
}
);
};
AutoSizeToContentHeight = true;
KeyboardInputEnabled = true;
IsTabable = true;
}
public IGameTexture? BackgroundImage
{
get => _slider.BackgroundImage;
set => _slider.BackgroundImage = value;
}
public string? BackgroundImageName
{
get => _slider.BackgroundImageName;
set => _slider.BackgroundImageName = value;
}
public Point DraggerSize
{
get => _slider.DraggerSize;
set => _slider.DraggerSize = value;
}
public IFont? Font
{
get => _label.Font;
set
{
_label.Font = value;
_sliderValue.Font = value;
_sliderValue.MinimumSize = ComputeMinimumSizeForSliderValue();
}
}
public int FontSize
{
get => _label.FontSize;
set
{
_label.FontSize = value;
_sliderValue.FontSize = value;
_sliderValue.MinimumSize = ComputeMinimumSizeForSliderValue();
}
}
public Point SliderSize
{
get => _slider.MinimumSize;
set => _slider.MinimumSize = value;
}
public bool IsValueInputEnabled
{
get => _sliderValue.IsVisibleInTree;
set => _sliderValue.IsVisibleInTree = value;
}
public string? Label
{
get => _label.Text;
set => _label.Text = value;
}
public Orientation Orientation
{
get => _slider.Orientation;
set => _slider.Orientation = value;
}
/// <summary>
/// Number of notches on the slider axis.
/// </summary>
public int NotchCount
{
get => _slider.NotchCount;
set => _slider.NotchCount = value;
}
public double[]? Notches
{
get => _slider.Notches;
set => _slider.Notches = value;
}
/// <summary>
/// Determines whether the slider should snap to notches.
/// </summary>
public bool SnapToNotches
{
get => _slider.SnapToNotches;
set => _slider.SnapToNotches = value;
}
public int Rounding
{
get => _rounding;
set
{
_rounding = value;
if (_rounding > -1)
{
_sliderValue.Value = Math.Round(_sliderValue.Value, _rounding);
}
}
}
/// <summary>
/// Minimum value.
/// </summary>
public double Minimum
{
get => _slider.Minimum;
set
{
_slider.Minimum = value;
_sliderValue.Minimum = value;
}
}
/// <summary>
/// Maximum value.
/// </summary>
public double Maximum
{
get => _slider.Maximum;
set
{
_slider.Maximum = value;
_sliderValue.Maximum = value;
_sliderValue.MinimumSize = ComputeMinimumSizeForSliderValue(value);
}
}
private Point ComputeMinimumSizeForSliderValue(double? value = null)
{
var valueString = (value ?? Maximum).ToString(CultureInfo.CurrentUICulture);
var valueFormatString = ValueFormatString;
if (!string.IsNullOrWhiteSpace(valueFormatString))
{
valueString = string.Format(valueFormatString, valueString);
}
return Skin.Renderer.MeasureText(font: _sliderValue.Font, fontSize: _sliderValue.FontSize, text: valueString) +
_sliderValue.Padding +
_sliderValue.Padding;
}
public double Scale
{
get => _scale;
set
{
_scale = value;
_sliderValue.Value = _slider.Value * _scale;
}
}
/// <summary>
/// Current value.
/// </summary>
public double Value
{
get => _slider.Value;
set
{
_slider.Value = value;
_sliderValue.Value = _slider.Value * _scale;
}
}
public Point LabelMinimumSize
{
get => _label.MinimumSize;
set => _label.MinimumSize = value;
}
public void SetDraggerImage(IGameTexture? texture, ComponentState state)
{
_slider.SetDraggerImage(texture, state);
}
public IGameTexture? GetDraggerImage(ComponentState state)
{
return _slider.GetDraggerImage(state);
}
public void SetSound(string? sound, ButtonSoundState state)
{
_slider.SetSound(sound, state);
}
public string? ValueFormatString
{
get => _sliderValue.FormatString;
set => _sliderValue.FormatString = value;
}
/// <summary>
/// Invoked when the value has been changed.
/// </summary>
public event GwenEventHandler<ValueChangedEventArgs<double>>? ValueChanged;
protected override void OnDisabledChanged(bool oldValue, bool newValue)
{
base.OnDisabledChanged(oldValue, newValue);
}
protected override void Layout(Skin.Base skin)
{
if (_recomputeValueMinimumSize)
{
_sliderValue.MinimumSize = ComputeMinimumSizeForSliderValue(Maximum);
}
if (AutoSizeToContents)
{
SizeToChildren(resizeX: AutoSizeToContentWidth, resizeY: AutoSizeToContentHeight);
}
var orientation = _slider.Orientation;
switch (orientation)
{
case Orientation.LeftToRight:
_label.Dock = Pos.Left;
_label.Alignment = [Alignments.CenterV];
_slider.Dock = Pos.Fill;
_slider.Alignment = [Alignments.CenterV];
_slider.Margin = new Margin(4, 0, 0, 0);
_sliderValue.Dock = Pos.Right;
_sliderValue.Alignment = [Alignments.CenterV];
_sliderValue.Margin = new Margin(4, 0, 0, 0);
break;
case Orientation.RightToLeft:
_label.Dock = Pos.Right | Pos.CenterV;
_slider.Dock = Pos.Fill;
_slider.Margin = new Margin(0, 0, 4, 0);
_sliderValue.Dock = Pos.Left;
_sliderValue.Margin = new Margin(0, 0, 4, 0);
break;
case Orientation.TopToBottom:
_label.Dock = Pos.Top;
_slider.Dock = Pos.Fill;
_slider.Margin = new Margin(0, 4, 0, 0);
_sliderValue.Dock = Pos.Bottom;
_sliderValue.Margin = new Margin(0, 4, 0, 0);
break;
case Orientation.BottomToTop:
_label.Dock = Pos.Bottom;
_slider.Dock = Pos.Fill;
_slider.Margin = new Margin(0, 0, 0, 4);
_sliderValue.Dock = Pos.Top;
_sliderValue.Margin = new Margin(0, 0, 0, 4);
break;
default:
throw Exceptions.UnreachableInvalidEnum(orientation);
}
base.Layout(skin);
}
public override void SetToolTipText(string? text)
{
_label.SetToolTipText(text);
_slider.SetToolTipText(text);
_sliderValue.SetToolTipText(text);
}
protected override void OnSizeChanged(Point oldSize, Point newSize)
{
base.OnSizeChanged(oldSize, newSize);
}
protected override void OnBoundsChanged(Rectangle oldBounds, Rectangle newBounds)
{
base.OnBoundsChanged(oldBounds, newBounds);
}
protected override void OnChildSizeChanged(Base child, Point oldChildSize, Point newChildSize)
{
base.OnChildSizeChanged(child, oldChildSize, newChildSize);
SizeToChildren(resizeX: AutoSizeToContentWidthOnChildResize, resizeY: AutoSizeToContentHeightOnChildResize);
}
public void SetRange(double min, double max)
{
var actualMin = Math.Min(min, max);
var actualMax = Math.Max(min, max);
if (actualMin > Maximum)
{
Maximum = actualMax;
Minimum = actualMin;
}
else if (actualMax < Minimum)
{
Minimum = actualMin;
Maximum = actualMax;
}
else
{
Minimum = actualMin;
Maximum = actualMax;
}
}
public bool AutoSizeToContents
{
get => AutoSizeToContentWidth || AutoSizeToContentHeight;
set
{
AutoSizeToContentWidth = value;
AutoSizeToContentHeight = value;
}
}
public bool AutoSizeToContentWidth
{
get => _autoSizeToContentWidth;
set => SetAndDoIfChanged(ref _autoSizeToContentWidth, value, Invalidate);
}
public bool AutoSizeToContentHeight
{
get => _autoSizeToContentHeight;
set => SetAndDoIfChanged(ref _autoSizeToContentHeight, value, Invalidate);
}
public bool AutoSizeToContentWidthOnChildResize
{
get => _autoSizeToContentWidthOnChildResize;
set => SetAndDoIfChanged(ref _autoSizeToContentWidthOnChildResize, value, Invalidate);
}
public bool AutoSizeToContentHeightOnChildResize
{
get => _autoSizeToContentHeightOnChildResize;
set => SetAndDoIfChanged(ref _autoSizeToContentHeightOnChildResize, value, Invalidate);
}
public override void Focus(bool moveMouse = false)
{
base.Focus(moveMouse);
}
public string? Text
{
get => _label.Text;
set => _label.Text = value;
}
public Color? TextPaddingDebugColor { get; set; }
}