[Interest] Android Build fails with Gradle qtGradlePluginType

2024-07-19 Thread Daniel Brunner
Hi, I am using a self-compiled packaged version of Qt6 for android aarch64 and I experience some issues in the build process after my Qt C++ native code has been compiled successfully. The part where it should make an APK out of it fails (see output below) What can I do in this case? I am using

Re: [Interest] qmlbench tool: high cpu usage while running tool and generate report

2023-02-09 Thread Daniel Smith via Interest
enchrunner\scripts - qt/qtqa.git - Qt QA Scripts<https://code.qt.io/cgit/qt/qtqa.git/tree/scripts/qmlbenchrunner/run.py> Also available in the repository are some scripts which may assist you in designing your own build and test automation. Best regards, -Daniel From: Interest On Beha

Re: [Interest] QtHttpServer Asynchronous Request Processing

2023-01-10 Thread Daniel
t;result(), idMap.take(job)); delete job; } private: QHash idMap; } Best regards, Daniel Am Di., 10. Jan. 2023 um 16:10 Uhr schrieb Ievgenii Meshcheriakov via Interest : > Hi, > > I've tried to reproduce this on Windows and Linux and I cannot. In both > cases > th

[Interest] QtHttpServer Asynchronous Request Processing

2023-01-04 Thread Daniel
harder to keep this struct for a later response (only by std::moving). So, my question is, if QHttpServer is intended to support asynchronous request processing (for arbitrary URL requests) sometime in the future? Or am I missing the correct way to do this with the current API? Thanks in advance Daniel ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] Trouble compiling qt3d for qt6 on windows 10

2021-02-17 Thread Daniel Patel
/OpenGL over to Qt6. ons. 17. feb. 2021 kl. 12:27 skrev Paul Lemire : > > On 2/17/21 11:15 AM, Daniel Patel wrote: > > Actually all errors except the missing assimpl plugin problem went away > when also setting environment variable QSG_RHI_BACKEND to opengl > So the only open ques

Re: [Interest] Trouble compiling qt3d for qt6 on windows 10

2021-02-17 Thread Daniel Patel
that qt3d should use opengl directly and not use opengl through RHI (which has limited functionality) ons. 17. feb. 2021 kl. 10:59 skrev Daniel Patel : > Thank you Mike for telling how to send in parameters correctly. For the > qt-configure-module.bat the syntax "-DFEATURE_qt3d_s

Re: [Interest] Trouble compiling qt3d for qt6 on windows 10

2021-02-17 Thread Daniel Patel
..@kdab.com | Senior Software Engineer & Teamlead > KDAB (UK) Ltd., a KDAB Group company > Tel: UK Office +44 1625 809908 Mobile +44 7833 491941 > KDAB - The Qt Experts, C++, OpenGL Experts > > > > On 16 Feb 2021, at 13:31, Daniel Patel wrote: > > > > Using a s

Re: [Interest] Trouble compiling qt3d for qt6 on windows 10

2021-02-16 Thread Daniel Patel
Using a space didn't work either. I will try to use cmake though. The reason I wanted to use avx2 was to try to get rid of the compilation error: Project ERROR: Could not find feature qt3d-simd-avx2 tir. 16. feb. 2021 kl. 14:22 skrev Paul Lemire : > > On 2/16/21 1:33 PM, Daniel

Re: [Interest] Trouble compiling qt3d for qt6 on windows 10

2021-02-16 Thread Daniel Patel
_Install_Dir/qml/QtQuick/ > > qt3d_build_dir/plugins/* into Qt_Install_Dir/plugins/ > > (the plugins dir contains a renderers folder which contains the Qt3D > render plugins) > > I hope that helps, > > Paul > On 2/15/21 11:03 AM, Daniel Patel wrote: > >

[Interest] Trouble compiling qt3d for qt6 on windows 10

2021-02-15 Thread Daniel Patel
I did nmake install. So I copied them over manually and then started basicshapes-cpp.exe, but this showed the runtime error: Unable to find renderer plugin for opengl. Any hints for what to do? Best Daniel ___ Interest mailing list Interest@qt-pro

[Interest] Qt3D Scene2D Multisampling

2020-06-20 Thread Daniel Proksch
I am attaching a Texture2DMultisample to the output of a Scene2D object in QML and I don't see a property to explicitly enable multisample rendering. Rendering doesn't seem to work (texture stays black) so I am wondering is multisampling at all supported by Scene2D? Thanks! _

[Interest] Qt3D: One-shot compute shader

2019-05-31 Thread Daniel Proksch
Hi all, I'm trying to implement a Qt3D FrameGraph (QML) that allows for one-shot dispatch of a compute shader. My current approach is to add a ComputeCommand component to my ComputeEntity whenever I want the dispatch to happen. When the compute task is done (i.e. in the next frame) I want to rem

Re: [Interest] QtCreator & ABI is incompatible for armeabi-v7a

2019-05-22 Thread Daniel Engelke
& deploy was running normally. Best regards, Daniel From: Alexander Ivash To: interestqt-project.org Sent: 5/22/2019 9:15 AM Subject: Re: [Interest] QtCreator & ABI is incompatible for armeabi-v7a It turned out behavior is the same on 3 windows environments (haven't chec

[Interest] Qt3D Vulkan back-end

2019-02-21 Thread Daniel Proksch
Hi, Does anyone know about plans for a Vulkan back-end for Qt3D? Looks like there was some work started in the past ( https://codereview.qt-project.org/#/c/196945/ ) that was abandoned since. Thanks! ___ Interest mailing list Interest@qt-project.org h

Re: [Interest] QTimer at 30Hz interval?

2018-04-04 Thread Daniel Engelke
What about QElapsedTimer you can get nanoseconds out of it. Br Daniel From: René Reucher To: Sent: 4/4/2018 9:42 AM Subject: Re: [Interest] QTimer at 30Hz interval? On 04/04/18 09:33, Ola Røer Thorsen wrote: > is there some nice trick to make a QTimer trigger at 30 Hz? T

Re: [Interest] lupdate : Compilation Error

2017-10-25 Thread Daniel Engelke
Hi, you probably need newer MSVC build tools / MSVC build tools in your environment. Br Daniel On 10/25/2017 11:45 AM, Sudhir Sharma wrote: Getting following error when compiling .ts file in QT 5.9.2. --- (lupdate) --- WARNING: Project ERROR: Cannot run compiler 'cl'. Maybe

Re: [Interest] propagateComposedEvents-like behavior with qt controls 2 components (no C++)

2017-09-25 Thread Daniel d'Andrada
Actually MouseArea.drag.filterChildren is just what I was looking for (so you can implement option A in pure QML). Sorry for the noise. - Daniel On 09/25/2017 09:58 AM, Andrew Ialacci wrote: I think you can chain the signal calls using signal.connect(otherSignal) and then set the drag target

[Interest] propagateComposedEvents-like behavior with qt controls 2 components (no C++)

2017-09-25 Thread Daniel d'Andrada
t to C++. But I would like a pure-QML solution for this. Is it possible? Best regards, Daniel This e-mail and any attachment(s) are intended only for the recipient(s) named above and others who have been specifically authorized to receive them. They may conta

Re: [Interest] Camera support for QtWebEngine

2017-09-15 Thread Daniel Mack
ime configuration must be made to make this happen? Thanks, Daniel On 05/24/2017 07:53 PM, Daniel Mack wrote: > Hi, > > I'm running QtWebKit 5.8 on Linux on aarch64 - the binaries are built > with Yocto/OpenEmbedded, using the meta-qt5 layer. > > Out-of-the-box, acce

[Interest] QJSEngine/QJSValue setProperty and deleteProperty Question

2017-09-11 Thread Daniel Hein
ipt code, or QJSValueIterator in C++. copying a QJSValue results in a flat copy, if the QJSValue wraps an object. In JavaScript functions are objects. So, I am unsure, if the global.deleteProperty("functionName") call just deletes this particular object reference, or the

[Interest] [Qt3D] Virtual Reality (Vive/Oculus) Example

2017-07-18 Thread Daniel Bulla
custom swapBuffers method. Hope you enjoy it and don't get sea sick :-)! -- Daniel Bulla ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] [Qt3D] Virtual Reality (Vive/Oculus) Example

2017-07-18 Thread Daniel Bulla
rAspect I guess. At least two not-yet-customizable steps must be altered: - Render to a texture owned by the SDK which we only have a GLuint texture-id of (this is only true for Oculus). - Call a custom swapBuffers method. Hope you enjoy

Re: [Interest] Camera support for QtWebEngine

2017-05-24 Thread Daniel Mack
On 05/24/2017 08:20 PM, Konstantin Tokarev wrote: > > > 24.05.2017, 20:54, "Daniel Mack" : >> Hi, >> >> I'm running QtWebKit 5.8 on Linux on aarch64 - the binaries are built >> with Yocto/OpenEmbedded, using the meta-qt5 layer. > > QtWe

[Interest] Camera support for QtWebEngine

2017-05-24 Thread Daniel Mack
g" via the QCamera::Error signal. I'm not very familiar with the internals of Qt, so I can't make sense of that. Thanks for any pointer, Daniel ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Crash related to set_transient on wayland/weston

2017-05-23 Thread Daniel Mack
On 05/22/2017 07:20 PM, Daniel Mack wrote: > I'm running Qt 5.8.0 with wayland 1.13 and weston 2.0.0 on a aarch64 > embedded machine. When trying to fire up the QCamera example, it crashes > like this: > > error marshalling arguments for set_transient (signature oiiu): null &g

[Interest] Crash related to set_transient on wayland/weston

2017-05-22 Thread Daniel Mack
ument Aborted (core dumped) The sources are cross-compiled with Yocto/Openembedded using the master-next branch of meta-qt5 (https://github.com/meta-qt5/meta-qt5/tree/master-next) Any idea how this can be solved? Thanks, Daniel ___ Interest mailing

Re: [Interest] Unsubscribe

2016-12-21 Thread Daniel França
Nevermind, it seems that the confirmation email somehow was skipping my Inbox. Nothing to see here. On Wed, 21 Dec 2016 at 16:00 Daniel França wrote: > [OFF TOPIC] > Guys, how should I proceed to unsubscribe the list? > I've tried different methods: > > 1. Sending email

Re: [Interest] camera APIs -- intended usage

2016-11-23 Thread Tyler Daniel
ideoFilter is now a thing: > http://blog.qt.io/blog/2015/03/20/introducing-video-filters-in-qt-multimedia/ > > I am sorry I can't give you definites, but I hope that helps in some way. > > > Sent: Wednesday, November 23, 2016 at 7:51 AM > From: "Tyler Danie

Re: [Interest] camera APIs -- intended usage

2016-11-23 Thread Tyler Daniel
: Monday, November 21, 2016 at 8:29 PM > From: "Tyler Daniel" > To: interest@qt-project.org > Subject: [Interest] camera APIs -- intended usage > Hi all, I recently posted this in the forums, where it was suggested that I > ask my questions here. Sorry if this is a dupli

[Interest] camera APIs -- intended usage

2016-11-21 Thread Tyler Daniel
Hi all, I recently posted this in the forums, where it was suggested that I ask my questions here. Sorry if this is a duplicate for someone. I'm building an iOS camera app and need the viewfinder/preview frames in c++-land. I also need full-resolution still images when a capture button is pres

[Interest] Linking static plugins on Linux

2016-10-24 Thread Macumber, Daniel
Hello, I have an application which I am linking with static Qt and static plugins (QSQLiteDriverPlugin, platform plugins): Q_IMPORT_PLUGIN(QSQLiteDriverPlugin); #if defined(Q_OS_OSX) Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin); #elif defined(Q_OS_WIN) Q_IMPORT_PLUGIN(QWindowsIntegrati

Re: [Interest] 5.8 Features?

2016-06-27 Thread Daniel França
+1 I love Qt, but I'd tried to implement 3 mobile apps using Qt, and I always fall in some sort of limitation that annoys me. Like you said, pretty basic things like the video recording parameters. And I look into the next steps and I don't see any much effort on that area, this was the main reaso

Re: [Interest] Hybrid Qt/HTML5 app

2016-03-08 Thread Daniel França
de mar de 2016 às 18:11, Jason H escreveu: > I think something like React/ReactNative (http://www.reactnative.com/) would > be better for your team. But My comments are below. > > *Sent:* Tuesday, March 08, 2016 at 11:58 AM > > *From:* "Daniel França" > *To:* "Jas

Re: [Interest] Hybrid Qt/HTML5 app

2016-03-08 Thread Daniel França
gt; to have QML availible but still want to live in JS. Perhaps you are trying > to maintain a core, shared codebase, which is an admirable goal, and I'm > sure you can do it. > > I think a better approach would be to use HTML to construct whatever > Widgets or elements you need an

Re: [Interest] Hybrid Qt/HTML5 app

2016-03-08 Thread Daniel França
ad and install the Qt Webkit app, just like as if hthey were > downloading chrome. If you have to work in chrome/safari/ie, then Qt is out. > > > *Sent:* Tuesday, March 08, 2016 at 10:08 AM > *From:* "Daniel França" > *To:* "Jason H" > *Cc:* "interest@

Re: [Interest] Hybrid Qt/HTML5 app

2016-03-08 Thread Daniel França
se all the bunch of libraries/frameworks we already have for JS/HTML/CSS Best, Daniel Em ter, 8 de mar de 2016 às 15:47, Jason H escreveu: > Some more background would help. With the flexibility of QML, why would > you want to restrict yourself to HTML? There are 3 paragigms at play: >

[Interest] Hybrid Qt/HTML5 app

2016-03-08 Thread Daniel França
ngine (isn't Webkit deprecated?). Does anyone has experience doing a similar thing? Which approach do you think is better? How do you suggest to work with Qt/QML/HML5? Best, Daniel [1] http://daniel-albuschat.blogspot.nl/2008/12/embedding-qt-widgets-into-qtw

Re: [Interest] QuickModel - ORM for QML

2015-11-18 Thread Daniel França
Now it worked, just took a while :) Em qua, 18 de nov de 2015 às 11:18, Daniel França escreveu: > No success trying to access this address. > > Em qua, 18 de nov de 2015 às 10:04, Sze Howe Koh > escreveu: > >> On 18 November 2015 at 16:54, Daniel França >> wrote:

Re: [Interest] QuickModel - ORM for QML

2015-11-18 Thread Daniel França
No success trying to access this address. Em qua, 18 de nov de 2015 às 10:04, Sze Howe Koh escreveu: > On 18 November 2015 at 16:54, Daniel França > wrote: > > Hey Ben, > > I didn't know about qpm, sounds very interesting. > > I'll take a look on how to publis

Re: [Interest] QuickModel - ORM for QML

2015-11-18 Thread Daniel França
Hey Ben, I didn't know about qpm, sounds very interesting. I'll take a look on how to publish my project there. Thanks, Daniel Em ter, 17 de nov de 2015 às 18:08, Ben Lau escreveu: > Hi Daniel, > > Your project is interesting. Good Job. By the way, will you be interested

Re: [Interest] subclassed QTimer

2015-11-17 Thread Daniel França
creveu: > On Tuesday 17 November 2015 16:07:24 Daniel França wrote: > > Without precise, at least in OSX, the timer simply doesn't get trigger > > while in background > > I seriously doubt it. Both the Unix and Cocoa event dispatchers use > QTimerInfoList, which simply calcu

Re: [Interest] subclassed QTimer

2015-11-17 Thread Daniel França
Without precise, at least in OSX, the timer simply doesn't get trigger while in background On Tue, 3 Nov 2015 at 15:35, Thiago Macieira wrote: > On Tuesday 03 November 2015 13:24:38 Daniel França wrote: > > If still don't work with the Q_OBJECT macro, maybe trying with >

Re: [Interest] QuickModel - ORM for QML

2015-11-17 Thread Daniel França
Hi Jason, For now it's SQLITE (LocalStorage) only, but is a cool feature to add capacity to handle JSON, I'll add it on my TODO list :) Best, Daniel Em seg, 16 de nov de 2015 às 20:42, Jason H escreveu: > Does this work on an array of JSON objects? i.e. to provide models for &g

[Interest] QuickModel - ORM for QML

2015-11-15 Thread Daniel França
Hi guys, I've developed an ORM library for QML. The main intention was to use it for some of my projects, but as I've seen a lack of this kind of library for QML I'm making open-source on my github: https://github.com/danielfranca/quickmodel It's very simple and easy to use, basically it's only a

Re: [Interest] Calling C++ from QML (without objects)

2015-11-05 Thread Daniel França
You can define a singleton type for your object and call your function from there http://doc.qt.io/qt-5/qqmlengine.html#qmlRegisterSingletonType Em qui, 5 de nov de 2015 às 19:25, Dmitry Volosnykh < dmitry.volosn...@gmail.com> escreveu: > I think, you have only option to wrap it with QObject that

Re: [Interest] Can QML model specify a range including negative numbers? For example -180 to +180 ?

2015-11-04 Thread Daniel França
If it's a sequential model you can: 1. Add the interval number as the model, and subtract the number you want. model: 360 *Then:* model -= 180 2. Create a javascript function to fill it: function makeList(model){ for (var x=-180; x <= 180; x++) { model.append({"value":x}); }}

Re: [Interest] subclassed QTimer

2015-11-03 Thread Daniel França
If still don't work with the Q_OBJECT macro, maybe trying with setTimerType (Qt::PreciseTimer)? Em ter, 3 de nov de 2015 às 14:20, Frank Hemer escreveu: > Hi René, > > On Tuesday 03 November 2015 14:13:46 René J.V. Bertin wrote: > > Hi, > > > > I wanted to add a quick timer to an editor class to

Re: [Interest] Qt-5.5.1 on Windows, VS-2013 Community, Strange Errors

2015-11-02 Thread Daniel França
Maybe you are using bool as an identifier somewhere in your code? https://msdn.microsoft.com/en-us/library/ws579tt7.aspx Em seg, 2 de nov de 2015 às 13:58, Robert Iakobashvili escreveu: > Hi, > > After building Qt-5.5.1 from sources and > trying to compile my Qt project on Windows-7, 64-bit, > w

Re: [Interest] Commercial license for embedded project

2015-11-02 Thread Daniel França
Same here, I was trying to convince other people to use Qt, but it's really complicated when the website is not clear about which license you need to deploy mobile apps, and the only commercial license available costs $300/month. Em seg, 2 de nov de 2015 às 11:18, Gian Maxera escreveu: >

Re: [Interest] Commercial license for embedded project

2015-11-02 Thread Daniel França
This is not a good solution, most of the people will simple give up as they can't find a simple information as that clearly in the website. I would have give up if I didn't know about Qt before. Em dom, 1 de nov de 2015 às 23:06, mark diener escreveu: > Peter: > > You can contact directly by p

Re: [Interest] Memory leak problem in a Qt App

2015-10-30 Thread Daniel França
You can use boost::object_pool for that purpose: http://www.boost.org/doc/libs/1_42_0/libs/pool/doc/interfaces/object_pool.html Em sex, 30 de out de 2015 às 16:10, Jason H escreveu: > > I have seen this before in a similar type of app. Don't forget to use > QObject::deleteLater() for objects tha

Re: [Interest] Qt 5.5.1 30% slower than Qt 5.5.1

2015-10-28 Thread Daniel França
Can you profile the different version to try to spot something new consuming more CPU? Em qua, 28 de out de 2015 às 12:47, maitai escreveu: > Sounds a serious issue... > > What OS are you speaking about? QML ou Widget-based application? > > Thanks > > Philippe > > > > > Le 24-10-2015 21:21, Bern

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 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] QML type checking quirk

2015-10-26 Thread Daniel França
My guess is that the error message comes in a much earlier step in compilation, in a static analysis when parsing QML. When there's an expression it can't do this kind of check in compile time and then the javascript implicit conversion works as a charm and your code works. Em dom, 25 de out de 20

Re: [Interest] Best way to handle database migrations on QML

2015-10-23 Thread Daniel França
It's kind of similar to what Django ORM does, I would definitely consider this approach for a next iteration :) My problem is how to handle the version parameter to LocalStorage. Em sex, 23 de out de 2015 às 13:28, Gian Maxera escreveu: > Hello Daniel, > I also develop website using

Re: [Interest] Best way to handle database migrations on QML

2015-10-23 Thread Daniel França
Any idea? Em qui, 22 de out de 2015 às 13:30, Daniel França escreveu: > Hi guys, > I'm developing a single file ORM library for QML. > For now it's doing most of the main operations on tables. > You can see it here, with a basic documentation as well: > https:

[Interest] Best way to handle database migrations on QML

2015-10-22 Thread Daniel França
first run, giving the same error, because ini file will say that the version is *1.0*, not *1.1.* To workaround this issue I'm just playing around with my own version control, and ignoring the builtin QML solution. But it looks wrong =/ Probably I'm missing something and

Re: [Interest] Feature Req: Qt on Mobile: PNS, gallery

2015-10-07 Thread Daniel França
*2. The ability to put an image or video into the gallery?* +1 for this There's already some ticket request regarding this? Em seg, 5 de out de 2015 às 23:57, Thiago Macieira < thiago.macie...@intel.com> escreveu: > On Monday 05 October 2015 23:44:02 Jason H wrote: > > Ok, but what about putting

Re: [Interest] QCameraViewfinder & screen orientation changed on iOS

2015-09-29 Thread Daniel França
I'd a problem with orientation using QML VideoOutput, not exactly the same, but the autoOrientation had some bugs, i.e: Doesn't recognize the Qt .InvertedPortraitOrientation orientation. I tried to fix it, instead assigning the angle in the events: onWidthChanged onHeightChanged Maybe it can help

Re: [Interest] Xcode 7 beta and Qt 5.5 ?

2015-09-21 Thread Daniel França
> On 21 Sep 2015, at 11:40, Daniel França wrote: > > > > Thanks Thiago, > > I added > > QMAKE_MAC_SDK > > =macosx10.11 > > > > and now it works, unfortunately couldn't find any oficial documentation > about QMAKE_MAC_SDK. > > > What

Re: [Interest] Xcode 7 beta and Qt 5.5 ?

2015-09-21 Thread Daniel França
Thanks Thiago, I added QMAKE_MAC_SDK=macosx10.11and now it works, unfortunately couldn't find any oficial documentation about QMAKE_MAC_SDK. Em seg, 21 de set de 2015 às 01:24, Thiago Macieira < thiago.macie...@intel.com> escreveu: > On Sunday 20 September 2015 21:46:47 Danie

Re: [Interest] Qt and Qt-Apps Adaptation for iOS-9 "Slide Over" and "Split View"

2015-09-20 Thread Daniel França
My guess is that both "Slide over" and "Split View" are managed entirely by the OS and are app-independent, in that case Qt is ready... but I may be wrong Em seg, 21 de set de 2015 às 07:09, Robert Iakobashvili escreveu: > Hi, > > 1. Is Qt ready for "Slide Over" and "Split View", >and if yes

Re: [Interest] Xcode 7 beta and Qt 5.5 ?

2015-09-20 Thread Daniel França
After update to XCode 7 I'm getting this error: http://pastebin.com/UA90Xded Anyone having similar issue? Running Qt Creator 3.5/Qt5.5 Em dom, 20 de set de 2015 às 19:58, Thiago Macieira < thiago.macie...@intel.com> escreveu: > On Sunday 20 September 2015 11:55:22 Philippe wrote: > > Building no

Re: [Interest] Indie Mobil Program terminated?

2015-09-17 Thread Daniel França
There's any news on this topic? Em seg, 20 de jul de 2015 às 03:34, Bob Hood escreveu: > On 7/19/2015 6:29 PM, Hamish Moffatt wrote: > > On 18/07/15 09:05, Bob Hood wrote: > >> On 7/17/2015 4:56 PM, Nicola De Filippo wrote: > >>> yes, but i think if he wants update the app in the future he need

Re: [Interest] Debugging in Qt Creator and displaying Qt objects d_ptr members in watch window ?

2015-09-17 Thread Daniel França
I'm in the same boat with Michael about debugging in OSX. As I don't use a Windows/Visual Studio for development I'm usually relying in the silly console output solution when I need to see variables content. gcc is known for bad integration with third party tools... but I was expecting clang woul

Re: [Interest] QML Drag? Undo?

2015-09-13 Thread Daniel França
What exactly is not working in the example? Em dom, 13 de set de 2015 às 18:06, Brett (Gmail) escreveu: > Hi, > I’m trying to build a brand new desktop app using Qt and getting stuck > trying to use QML for stuff. > > I need a drag reorder list in QML that also supports QUndoCommand and > QClipb

Re: [Interest] Dynamic build of Qt for iOS...

2015-09-10 Thread Daniel França
In that case we need to compile Qt manually for static linking, right? Em qui, 10 de set de 2015 às 16:12, Till Oliver Knoll < till.oliver.kn...@gmail.com> escreveu: > > > Am 10.09.2015 um 09:54 schrieb Igor Mironchik >: > > > > Hi guys, > > > > Is it possible to build Qt dynamically for iOS? >

Re: [Interest] Errors trying to import an external QML module to my project

2015-09-09 Thread Daniel França
Anyone? Em dom, 6 de set de 2015 às 23:42, Daniel França escreveu: > It's running fine for desktop... but when I try to deploy to IOS I get the > same errors: *"module Material is not installed"*. > The path was added to the env var QML2_IMPORT_PATH > > My first

Re: [Interest] iOS font rendering.

2015-09-07 Thread Daniel França
Any improvement changing the renderType? Em seg, 7 de set de 2015 às 10:49, Igor Mironchik escreveu: > Hi, > > I saw that on my iPad font renders very ugly. Application is QWidget-based. > > What I have to know about fonts on iOS? How to fix this ugly font? > > Thank you. > _

Re: [Interest] Errors trying to import an external QML module to my project

2015-09-06 Thread Daniel França
7;t find anything on the documentation regarding this. The first time something similar happened I solved it by moving the module to my project tree, but now I want to understand why it's happening and what's the right move. Any idea? Em qua, 2 de set de 2015 às 10:32, Daniel Fra

Re: [Interest] Errors trying to import an external QML module to my project

2015-09-02 Thread Daniel França
t-bounces+kai.koehne=theqtcompany@qt-project.org > > [mailto:interest-bounces+kai.koehne=theqtcompany@qt-project.org] > > On Behalf Of Daniel Franca > > Sent: Wednesday, September 02, 2015 10:04 AM > > To: interest@qt-project.org > > Subject: [Interest] E

[Interest] Errors trying to import an external QML module to my project

2015-09-02 Thread Daniel França
Hi guys I'm trying to import the modules from papyros (awesome components btw) to my application. For that I cloned the repo, and then I added the modules path to the *QML2_IMPORT_PATH* env var. The papyros is already with the qmldir files set correctly, s

Re: [Interest] How does Google Play validates Android binaries?

2015-07-30 Thread Daniel França
Hi Nuno, Sorry, I didn't get what you changed to make it work. Could you explain? Em qui, 30 de jul de 2015 às 10:58, Nuno Santos escreveu: > Harri, > > Yesterday, I have finally managed to solve the problem with the help of a > user. > > One of the biggest issues was the misleading information

Re: [Interest] Qt.io confusing website ... where are the pricing table and how to get indie license ?

2015-07-16 Thread Daniel França
//www.qtworldsummit.com/cpt-sessions/getting-started-with-qt-on-android/ > > or this? > > http://www.qtworldsummit.com/cpt-sessions/qt-on-ios-a-to-z/ > > and here: > > > http://www.qtworldsummit.com/cpt-sessions/extending-qt-on-android-apps-using-jni/ > > > What

Re: [Interest] Qt.io confusing website ... where are the pricing table and how to get indie license ?

2015-07-16 Thread Daniel França
that rely on Qt > Commercial license” > > Ciao, > Gianluca. > > > On 16 Jul 2015, at 10:23, Daniel França wrote: > > Ohh, forgot about the extended availability of indie licenses. > > Anyway, I do agree 100% with Nuno, most of people I talk don't even know >

Re: [Interest] Qt.io confusing website ... where are the pricing table and how to get indie license ?

2015-07-16 Thread Daniel França
Ohh, forgot about the extended availability of indie licenses. Anyway, I do agree 100% with Nuno, most of people I talk don't even know about Qt. Qt is an amazing framework, QML is fantastic to build UI, but it's missing the point to let more people know about it and I don't think that removing in

Re: [Interest] Qt.io confusing website ... where are the pricing table and how to get indie license ?

2015-07-16 Thread Daniel França
Welcome to the group :( There's a big thread about this, search for the subject "Indie Mobil Program terminated?". TL;DR Yes, the Indie license is gone =/ No reasonable alternative until now, not even the professional license, and the new website is a mess =/ Em qui, 16 de jul de 2015 às 10:28, G

Re: [Interest] Indie Mobil Program terminated?

2015-07-11 Thread Daniel França
And how about the "professional license"? On Sat 11 Jul 2015 at 11:04 Attila Csipa wrote: > Disclaimer: I don't work or speak for the Qt company. I work(ed) for > companies using the commercial license. > > The problem, as I understood it, was that this majority of Qt developers > you mention nev

Re: [Interest] RE : Re: Indie Mobil Program terminated?

2015-07-10 Thread Daniel França
IIRC the indie license was including Qt Purchasing (at least in its last months), and it was one of the main reasons that made me buy a license. Em sex, 10 de jul de 2015 às 11:53, maitai escreveu: > What is really strange to me is that the indie license specifically > targetted on android and i

Re: [Interest] Image and Canvas get pixelated on retina iOS devices

2015-07-08 Thread Daniel França
Maybe you need to add NSHighResolutionCapable to Info.plist? http://blog.qt.io/blog/2013/04/25/retina-display-support-for-mac-os-ios-and-x11/ Em qua, 8 de jul de 2015 às 13:19, Nuno Santos escreveu: > Hi, > > On my app, Images and Canvas gets pixelated on iOS retina devices. Is this > a bug? Or

Re: [Interest] RE : Re: Indie Mobil Program terminated?

2015-07-07 Thread Daniel França
esh my mind and just cannot find it anymore on the website... > > Thanks > Philippe > > > Message d'origine > De : Shantanu Tushar > Date : 07/07/2015 08:19 (GMT+01:00) > À : Daniel França > Cc : interest@qt-project.org > Objet : Re: [Interest

Re: [Interest] Camera not worknig on IOS

2015-07-07 Thread Daniel França
> Harri > > > On 07/07/2015 07:54, Daniel França wrote: > > Anyone? > > Em dom, 5 de jul de 2015 às 22:01, Daniel França > escreveu: > >> After update to Qt5.5 now the camera works on IOS, finally :D >> >> Both recording and zooming seems to be workin

Re: [Interest] Camera not worknig on IOS

2015-07-06 Thread Daniel França
Anyone? Em dom, 5 de jul de 2015 às 22:01, Daniel França escreveu: > After update to Qt5.5 now the camera works on IOS, finally :D > > Both recording and zooming seems to be working fine... but I've no idea > how to find the location where the video is saved, it seems that i

Re: [Interest] Indie Mobil Program terminated?

2015-07-06 Thread Daniel França
>> The reason why Indie Mobile product is to be discontinued is simple: there has been so few licenses sold that it does not even cover for the cost of online sales Hmmm, maybe because Qt was missing some crucial features on mobile so people were waiting those features be available before buy? On

Re: [Interest] Indie Mobil Program terminated?

2015-07-06 Thread Daniel França
vs 399 is not "lot cheaper" and completely not affordable for an individual developer :( I really hope they get a huge demand now and reconsider their decision. Best, Daniel Em seg, 6 de jul de 2015 às 10:46, Nuno Santos escreveu: > Hi, > > In one year I have never seen such

Re: [Interest] Camera not worknig on IOS

2015-07-05 Thread Daniel França
/qstandardpaths.html#StandardLocation-enum But didn't work, seems to keep saving in the same place, does anyone has any idea how to achieve that? Best, Daniel Em qui, 4 de jun de 2015 às 09:01, Gunnar Roth escreveu: > Maybe just wait for qt 5.5 release? > > To me it looks as if this bug

Re: [Interest] Indie Mobil Program terminated?

2015-07-05 Thread Daniel França
What a mess this new website. In the old website you could clearly compare the different types of licenses and make your decision easily, now all you have is a weird wizard and generic terms like "Additional professional development features, tools & functionality". Really? What exactly it means fo

Re: [Interest] Qt 5.5 vs 5.4.2 for iOS and Android: Is It Worth to Upgrade?

2015-07-05 Thread Daniel França
Hi Robert, I mean zooming the video. Em dom, 5 de jul de 2015 às 13:59, Robert Iakobashvili escreveu: > Thanks, Daniel, > > Zooming - do you mean support for zooming gestures > or something else? > > Does zooming work only for QML or also widgets? > > Thanks! > Reg

Re: [Interest] Qt 5.5 vs 5.4.2 for iOS and Android: Is It Worth to Upgrade?

2015-07-05 Thread Daniel França
For IOS, I mean On Sun 5 Jul 2015 at 13:24 Daniel França wrote: > Video recording and a also zooming works only in Qt 5.5 > On Sun 5 Jul 2015 at 11:48 Robert Iakobashvili > wrote: > >> Gentlemen, >> Which new features and fixes are making it worth >> upgradi

Re: [Interest] Qt 5.5 vs 5.4.2 for iOS and Android: Is It Worth to Upgrade?

2015-07-05 Thread Daniel França
Video recording and a also zooming works only in Qt 5.5 On Sun 5 Jul 2015 at 11:48 Robert Iakobashvili wrote: > Gentlemen, > Which new features and fixes are making it worth > upgrading to 5.5 from 5.4.2 at iOS or Android? > > I'm counting for iOS: > 1. pickup dialogs and images and multimedia fi

Re: [Interest] Indie Mobil Program terminated?

2015-07-03 Thread Daniel França
I was doing my first Qt app for IOS and waiting the 5.5 for the bug fixes regarding the camera recording/zoom. I was "luck" because I bought the indie license a few days before 5.5 came out, but I really hope that Qt come back with the Indie license, otherwise Qt wouldn't have any chance in the mob

Re: [Interest] Indie Mobil Program terminated?

2015-07-02 Thread Daniel França
>> This news sounds like a good week for Xamarin Indeed Em qui, 2 de jul de 2015 às 16:13, Edward Sutton escreveu: > This news sounds like a good week for Xamarin. > > -Ed > > > On Jul 2, 2015, at 9:06 AM, Ben Lau wrote: > > > > On 2 July 2015 at 21:45, Turunen Tuukka > wrote: > >> >> > --

Re: [Interest] Indie Mobil Program terminated?

2015-07-02 Thread Daniel França
lopment license" for $15, that's right? https://www.qt.io/buy-product/?pid=7051 If we still have a cheap license for mobile development would be great, but having to pay $350 monthly is completely insane and will make every indie developer run from Qt. Daniel Em qui, 2 de jul de 20

Re: [Interest] [qt-OSX] I got numerous warning when building my project using Qt 5.5

2015-07-02 Thread Daniel França
September, according to https://wiki.qt.io/Qt-5.5-release On Thu 2 Jul 2015 at 10:06 Liang Jian wrote: > Thanks. > But when will qt 5.5.1 be released? > > On Thu, Jul 2, 2015 at 3:32 PM, Thiago Macieira > wrote: > >> On Thursday 02 July 2015 14:50:54 Liang Jian wrote: >> > What shall

Re: [Interest] Camera cature ios roated 90 ccw (5.4.1)

2015-06-16 Thread Daniel França
Not sure if it's related, but the autoOrientation for VideoOutput didn't work well for me either. I'm waiting for the 5.5 release as I'd other problems with video capture on IOS to test it again. Em ter, 16 de jun de 2015 às 17:22, Daniel França escreveu: > Not sure i

Re: [Interest] Camera cature ios roated 90 ccw (5.4.1)

2015-06-16 Thread Daniel França
Not sure if it's related, but the autoOrientation for VideoOutput didn't work well for me either. Em ter, 16 de jun de 2015 às 16:29, Jason H escreveu: > I have a mobile app on iOS and Android. We're new to iOS. Out android app > is flawless (provided we don't use 5.4.2 >:( > > When capturing a

Re: [Interest] Camera not worknig on IOS

2015-06-01 Thread Daniel França
Sounds good. Thanks for the updated information guys. Em seg, 1 de jun de 2015 às 18:08, Jason H escreveu: > Allegedly, June 11 is the target date for the RC. The string freeze is > supposed to happen today. > > > > Sent: Monday, June 01, 2015 at 11:56 AM > > From: "Lopes Yoann" > > To: "Jason

[Interest] QML Movable/Resizable Panels

2015-05-31 Thread Daniel França
feel free to use it, contact me, give suggestions, feedback, etc :) Best, Daniel ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Camera not worknig on IOS

2015-05-31 Thread Daniel França
s://codereview.qt-project.org/#/c/109116/ > > Regards, > Gunnar Roth > > > Am 31.05.2015 um 01:27 schrieb Daniel França : > > Quite disappointed as it seems that it's a bug > https://bugreports.qt.io/browse/QTBUG-37655 > What can means that I will need to abandon my project

  1   2   3   >