Re: [Interest] QMYSQL driver not loaded!

2015-10-27 Thread HPC-TECH
On 10/28/2015 04:43 AM, Hamish Moffatt wrote: On 27/10/15 20:41, HPC-TECH via Interest wrote: On 10/27/2015 11:48 AM, Samuel Gaist wrote: Line 221: It seems you are missing

Re: [Interest] QMYSQL driver not loaded!

2015-10-27 Thread Hamish Moffatt
On 27/10/15 20:41, HPC-TECH via Interest wrote: On 10/27/2015 11:48 AM, Samuel Gaist wrote: Line 221: It seems you are missing libssl.so.10 It's not related to my issue because it points to "_libqsqlmysql.so_" which is not needed in my application (the needed one is libqsqlmysql.so) Maybe you

Re: [Interest] Unexpected QtCreator crashes (QtCreator 3.5.1)

2015-10-27 Thread Jason H
A Mailing list exists for creator: qt-creator Also, the recommendation is to try the 3.6 beta. Allegedly there were improvements.   Sent: Tuesday, October 27, 2015 at 2:51 PM From: "Konstantin Podsvirov" To: "Freddy Martinez Garcia" , "Nuno Santos" Cc: interest Subject: Re: [Interest]

Re: [Interest] Unexpected QtCreator crashes (QtCreator 3.5.1)

2015-10-27 Thread Konstantin Podsvirov
+1 For large C++!! project on the Windows periodically emitted from the fall'clangbackend'.I switch back to 'Qt Creator Built-in' code model. 27.10.2015, 21:47, "Freddy Martinez Garcia" :Me too... since Qt Cretor 3.5.0... In mac, Qt Creator crash when he want !!! :( I'm thinking to downgrade my Qt

Re: [Interest] Unexpected QtCreator crashes (QtCreator 3.5.1)

2015-10-27 Thread Freddy Martinez Garcia
Me too... since Qt Cretor 3.5.0... In mac, Qt Creator crash when he want !!! :( I'm thinking to downgrade my Qt Creator version for that reason regards *="El tamaño de tus logros depende del tamaño de tus metas." * *C++ and Qt Senior Developer* *L

[Interest] Unexpected QtCreator crashes (QtCreator 3.5.1)

2015-10-27 Thread Nuno Santos
Hi, I’m having a lot of unexpected QtCreator crashes since I have upgraded to version 3.5.1 Anyone having too? Process: Qt Creator [7521] Path: /Users/USER/*/Qt Creator.app/Contents/MacOS/Qt Creator Identifier:org.qt-project.qtcreator Version:

Re: [Interest] Qt on Android and loading native libs

2015-10-27 Thread Jason H via Interest
Sounds like an Application level library is needed, rather than an Activity?   Sent: Tuesday, October 27, 2015 at 11:49 AM From: "Preet via Interest" To: "" Subject: [Interest] Qt on Android and loading native libs I recently came across an issue with native code on Android (not in a Qt applic

Re: [Interest] Qt iOS without QML?

2015-10-27 Thread NoRulez via Interest
Thanks a lot for your examples. I will try these examples. Best Regards > Am 27.10.2015 um 15:25 schrieb Daniel França : > > In my github there's a simple TODO app with C++/QML: > https://github.com/danielfranca/procrastinationkiller > The C++ is used for the Extension Manager and for a more pr

[Interest] Qt on Android and loading native libs

2015-10-27 Thread Preet via Interest
I recently came across an issue with native code on Android (not in a Qt application though). When an Activity loads shared libraries, those libraries aren't unloaded by Android until the corresponding process is killed. However, Android can keep the same process around while creating multiple inst

Re: [Interest] Bluetooth for Linux

2015-10-27 Thread Blasche Alexander via Interest
>This is another bit of confusion I am trying to sort out. I do know bluez 4.x >is supported but does it mean I have to go >back to older version of Qt for that? Thanks. No you don't have to. -- Alex ___ Interest mailing list Interest@qt-project.

Re: [Interest] Bluetooth for Linux

2015-10-27 Thread Shahzad Khan via Interest
I wanted to add I am using Qt 5.4.2 Could this be potential reason because newer version of Qt seems to support BlueZ version 5.x ( or at least it seems be in the works). This is another bit of confusion I am trying to sort out. I do know bluez 4.x is supported but does it mean I have to go back t

Re: [Interest] Bluetooth for Linux

2015-10-27 Thread Blasche Alexander via Interest
>Below is a screen of the scanner demo that comes it and it appears it is not >able to turn on bluetooth because >bluetooth power is unchecked. Even when I check it the 'Scan' button is still >disabled which seems to indicate is not >really powering on (= in other words not able to connect to

Re: [Interest] Bluetooth for Linux

2015-10-27 Thread Shahzad Khan via Interest
Thanks Alex. Yes the version you mention are the right ones.I am really glad you have it working with same version so I know it works. I do give it sufficient time and I am sure the the discovery is never initiated. I never press the 'Scan' button but still it is disabled. I can tell you the disc

Re: [Interest] Qt iOS without QML?

2015-10-27 Thread Kenji Sugita via Interest
Hello, From: Roman Wüger via Interest Subject: [Interest] Qt iOS without QML? Date: Tue, 27 Oct 2015 09:37:20 +0100 ;;; Hello, ;;; ;;; Is it at the moment possible to develop iOS apps only with Qt Widgets and without any QML? I recommend this movie to you. QtWS15- Qt on iOS A to Z, Mike

Re: [Interest] Bluetooth for Linux

2015-10-27 Thread Blasche Alexander via Interest
Hi, > -Original Message- > From: Interest [mailto:interest-boun...@qt-project.org] On Behalf Of Shahzad > Khan via Interest > Sent: Tuesday, 27 October 2015 15:38 > But when I run the btscanner demo, the 'scan' button comes out disabled. I > don't > get any warnings or errors but I can

[Interest] Bluetooth for Linux

2015-10-27 Thread Shahzad Khan via Interest
I am struggling with making bluetooth scanner demo work for linux. I have installed BlueZ on my Ubuntu virtual machine via sudo apt-get install libbluetooth-dev But when I run the btscanner demo, the 'scan' button comes out disabled. I don't get any warnings or errors but I can never scan.I have

Re: [Interest] Qt iOS without QML?

2015-10-27 Thread Daniel França via Interest
In my github there's a simple TODO app with C++/QML: https://github.com/danielfranca/procrastinationkiller The C++ is used for the Extension Manager and for a more precise timer. Here you've a simple C++ class being exposed to QML via a singleton object: https://github.com/danielfranca/procrastina

Re: [Interest] Qt iOS without QML?

2015-10-27 Thread Gian Maxera via Interest
I don’t have any example I can show to you, but I use QML as the ui and C++ as the logic part in all my Android and iOS application and it’s very straightforward. There are two steps involved: 1) all C++ classes you want to expose to the UI have to inherit from QObject and use Q_PROPERTY for all

Re: [Interest] Qt iOS without QML?

2015-10-27 Thread NoRulez via Interest
The problem is that I don't won't to learn an additional "language" only for ui's. I doesn't found really helpful examples which uses QML as the ui and c++ as the logic part. Maybe someone have useful links? Thanks > Am 27.10.2015 um 14:18 schrieb Burak Arslan via Interest > : > > > >> O

Re: [Interest] Qt iOS without QML?

2015-10-27 Thread Burak Arslan via Interest
On 10/27/15 16:04, Edward Sutton via Interest wrote: > > However a Qt widget app can be ugly on Android and iOS. Buttons and > tables appear too small for fingers. Font size is out of proportion. Maybe that'll change with Qt 5.6 when the QT_SCALE_FACTOR support lands? Did anyone play with it

Re: [Interest] Qt iOS without QML?

2015-10-27 Thread Edward Sutton via Interest
On Oct 27, 2015, at 4:19 AM, Robert Iakobashvili via Interest mailto:interest@qt-project.org>> wrote: On Tue, Oct 27, 2015 at 10:37 AM, Roman Wüger mailto:interest@qt-project.org>> wrote: Hello, Is it at the moment possible to develop iOS apps only with Qt Widgets and without any QML? Thanks

Re: [Interest] Qt iOS without QML?

2015-10-27 Thread Daniel França via Interest
"Think twice before using Qt at mobile platforms" Specially now, I would say, with only an expensive license option to do so :) Em ter, 27 de out de 2015 às 10:19, Robert Iakobashvili via Interest < interest@qt-project.org> escreveu: > On Tue, Oct 27, 2015 at 10:37 AM, Roman Wüger > wrote: > >

Re: [Interest] QMYSQL driver not loaded!

2015-10-27 Thread HPC-TECH via Interest
On 10/27/2015 11:48 AM, Samuel Gaist wrote: Line 221: It seems you are missing libssl.so.10 It's not related to my issue because it points to "_libqsqlmysql.so_" which is not needed in my application (the needed one is libqsqlmysql.so) --

Re: [Interest] Qt iOS without QML?

2015-10-27 Thread Robert Iakobashvili via Interest
On Tue, Oct 27, 2015 at 10:37 AM, Roman Wüger wrote: > Hello, > > Is it at the moment possible to develop iOS apps only with Qt Widgets and > without any QML? > > Thanks in advance > ___ We are doing that for a rather simple GUI, but mixing it with nat

Re: [Interest] Qt iOS without QML?

2015-10-27 Thread Gian Maxera via Interest
Yes, it’s possible. Never done personally, but I saw some old post of developers successfully created iOS app using only Qt Widgets. They said that it’s incredible faster respect to QML, but I think you lack all the flexibility of QML. Ciao, Gianluca. > On 27 Oct 2015, at 08:37, Roman Wüger vi

Re: [Interest] Creating pdf with QTextDocument with chart

2015-10-27 Thread André Somers via Interest
Op 26-10-2015 om 19:04 schreef Edward Sutton via Interest: If you need to generate PDF’s on iOS, you will need to find a non-Qt approach. Unfortunately Qt PDF generation is implemented in QPrinter and iOS has no printer support. Good thing is that the TS is on Qt 4.8, which does not support i

Re: [Interest] QMYSQL driver not loaded!

2015-10-27 Thread Samuel Gaist via Interest
On 27 oct. 2015, at 09:28, HPC-TECH via Interest wrote: > Hi, > > I'm unable to run any application uses MySQL plugin (whether from Qt Creator > or outside it) because of the following error message: >> QSqlDatabase: QMYSQL driver not loaded >> QSqlDatabase: available drivers: QSQLITE QMYSQL

[Interest] Qt iOS without QML?

2015-10-27 Thread Roman Wüger via Interest
Hello, Is it at the moment possible to develop iOS apps only with Qt Widgets and without any QML? Thanks in advance ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] QMYSQL driver not loaded!

2015-10-27 Thread HPC-TECH via Interest
Hi, I'm unable to run any application uses MySQL plugin (whether from Qt Creator or outside it) because of the following error message: QSqlDatabase: QMYSQL driver not loaded QSqlDatabase: available drivers: QSQLITE QMYSQL QMYSQL3 QPSQL QPSQL7 I'm using:

Re: [Interest] iOS linking problem

2015-10-27 Thread Gianluca via Interest
Hello Francesco, It seems you are mixing libraries for i386 architecture (that works only on simulator and mac) with the libraries for ARM (that works on the real device). I suspect there is something wrong on the creation of the library and your library results in a lack of ARM symbols. Can you