|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Drawing;
using Windows.Win32.UI.Accessibility;
namespace System.Windows.Forms;
public partial class MonthCalendar
{
/// <summary>
/// Represents an accessible object for a calendar header in <see cref="MonthCalendar"/> control.
/// </summary>
internal sealed class CalendarHeaderAccessibleObject : CalendarButtonAccessibleObject
{
// A calendar header is the first in the calendar accessibility tree.
// Indices start at 1.
private const int ChildId = 1;
private readonly CalendarAccessibleObject _calendarAccessibleObject;
private readonly MonthCalendarAccessibleObject _monthCalendarAccessibleObject;
private readonly int _calendarIndex;
private readonly string _initName;
private readonly int[] _initRuntimeId;
public CalendarHeaderAccessibleObject(CalendarAccessibleObject calendarAccessibleObject,
MonthCalendarAccessibleObject monthCalendarAccessibleObject, int calendarIndex)
: base(monthCalendarAccessibleObject)
{
_calendarAccessibleObject = calendarAccessibleObject;
_monthCalendarAccessibleObject = monthCalendarAccessibleObject;
_calendarIndex = calendarIndex;
// Name and RuntimeId don't change if the calendar date range is not changed,
// otherwise the calendar accessibility tree will be rebuilt.
// So save these values one time to avoid sending messages to Windows every time
// or recreating new structures and making extra calculations.
_initName = _monthCalendarAccessibleObject.GetCalendarPartText(MCGRIDINFO_PART.MCGIP_CALENDARHEADER, _calendarIndex);
int[] id = _calendarAccessibleObject.RuntimeId;
_initRuntimeId = [id[0], id[1], id[2], GetChildId()];
}
public override Rectangle Bounds
=> _monthCalendarAccessibleObject.GetCalendarPartRectangle(MCGRIDINFO_PART.MCGIP_CALENDARHEADER, _calendarIndex);
internal override IRawElementProviderFragment.Interface? FragmentNavigate(NavigateDirection direction)
=> direction switch
{
NavigateDirection.NavigateDirection_PreviousSibling => null,
NavigateDirection.NavigateDirection_NextSibling => _calendarAccessibleObject.CalendarBodyAccessibleObject,
_ => base.FragmentNavigate(direction)
};
internal override int GetChildId() => ChildId;
public override string Name => _initName;
internal override bool CanGetNameInternal => false;
public override AccessibleObject Parent => _calendarAccessibleObject;
internal override int[] RuntimeId => _initRuntimeId;
}
}
|