I currently use libevent heavily for C/C++ network programming and I love how easily I can make an event-based app without having to worry if I need to use select,poll,epoll,kqueues etc. The apps I've made are text-only, and now I'm looking at Qt/QML to make a GUI for my existing network apps.
I just don't know how I can integrate them into one application, as both libevent and qt want to run their own event loops. Do I need to look at running each in its own thread (gui in one thread and libevent-backend in another) or am I missing something very simple? :-)
Thanks, Nina