111 lines
3.6 KiB
C#
111 lines
3.6 KiB
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
|
|
using Microsoft.Maui.Handlers;
|
|
using Microsoft.Maui.Graphics;
|
|
using Microsoft.Maui.Controls;
|
|
using Microsoft.Maui.Platform;
|
|
using SkiaSharp;
|
|
|
|
namespace Microsoft.Maui.Platform.Linux.Handlers;
|
|
|
|
/// <summary>
|
|
/// Handler for TimePicker on Linux using Skia rendering.
|
|
/// </summary>
|
|
public partial class TimePickerHandler : ViewHandler<ITimePicker, SkiaTimePicker>
|
|
{
|
|
public static IPropertyMapper<ITimePicker, TimePickerHandler> Mapper =
|
|
new PropertyMapper<ITimePicker, TimePickerHandler>(ViewHandler.ViewMapper)
|
|
{
|
|
[nameof(ITimePicker.Time)] = MapTime,
|
|
[nameof(ITimePicker.Format)] = MapFormat,
|
|
[nameof(ITimePicker.TextColor)] = MapTextColor,
|
|
[nameof(ITimePicker.CharacterSpacing)] = MapCharacterSpacing,
|
|
[nameof(IView.Background)] = MapBackground,
|
|
};
|
|
|
|
public static CommandMapper<ITimePicker, TimePickerHandler> CommandMapper =
|
|
new(ViewHandler.ViewCommandMapper)
|
|
{
|
|
};
|
|
|
|
public TimePickerHandler() : base(Mapper, CommandMapper)
|
|
{
|
|
}
|
|
|
|
public TimePickerHandler(IPropertyMapper? mapper, CommandMapper? commandMapper = null)
|
|
: base(mapper ?? Mapper, commandMapper ?? CommandMapper)
|
|
{
|
|
}
|
|
|
|
protected override SkiaTimePicker CreatePlatformView()
|
|
{
|
|
return new SkiaTimePicker();
|
|
}
|
|
|
|
protected override void ConnectHandler(SkiaTimePicker platformView)
|
|
{
|
|
base.ConnectHandler(platformView);
|
|
platformView.TimeSelected += OnTimeSelected;
|
|
|
|
// Apply dark theme colors if needed
|
|
if (Application.Current?.UserAppTheme == AppTheme.Dark)
|
|
{
|
|
platformView.ClockBackgroundColor = Color.FromRgb(30, 30, 30);
|
|
platformView.ClockFaceColor = Color.FromRgb(45, 45, 45);
|
|
platformView.TextColor = Color.FromRgb(224, 224, 224);
|
|
platformView.BorderColor = Color.FromRgb(97, 97, 97);
|
|
platformView.BackgroundColor = Color.FromRgb(45, 45, 45).ToSKColor();
|
|
}
|
|
}
|
|
|
|
protected override void DisconnectHandler(SkiaTimePicker platformView)
|
|
{
|
|
platformView.TimeSelected -= OnTimeSelected;
|
|
base.DisconnectHandler(platformView);
|
|
}
|
|
|
|
private void OnTimeSelected(object? sender, TimeChangedEventArgs e)
|
|
{
|
|
if (VirtualView is null || PlatformView is null) return;
|
|
|
|
VirtualView.Time = e.NewTime;
|
|
}
|
|
|
|
public static void MapTime(TimePickerHandler handler, ITimePicker timePicker)
|
|
{
|
|
if (handler.PlatformView is null) return;
|
|
handler.PlatformView.Time = timePicker.Time;
|
|
}
|
|
|
|
public static void MapFormat(TimePickerHandler handler, ITimePicker timePicker)
|
|
{
|
|
if (handler.PlatformView is null) return;
|
|
handler.PlatformView.Format = timePicker.Format ?? "t";
|
|
}
|
|
|
|
public static void MapTextColor(TimePickerHandler handler, ITimePicker timePicker)
|
|
{
|
|
if (handler.PlatformView is null) return;
|
|
if (timePicker.TextColor is not null)
|
|
{
|
|
handler.PlatformView.TextColor = timePicker.TextColor;
|
|
}
|
|
}
|
|
|
|
public static void MapCharacterSpacing(TimePickerHandler handler, ITimePicker timePicker)
|
|
{
|
|
// Character spacing would require custom text rendering
|
|
}
|
|
|
|
public static void MapBackground(TimePickerHandler handler, ITimePicker timePicker)
|
|
{
|
|
if (handler.PlatformView is null) return;
|
|
|
|
if (timePicker.Background is SolidPaint solidPaint && solidPaint.Color is not null)
|
|
{
|
|
handler.PlatformView.BackgroundColor = solidPaint.Color.ToSKColor();
|
|
}
|
|
}
|
|
}
|