ggerganov/imgui-ws

How to add Ctrl+c Ctrl+v Ctrl+A function?

Oldpan opened this issue · 2 comments

Thanks for this brilliant project! I think if I can copy and paste some text on imgui-ws . But i tried and failed.
Take a look at source code:

      struct Event {
          enum Type {
              Unknown = 0,
              Connected,
              Disconnected,
              MouseMove,
              MouseDown,
              MouseUp,
              MouseWheel,
              KeyPress,
              KeyDown,
              KeyUp,
              Resize,
              TakeControl,
          };

Is it difficult to add c-v c-x function?This will be very helpful.
thanks~

Give it a try again - it works now:

http://imgui-ws.ggerganov.com:5001

Thanks for great work!
I'll have a try.