aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Gtk3/UI/Widgets/RawInputToTextEntry.cs
blob: 6470790e8a3941ce09f0e1334292fc4ec820c06f (plain) (blame)
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
using Gtk;

namespace Ryujinx.UI.Widgets
{
    public class RawInputToTextEntry : Entry
    {
        public void SendKeyPressEvent(object o, KeyPressEventArgs args)
        {
            base.OnKeyPressEvent(args.Event);
        }

        public void SendKeyReleaseEvent(object o, KeyReleaseEventArgs args)
        {
            base.OnKeyReleaseEvent(args.Event);
        }

        public void SendButtonPressEvent(object o, ButtonPressEventArgs args)
        {
            base.OnButtonPressEvent(args.Event);
        }

        public void SendButtonReleaseEvent(object o, ButtonReleaseEventArgs args)
        {
            base.OnButtonReleaseEvent(args.Event);
        }
    }
}