Augustinas
Augustinas
I'm not a C programmer, so it might be a silly question, but why prefix all the names with "lib" prefix? By defition this is a library, so why specify...
> > > Just out of curiosity - why complicate build process so much? Why not to use any cross-platform build system (meson, xmake, may be even simple makefiles?). I...
@lc-soft How would you expect the feature to be implemented? I assume the approach would be adding clipboard.c to platform (and equivalent linux_x11clipboard.c) But then, how would the copy event...
Wouldn't it have to know which widget is currently in focus, so it knows where to send the data once `SelectionNotify` is retrieved. Since SelectionNotify is triggered after `XConvertSelection` is...
@lc-soft The problem is at the step: * Clipboard_GetText Clipboard text can't be retrieved synchronously, **we need to ask for it**, by calling `XConvertSelection` with some variables (which we need...
@lc-soft Few questions * would you expect the `LCUI_RegisterPaste` event to be called directly from `OnKeyboardMessage` or should it trigger a custom event? * If it is a direct call,...
@lc-soft Wouldn't storing clipboard at widget, rather than system level cause problems? If we wan't to support CTRL+C feature, we'd need to support `SelectionRequest` event (It would come if some...
What about using the existing libuv ocaml bindings ? https://github.com/aantron/luv
What would be a solution to prevent this @bryphe ? I would love to help
Hi, I've begun working on this, however, as I am relatively new to ocaml/reason ecosystem, I am not sure how to implement the focus module. So far I have, but...