Link: @CplusplusQt Embedded: @EMBCpp • Allowed Topics: C++ and everything related to Qt • Use only English • No Private Message without asking user's permission • No NSFW • No Spam • No unauthorized Bots • No Offtopic • No Self Promotions
Scythe Studio has developed the "Qt Quick and QML Training" course, one of the offerings from our new service line. If you want to learn all aspects of QML, from fundamental concepts to advanced topics like integrating with C++ logic and effective app architecture, this course is for you. Gain practical skills through hands-on exercises and discover best practices for creating responsive and modular applications.
This training is offered on demand and can be tailored to the needs and requirements of participants. Syllabus, requirements, and participation details can be found on the service page. An introduction to the service line is provided in this blog post.
now I have no cons for QHttpServer, looks like they did great job making it
Читать полностью…that's actually how many qiodevices work (like sockets)
Читать полностью…yes but yours is infinite loop, and I need to empty QIODevice sometimes
Читать полностью…my example deletes the device when you abort the download
Читать полностью…I don’t know what you mean, but QHttpServerResponder is just data holder, and it writes somewhere internally, so likely QIODevice used by other class
Читать полностью…the way it waits for the responder deletion is ok for me, now I just wish to pause transfer, and add data one second later
Читать полностью…(QHttpServerResponder&& responder)
this is made the way it deletes responder out of scope
don’t use sleep, just put fixed bytesAvailable and atEnd always false
Читать полностью…Design Studio supports 6.7 version in QML. That's cool. One year ago we used to use v6.4 for QML and v6.6 for C++ . Now these both platforms are synchronized.
Читать полностью…no, that's a bit weird but this seems to be an odd class
Читать полностью…I didn’t notice they take ownership of that, seems unusual to me
Читать полностью…thanks for keep pushing me in right direction, now I know the best solution
Читать полностью…I agree I don’t need to keep it alive, I just know it does work well if I do, if there is other ways to do the same thing it is ok
Читать полностью…Thats what I mean. I don't think you have to keep it alive
Читать полностью…perhaps it's not the responder that does the magic behind the scene?
Читать полностью…QHttpServerResponder* resp = new QHttpServerResponder(std::move(responder));
resp->write(td ,QString().toUtf8());