ggerganov / imgui-ws

Dear ImGui over WebSockets
MIT License
447 stars 53 forks source link

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

Open Oldpan opened 2 years ago

Oldpan commented 2 years ago

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~

ggerganov commented 2 years ago

Give it a try again - it works now:

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

Oldpan commented 2 years ago

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