2021-05-28 01:45:04 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-05-28 01:45:04 +08:00
|
|
|
using osu.Framework.Input;
|
|
|
|
using osuTK.Input;
|
|
|
|
|
|
|
|
namespace osu.Game.Input
|
|
|
|
{
|
|
|
|
public partial class OsuUserInputManager : UserInputManager
|
|
|
|
{
|
|
|
|
internal OsuUserInputManager()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override MouseButtonEventManager CreateButtonEventManagerFor(MouseButton button)
|
|
|
|
{
|
|
|
|
switch (button)
|
|
|
|
{
|
|
|
|
case MouseButton.Right:
|
|
|
|
return new RightMouseManager(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
return base.CreateButtonEventManagerFor(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
private class RightMouseManager : MouseButtonEventManager
|
|
|
|
{
|
|
|
|
public RightMouseManager(MouseButton button)
|
|
|
|
: base(button)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool EnableDrag => true; // allow right-mouse dragging for absolute scroll in scroll containers.
|
|
|
|
public override bool EnableClick => false;
|
|
|
|
public override bool ChangeFocusOnClick => false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|