|
using System;
using System.ComponentModel;
using System.Drawing;
using Foundation;
using ObjCRuntime;
using UIKit;
namespace Microsoft.Maui.Controls.Compatibility.Platform.iOS
{
[Obsolete("Use Microsoft.Maui.Controls.Platform.Compatibility.SwitchCellRenderer instead")]
public class SwitchCellRenderer : CellRenderer
{
const string CellName = "Xamarin.SwitchCell";
UIColor _defaultOnColor;
[Preserve(Conditional = true)]
public SwitchCellRenderer()
{
}
public override UITableViewCell GetCell(Cell item, UITableViewCell reusableCell, UITableView tv)
{
var tvc = reusableCell as CellTableViewCell;
UISwitch uiSwitch = null;
if (tvc == null)
tvc = new CellTableViewCell(UITableViewCellStyle.Value1, CellName);
else
{
uiSwitch = tvc.AccessoryView as UISwitch;
tvc.PropertyChanged -= HandlePropertyChanged;
}
SetRealCell(item, tvc);
if (uiSwitch == null)
{
uiSwitch = new UISwitch(new RectangleF());
uiSwitch.ValueChanged += OnSwitchValueChanged;
tvc.AccessoryView = uiSwitch;
}
var boolCell = (SwitchCell)item;
_defaultOnColor = UISwitch.Appearance.OnTintColor;
tvc.Cell = item;
tvc.PropertyChanged += HandlePropertyChanged;
tvc.AccessoryView = uiSwitch;
#pragma warning disable CA1416, CA1422 // TODO: 'UITableViewCell.TextLabel' is unsupported on: 'ios' 14.0 and later
tvc.TextLabel.Text = boolCell.Text;
uiSwitch.On = boolCell.On;
WireUpForceUpdateSizeRequested(item, tvc, tv);
UpdateBackground(tvc, item);
UpdateIsEnabled(tvc, boolCell);
UpdateFlowDirection(tvc, boolCell);
UpdateOnColor(tvc, boolCell);
return tvc;
}
void HandlePropertyChanged(object sender, PropertyChangedEventArgs e)
{
var boolCell = (SwitchCell)sender;
var realCell = (CellTableViewCell)GetRealCell(boolCell);
if (e.PropertyName == SwitchCell.OnProperty.PropertyName)
{
((UISwitch)realCell.AccessoryView).SetState(boolCell.On, true);
UpdateOnColor(realCell, boolCell);
}
else if (e.PropertyName == SwitchCell.TextProperty.PropertyName)
realCell.TextLabel.Text = boolCell.Text;
else if (e.PropertyName == Cell.IsEnabledProperty.PropertyName)
UpdateIsEnabled(realCell, boolCell);
else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName)
UpdateFlowDirection(realCell, boolCell);
else if (e.PropertyName == SwitchCell.OnColorProperty.PropertyName)
UpdateOnColor(realCell, boolCell);
}
static void OnSwitchValueChanged(object sender, EventArgs eventArgs)
{
var view = (UIView)sender;
var sw = (UISwitch)view;
CellTableViewCell realCell = null;
while (view.Superview != null && realCell == null)
{
view = view.Superview;
realCell = view as CellTableViewCell;
}
if (realCell != null)
((SwitchCell)realCell.Cell).On = sw.On;
}
void UpdateFlowDirection(CellTableViewCell cell, SwitchCell switchCell)
{
IVisualElementController controller = switchCell.Parent as View;
var uiSwitch = cell.AccessoryView as UISwitch;
uiSwitch.UpdateFlowDirection(controller);
}
void UpdateIsEnabled(CellTableViewCell cell, SwitchCell switchCell)
{
cell.UserInteractionEnabled = switchCell.IsEnabled;
cell.TextLabel.Enabled = switchCell.IsEnabled;
cell.DetailTextLabel.Enabled = switchCell.IsEnabled;
var uiSwitch = cell.AccessoryView as UISwitch;
if (uiSwitch != null)
uiSwitch.Enabled = switchCell.IsEnabled;
}
#pragma warning restore CA1416, CA1422
void UpdateOnColor(CellTableViewCell cell, SwitchCell switchCell)
{
var uiSwitch = cell.AccessoryView as UISwitch;
if (uiSwitch != null)
{
if (switchCell.OnColor == null)
uiSwitch.OnTintColor = _defaultOnColor;
else
uiSwitch.OnTintColor = switchCell.OnColor.ToPlatform();
}
}
}
} |