RawInputToTextEntry.cs 687 B

123456789101112131415161718192021222324252627
  1. using Gtk;
  2. namespace Ryujinx.UI.Widgets
  3. {
  4. public class RawInputToTextEntry : Entry
  5. {
  6. public void SendKeyPressEvent(object o, KeyPressEventArgs args)
  7. {
  8. base.OnKeyPressEvent(args.Event);
  9. }
  10. public void SendKeyReleaseEvent(object o, KeyReleaseEventArgs args)
  11. {
  12. base.OnKeyReleaseEvent(args.Event);
  13. }
  14. public void SendButtonPressEvent(object o, ButtonPressEventArgs args)
  15. {
  16. base.OnButtonPressEvent(args.Event);
  17. }
  18. public void SendButtonReleaseEvent(object o, ButtonReleaseEventArgs args)
  19. {
  20. base.OnButtonReleaseEvent(args.Event);
  21. }
  22. }
  23. }