Re: [Development] Qt PDF as a new TP module for Qt 5.14

2019-08-19 Thread Fabrice Salvaire
Dear all, I implemented PDF rendering in Qt application. My opinion is that Poppler is not the best piece of open source code, look the code in comparison to MuPDF, it is C but clean C and run on embedded devices. Rather Poppler is more like a pile-up of crappy codes.  Some years ago,

Re: [Development] Technical vision for Qt for Python

2019-08-19 Thread Fabrice Salvaire
Dear all, I am using PyQt since 10 years now and my points are: - It is true that missing bindings is a serious issue to use PySide actually. - I noticed PyQt has simpler wrapper code, but I don't investigated more. - I would dream to have Python instead of JS, but we know how to implement a

[Development] Public Font API and Qml Scene

2018-12-11 Thread Fabrice Salvaire
Dear all, I am investigating how to reimplement something similar to QtGraphicScene on QML. Actually I made a quick prototype using QPainter API, which offer a black box to render a scene texture either on software or on OpenGL.  I don't know the drawbacks of this approach but it just

[Development] Control 2 : Does StackView garbage collect popped items ?

2018-02-23 Thread Fabrice Salvaire
Dear all, I am experimenting a way to implement a wizard interface featuring a next and previous page navigation using QML Control 2. I tried to achieve this using StackView but I receive the error "TypeError: Type error' when I try to access popped items later, for example with

Re: [Development] Using private API for qt-based library

2017-09-26 Thread Fabrice Salvaire
Le 25/09/2017 à 10:56, Viktor Engelmann a écrit : On 25.09.2017 10:29, iman ahmadvand wrote: Hi every one. I'm developing a set of specialized opensource widgets in c++ (called MaterialWidgets which is google material design implementation) Now i want to use private API for this library to

[Development] How to add OpenSSL support on Qt Android?

2016-06-15 Thread Fabrice Salvaire
Dear All, I tried to follow http://doc.qt.io/qt-5/opensslsupport.html but I couldn't succeed to have https working on Android. It seems this note is not up to date for 5.6 and later. Apparently Qt configure disables the OpenSSL Qt code due to the cross-compilation environment and if I try

Re: [Development] Bluetooth Services problem

2016-05-15 Thread Fabrice Salvaire
Hi, Indeed bluetooth is broken. Best would be to provide information for QTBUG-52277 I don't have time to investigate on it actually. Fabrice Le 05/05/2016 à 08:34, Matías Néstor Ares a écrit : Hi Everybody!! I'm having an issue with bluetooth

Re: [Development] Though about rich text (html, WebView) rendering

2016-02-26 Thread Fabrice Salvaire
Hi Kai, Le 26/02/2016 11:15, Koehne Kai a écrit : -Original Message- From: Development [mailto:development- bounces+kai.koehne=theqtcompany@qt-project.org] On Behalf Of Fabrice Salvaire Sent: Thursday, February 25, 2016 1:33 PM To: development@qt-project.org Subject: [Development

[Development] Though about rich text (html, WebView) rendering

2016-02-25 Thread Fabrice Salvaire
Dear all, I am investigating to port a content server to an off-line mobile application in order to don't rely to a network connection at all. Thus I have to port a database, a kind of web framework, a template engine and a rendering engine. I believe it can be a use of case of Qt on mobile