Re: [Interest] Very large QRC file

2016-03-23 Thread Jason H
Not sure. This is an app for a tablet, I've always packaged assets in qrc, because it "just worked". I could try DISTFILES, but I'm unsure how that work on mobile platforms. > Sent: Wednesday, March 23, 2016 at 11:41 AM > From: "Gian Maxera" <gmax...@gmail.com>

[Interest] Very large QRC file

2016-03-23 Thread Jason H
I have a qrc devoted to media: audio and video. It's only about 100 megs total of both (2 videos and several languages for each). It results in about a 500MB cpp file. It takes 8 gigs to compile, which is what my hardware ram is, so I spend a lot of time swapping. Everytime I compile it takes

[Interest] Qt/JNI blows up on android when activity is closed

2016-03-22 Thread Jason H
As my app's tendrils root further into the mobile OSs, I've found one very troubling issue. I have an alarm manager and a service to handle the pending intent. The service talks to Qt through JNI. This works for as long as my Qt Activity exists. However if the activity is closed (user task

Re: [Interest] User Auth Confirmation on account.qt.io

2016-03-20 Thread Jason H
> Sent: Friday, March 18, 2016 at 4:01 AM > From: "Nikos Chantziaras" <rea...@gmail.com> > To: interest@qt-project.org > Subject: Re: [Interest] User Auth Confirmation on account.qt.io > > On 17/03/16 16:32, Jason H wrote: > > Just curious why this is alwa

[Interest] User Auth Confirmation on account.qt.io

2016-03-19 Thread Jason H
Just curious why this is always happening to me. I'm not seeing why I need to confirm it every time? I do have multiple qt.io accounts, but I use incognito mode to maintain seperate logins when needed. ___ Interest mailing list Interest@qt-project.org

Re: [Interest] QML Image

2016-03-19 Thread Jason H
A picture would help   Sent: Thursday, March 17, 2016 at 1:15 AM From: "Jani Tykka" <jty...@broadsoft.com> To: "Jason H" <jh...@gmx.com> Cc: "interest@qt-project.org Interest" <interest@qt-project.org> Subject: Re: [Interest] QML Image Source

Re: [Interest] QML Image

2016-03-19 Thread Jason H
Since you mention gradients, try setting source size or the mipmap properties. I wonder if you're getting some subsampling issue.     Sent: Wednesday, March 16, 2016 at 8:26 AM From: "Jani Tykka" To: "interest@qt-project.org Interest" Subject: 

Re: [Interest] Upcoming mobile Qt features?

2016-03-14 Thread Jason H
obile Qt features? > > Don't wait for anything. > > Native code for Android and IOS. > > md > > On 3/14/2016 1:26 PM, Jason H wrote: > > I'm being asked for more modern features, I don't know where these are on > > the Qt roadmap? > > > > - TouchID/F

[Interest] Upcoming mobile Qt features?

2016-03-14 Thread Jason H
I'm being asked for more modern features, I don't know where these are on the Qt roadmap? - TouchID/FingerprintManager: Now that both mobile platforms have platform-level APIs for fingerprints, is Qt going to support them in some way? - Streaming video: Capture, send, receive "live"

Re: [Interest] Dynamic translations for mobile apps at runtime?

2016-03-11 Thread Jason H
Ooops. I concretely missed the `virtual`. > Sent: Friday, March 11, 2016 at 11:15 AM > From: "Julien Cugnière" <julien.cugni...@gmail.com> > To: "Jason H" <jh...@gmx.com> > Cc: "interest@qt-project.org Interest" <interest@qt-project.org&g

Re: [Interest] Dynamic translations for mobile apps at runtime?

2016-03-11 Thread Jason H
So we had a great thread about "dynamic translations" Its in and working well. (Thanks everyone) And while I have a slick update procedure for adding dictionaries at run time, I am wondering about adding translation strings at runtime? Here's what's happening: - App is in a language (Now, can

Re: [Interest] QML Promises

2016-03-11 Thread Jason H
Nice. Thank you. Sent: Thursday, March 10, 2016 at 5:41 PM From: "Gunnar Roth" <gunnar.r...@gmx.de> To: "Jason H" <jh...@gmx.com> Cc: "interest@qt-project.org" <interest@qt-project.org> Subject: Re: [Interest] QML Promises Maybe have a

[Interest] QML Promises

2016-03-10 Thread Jason H
Are promises scheduled to come to QML anytime soon? (5.6/5.7)? The more code I write in JS, the more async things are getting. Anytime I work with XMLHttpRequest or LocalStorage (and worse yet, when I combine them) I get into a call-back hell. ___

Re: [Interest] QML id property to string?

2016-03-10 Thread Jason H
Awesome! Thanks.   But shouldn't this be in QML by default? Seems like it'd be a simple thing to add and use?       Sent: Thursday, March 10, 2016 at 1:10 PM From: "Jérôme Godbout" <jer...@bodycad.com> To: "Jason H" <jh...@gmx.com> Cc: "Dmitry V

Re: [Interest] QML id property to string?

2016-03-10 Thread Jason H
Yes, Ideally what I want: 1. Be able to get object id as string 2. Search the object heirarchy for that string and get that object    Sent: Thursday, March 10, 2016 at 12:14 PM From: "Dmitry Volosnykh" <dmitry.volosn...@gmail.com> To: "Jason H" <jh...@gmx.c

[Interest] QML id property to string?

2016-03-10 Thread Jason H
A few times now, I've wanted to display the id as a string. Usually when something goes wrong on the console, but sometimes in a hash/map. I've got a function that takes an object (QML item) and does some processing on it. Is there a way to get it? I know I can just set a property, but then

[Interest] QML offline storage and Non-QML database sharing

2016-03-09 Thread Jason H
I have an increasing need for QML aspects of my software to interact and coordinate through a database to the C++ side. Case and point: I have a C++ class that is exposed to QML that needs to work in the same database as QML. There is the QQmlEngine::offlineStoragePath(), which returns some

Re: [Interest] Dynamic translations for mobile apps at runtime?

2016-03-09 Thread Jason H
Great clarification, thanks Andre! > Sent: Wednesday, March 09, 2016 at 2:24 AM > From: "André Somers" <an...@familiesomers.nl> > To: interest@qt-project.org > Subject: Re: [Interest] Dynamic translations for mobile apps at runtime? > > > > Op 08/03/2

Re: [Interest] Hybrid Qt/HTML5 app

2016-03-08 Thread Jason H
...@gmail.com> To: "Jason H" <jh...@gmx.com> Cc: "interest@qt-project.org" <interest@qt-project.org> Subject: Re: [Interest] Hybrid Qt/HTML5 app Generally when someone says "web" they mean something that works in browser. While Qt apps can be Chrom

Re: [Interest] Dynamic translations for mobile apps at runtime?

2016-03-08 Thread Jason H
I'm wondering why you load all those languages and then remove all but one of them? Being a mobile app, I have to be somewhat conscience of memory foot print. Do you see anything wrong with: void Backend::selectLanguage( QString language ) { translator = new QTranslator(this);

Re: [Interest] Hybrid Qt/HTML5 app

2016-03-08 Thread Jason H
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" <daniel.fra...@gmail.com> To: "Jason H" <jh...@gmx.com> Cc: "

Re: [Interest] Hybrid Qt/HTML5 app

2016-03-08 Thread Jason H
er Widgets or elements you need and stick with that. A lot can be done with HTML Canvas.    Sent: Tuesday, March 08, 2016 at 10:52 AM From: "Daniel França" <daniel.fra...@gmail.com> To: "Jason H" <jh...@gmx.com> Cc: "interest@qt-project.org" <interest@qt-p

Re: [Interest] Hybrid Qt/HTML5 app

2016-03-08 Thread Jason H
at 10:08 AM From: "Daniel França" <daniel.fra...@gmail.com> To: "Jason H" <jh...@gmx.com> Cc: "interest@qt-project.org" <interest@qt-project.org> Subject: Re: [Interest] Hybrid Qt/HTML5 app Thanks for answer it, but I don't understand why you need

Re: [Interest] Hybrid Qt/HTML5 app

2016-03-08 Thread Jason H
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: 1. Classic C++ Qt, parent-child heiarchial based layouts. 2. QML, Anchor and parent/child/sibling based layouts  3. HTML, DOM based layouts   My

Re: [Interest] Translating plural with is/are

2016-03-07 Thread Jason H
It is up to the person filling the > translation file with translations (including the one for English) to > make sure that both versions of the definitive string are provided in > the .ts file. > > André André and Thiago, thanks for clarifying that. I figured there was some type of string

Re: [Interest] Translating plural with is/are

2016-03-07 Thread Jason H
> > Ok I'm getting there, but how do I specify this string (a) or that string > > (b)? > > What's the qsTr() line look like? > > qsTr( ? ) > > http://doc.qt.io/qt-5/i18n-plural-rules.html > > and > > http://doc.qt.io/qt-5/i18n-source-translation.html > > -> chapter Handling Plurals Yeao,

Re: [Interest] Android services

2016-03-07 Thread Jason H
; From: "Pendleton, Corey" <corey.pendle...@garmin.com> > To: "Jason H" <jh...@gmx.com> > Cc: "interest@qt-project.org" <interest@qt-project.org> > Subject: RE: [Interest] Android services > > Yeah, we have the same challenge. Our

Re: [Interest] Translating plural with is/are

2016-03-07 Thread Jason H
> > If you provide a translation file, the message with %n will be translated > according to the language's plural rules. For English, you'll have two > translations for the same source message. > > "At least one upper case character is required" (a) > "At least %n upper case

Re: [Interest] Android services

2016-03-07 Thread Jason H
] > Sent: Friday, March 04, 2016 5:50 PM > To: interest@qt-project.org > Subject: Re: [Interest] Android services > > Why don't you create a skeleton test app and share with the group the source > code. > > I sent you a reply message yesterday suggesting the Android Job API. &

Re: [Interest] Translating plural with is/are

2016-03-07 Thread Jason H
> > > > Supply a translation file for en_US. > > I'm not sure I follow. I don't see anything that allows me to tell it to > select one for singular or the other? I think I'm missing something? I'd like to **NOT** have a redundant pluralisation check, which might not match the language's

Re: [Interest] Translating plural with is/are

2016-03-07 Thread Jason H
> Sent: Monday, March 07, 2016 at 12:38 PM > From: "Thiago Macieira" <thiago.macie...@intel.com> > To: interest@qt-project.org > Subject: Re: [Interest] Translating plural with is/are > > Em segunda-feira, 7 de março de 2016, às 18:23:20 PST, Jason H escr

Re: [Interest] Android services

2016-03-07 Thread Jason H
ndroid Job API. > > You might find sweeter fruit using that. > > md > > > On 3/4/2016 4:46 PM, Jason H wrote: > > So I am trying to implement a background service and it's not going very > > well. The service is being used to upload files when the UI is suspended

[Interest] Android services

2016-03-04 Thread Jason H
So I am trying to implement a background service and it's not going very well. The service is being used to upload files when the UI is suspended. My usage differs from the http://www.kdab.com/qt-android-episode-7/ tutorial in a number of ways. 1. I have a Qt App 2. I have a subclassed

Re: [Interest] Dynamic translations for mobile apps at runtime?

2016-03-03 Thread Jason H
What if you did "-tr-function-alias qsTr=MySingleton.myqsTr" ?    Sent: Thursday, March 03, 2016 at 5:31 PM From: "Jérôme Godbout" To: "Julien Cugnière" Cc: "interest@qt-project.org" Subject: Re: [Interest] Dynamic

Re: [Interest] Dynamic translations for mobile apps at runtime?

2016-03-03 Thread Jason H
Absolutely fantastic!!! THANKS! > Sent: Thursday, March 03, 2016 at 11:04 AM > From: "Gian Maxera" <gmax...@gmail.com> > To: "Jason H" <jh...@gmx.com> > Cc: "interest@qt-project.org" <interest@qt-project.org> > Subject: Re: [Inter

[Interest] Dynamic translations for mobile apps at runtime?

2016-03-03 Thread Jason H
First, I'm not talking about the standard translation features of Qt. Those are static - the translation file is generated and deployed with the app. I now need to support an ever-changing list of translations. I want my mobile app to download the current set of translations and use that. In

Re: [Interest] Deleting the QNetworkAccessManager post(req, iodev) QIODevice?

2016-03-03 Thread Jason H
> Sent: Wednesday, March 02, 2016 at 6:26 PM > From: "Thiago Macieira" <thiago.macie...@intel.com> > To: interest@qt-project.org > Subject: Re: [Interest] Deleting the QNetworkAccessManager post(req, iodev) > QIODevice? > > On quinta-feira, 3 de mar

[Interest] Background Uploads in Android

2016-03-02 Thread Jason H
So there seems to be some conflicting information out there about how to do this in Qt. It seems that in 5.3, because the Qt thread as not the UI thread, everything worked. then in 5.4, that stopped working? This was supposed to be fixed in 5.5? Anyhow, I'm working with 5.6 now. I have enough

Re: [Interest] Deleting the QNetworkAccessManager post(req, iodev) QIODevice?

2016-03-02 Thread Jason H
Let me expand on this, I can f->setParent(reply), but I also need to delete the file from disk. If I rely on the parent/child object deletion, I can't get a change to delete the file. > QFile *f = new QFile(filename); > f->open(QIODevice::ReadOnly) > ... > nam.post(req, f); > ... > > //

[Interest] Deleting the QNetworkAccessManager post(req, iodev) QIODevice?

2016-03-02 Thread Jason H
QFile *f = new QFile(filename); f->open(QIODevice::ReadOnly) ... nam.post(req, f); ... // sometime later in the finished slot: finished(QNetworkReply *reply) { // how to close and delete f ? (The QFile object) } Thanks ___ Interest mailing list

[Interest] Obtain the QNAM in use in a QML app?

2016-03-02 Thread Jason H
Is there a static/singleton QNetworkAccessManager that I can get in a Qt app rather than creating my own? I know there is a QNetworkAccessMangerFactory for customizing the QNAM that QML gets, but that's not what I'm asking. Platform is Android, but I'm interested "in general".

Re: [Interest] Native Sqlite on iOS

2016-02-26 Thread Jason H
> I have to write some native implementation functions (ObjC) for my Qt/QML > app. I'm wondering about having to include/link sqlite library. I'm not > really a iOS guy, just a Qt guy having to hack some native functionality. > Do I have to link another sqlite3? Can I just run the one that Qt

[Interest] Native Sqlite on iOS

2016-02-26 Thread Jason H
I have to write some native implementation functions (ObjC) for my Qt/QML app. I'm wondering about having to include/link sqlite library. I'm not really a iOS guy, just a Qt guy having to hack some native functionality. Do I have to link another sqlite3? Can I just run the one that Qt uses?

Re: [Interest] Android Studio and Qt

2016-02-25 Thread Jason H
> Jason: > > On 2/24/2016 8:38 PM, Jason H wrote: > > How does one "regenerate it back into the build directory"? > > You want to look at the "use gradle builds" and then generate android > files in the project android setup in project preferences

Re: [Interest] Android Studio and Qt

2016-02-24 Thread Jason H
seem 'Qt' to me. Many thanks for the insights so far! > Sent: Wednesday, February 24, 2016 at 8:25 PM > From: "m...@rpzdesign.com" <m...@rpzdesign.com> > To: No recipient address > Cc: "Jason H" <jh...@gmx.com>, "interest@qt-project.org" >

Re: [Interest] Android Studio and Qt

2016-02-24 Thread Jason H
ry and magically > inside this directory is another gradle file. > > Import from that build location and Android Studio will come up and be > able to process the java files while the compiled so C++ files are > loaded but not able to step into them as a native library. > > Tha

[Interest] Android Studio and Qt

2016-02-24 Thread Jason H
There is a step missing in http://www.kdab.com/qt-android-episode-6/ Where we go from importing the build.gradle to somehow having Java source to start debugging. Can someone fill in the missing steps? I didn't find any .java files. ___ Interest

[Interest] emitting signals from UIApplication app delegate?

2016-02-24 Thread Jason H
I want a QObject class to emit a signal when a function in my app delegate is invoked. (Code follows) How can I do that? I don't know how to use QObjects in ObjectiveC --- PlatformShimImpl.cpp PlatformShimImpl::PlatformShimImpl(){ qDebug() << Q_FUNC_INFO; QtAppDelegate

[Interest] Preventing iOS/Android device sleep

2016-02-22 Thread Jason H
I have an app that records video. If the user records more than the display timeout, the display goes black. Is there a way in Qt 5.5 or 5.6 to prevent the device sleep? I know android will require a WAKE_LOCK permissions. Ideally these this will only be in place while the video recording is

[Interest] Minimum work needed to update bundle for Apple App Store?

2016-02-18 Thread Jason H
Recently, Apple started requiring a 167x167px icon for iPad Pro. I added the entry to the Info.plist, but was unsure of what to do. Will the icon be included in the bundle just from from the plist change? Will I have to rebuild the app? Will it only update when the .xcodeproj is rebuilt, and if

Re: [Interest] C++/QML Sequence Type to JavaScript Array

2016-02-18 Thread Jason H
> MyData object filled with some data and exposed as context property to QML. > At QML i imported QtPositioning, so QGeoCoordinate refers to coordinate QML > basic type, but > console.log(myData.path) prints QVariant(QList) > console.log(myData.path) prints undefined > - there is no

[Interest] Speeding up linking for iOS?

2016-02-15 Thread Jason H
It takes forever for my app to link for iOS. Is there anyway to speed this up? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] background uploads in iOS

2016-02-10 Thread Jason H
I was reading on how I can do background uploads and it seems as os iOS 7, there is a facility to do this. ( https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSURLSession_class/index.html ) (

[Interest] Gerrit questions

2016-02-08 Thread Jason H
I'm trying to push code to gerrit, but I'm having some issues. I've fought through many already, but I'm at ! [remote rejected] HEAD -> refs/for/dev/osx_recording_params (missing Change-Id in commit message footer) error: failed to push some refs to

Re: [Interest] Gerrit questions

2016-02-08 Thread Jason H
____ > From: Interest <interest-boun...@qt-project.org> on behalf of Jason H > <jh...@gmx.com> > Sent: Monday, February 8, 2016 15:55 > To: interest@qt-project.org > Subject: [Interest] Gerrit questions > > I'm trying to push code to gerrit, but I

[Interest] OSX moc_file compile error

2016-02-08 Thread Jason H
I'm building a modified version of Qt, I'm not used new to Objective-C. I have to include AVFoundation.h, because it has NSString key IDs, but when I do, the moc_ version of the file bombs out. How do I fix this? In file included from .moc/debug/moc_avfaudioencodersettingscontrol.cpp:9: In file

Re: [Interest] What happened to 5.5.1 branch?

2016-02-08 Thread Jason H
> > Not sure why it got deleted. They are free. > > It's free to keep it in the repository, but it adds noise to, say, > `git branch -r` (command line). The number of Qt versions only grows > over time. > > Also, a branch is for making commits. Since no more commits are > accepted for Qt 5.5.1,

Re: [Interest] What happened to 5.5.1 branch?

2016-02-08 Thread Jason H
> Sent: Monday, February 08, 2016 at 3:56 PM > From: "Thiago Macieira" <thiago.macie...@intel.com> > To: interest@qt-project.org > Subject: Re: [Interest] What happened to 5.5.1 branch? > > Em segunda-feira, 8 de fevereiro de 2016, às 19:10:59 PST, Jason H e

Re: [Interest] OSX moc_file compile error

2016-02-08 Thread Jason H
> Em segunda-feira, 8 de fevereiro de 2016, às 16:14:53 PST, Jason H escreveu: > > I'm building a modified version of Qt, I'm not used new to Objective-C. I > > have to include AVFoundation.h, because it has NSString key IDs, but when I > > do, the moc_ version of the file bo

Re: [Interest] What happened to 5.5.1 branch?

2016-02-05 Thread Jason H
branch. > > On sexta-feira, 5 de fevereiro de 2016 23:32:09 PST Jason H wrote: > > Git issues: > > 1. I checked out the 5.5.1, and created a branch called > > osx_recording_params. SourceTree shows me the [osx_recording_params] in the > > "SourceTree" window.

Re: [Interest] Where to does Qt expect to find ".qt-license" file when running on a Jenkins slave machine?

2016-02-05 Thread Jason H
> Sent: Friday, February 05, 2016 at 4:36 PM > From: "Michael Capewell" > To: interest@qt-project.org > Subject: Re: [Interest] Where to does Qt expect to find ".qt-license" file > when running on a Jenkins slave machine? > > Edward Sutton subsite.com> writes: > > > > >

[Interest] What happened to 5.5.1 branch?

2016-02-05 Thread Jason H
Git issues: 0. I'm using Atlassian's Source Tree. 1. I checked out the 5.5.1, and created a branch called osx_recording_params. SourceTree shows me the [osx_recording_params] in the "SourceTree" window. 2. Things were fine until 5.6 branch happened. Now, the list of pre-5.6 branches is gone. $

Re: [Interest] 5.5.1 OSX BTLE compile error - UUID is deprecated

2016-02-01 Thread Jason H
gt; > To: "interest@qt-project.org" <interest@qt-project.org> > Subject: Re: [Interest] 5.5.1 OSX BTLE compile error - UUID is deprecated > > On Friday 29 January 2016 20:49:49 Jason H wrote: > >> I don't know if this is fixed in 5.6? > > >From: Interes

[Interest] x-platform way to pull app version?

2016-02-01 Thread Jason H
Currently, I have a string that I have to manually maintain, is there a way I can call some function and get my application version (that's in the plist or manifest)? ___ Interest mailing list Interest@qt-project.org

[Interest] Compiling 5.5.1 from git sources

2016-01-29 Thread Jason H
I've been having some build problems, probably of my own fault. My make distclean failed part of the way though, but it got far enough that the configure script would proceed. ~/qt5/qtdeclarative/src/3rdparty/masm/yarr/YarrPattern.cpp:39:10: fatal error: 'RegExpJitTables.h' file not found

Re: [Interest] Compiling 5.5.1 from git sources

2016-01-29 Thread Jason H
So on a whim, I: bash cd ~/qt5/qtdeclarative/src/3rdparty/masm python create_regex_tables > RegExpJitTables.h exit make   and it seemed to work.   Sent: Friday, January 29, 2016 at 9:13 AM From: "Jason H" <jh...@gmx.com> To: "Andrew Knight" <andrew.kni..

Re: [Interest] Compiling 5.5.1 from git sources

2016-01-29 Thread Jason H
Hrm...   Jasons-Mac-mini:qt5.5.1-ios jhihn$ which python /usr/bin/python Jasons-Mac-mini:qt5.5.1-ios jhihn$ python --version Python 2.7.10   How can I recover from it?  Sent: Friday, January 29, 2016 at 9:03 AM From: "Andrew Knight" <andrew.kni...@intopalo.com> T

Re: [Interest] OT: perforce (was: Local version control with Qt Creator on Linux)

2016-01-29 Thread Jason H
ieira wrote: > > On Friday 29 January 2016 01:48:06 Jason H wrote: > >> Perforce is free for 20 users / 20 workspaces. I really like it. The only > >> issue is by default files not checked out are readonly. This causes > >> problems when building for iOS/Android as the

[Interest] 5.5.1 OSX BTLE compile error - UUID is deprecated

2016-01-29 Thread Jason H
/Users/jhihn/qt5/qtconnectivity/src/bluetooth/osx/osxbtledeviceinquiry.mm:313:21: error: /Users/jhihn/qt5/qtconnectivity/src/bluetooth/osx/osxbtledeviceinquiry.mm:313:21: error: property 'UUID' not found on object of type 'CBPeripheral *' property 'UUID' not found on object of type

[Interest] OSX/iOS Recording parameters backend

2016-01-29 Thread Jason H
Currently, these Apple platforms don't support recording parameters. They use a hard-coded 1280x720, and as my app wants to upload video, this takes a considerable amount of time. On Android, we can set the parameters, and get "reasonable" file sizes and quality. On OSX/iOS, it's about 1 MB

[Interest] Compiling Qt 5.5.1 from source for OSX, iOS

2016-01-28 Thread Jason H
I did a in-place build, then realized I wanted to do both OSX and iOS, so I make the build directories. When I try to compile: You cannot make a shadow build from a source tree containing a previous build. Cannot proceed. I've run: make clean What do I need to do to be able to build again?

Re: [Interest] Compiling Qt 5.5.1 from source for OSX, iOS

2016-01-28 Thread Jason H
Ah, nevermind. man git-clean > Sent: Thursday, January 28, 2016 at 6:00 PM > From: "Jason H" <jh...@gmx.com> > To: "Thiago Macieira" <thiago.macie...@intel.com> > Cc: interest@qt-project.org > Subject: Re: [Interest] Compiling Qt 5.5.1 from source

Re: [Interest] Compiling Qt 5.5.1 from source for OSX, iOS

2016-01-28 Thread Jason H
> Or, better: git clean -x -d -f. If you're not using git, rm -rf and unpack > the > tarball again. Thanks. I have changes to QtMultimedia. Will those git options keep my changes? ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Local version control with Qt Creator on Linux

2016-01-28 Thread Jason H
> I have experiences in using SVN (as client side user with Tortoise and other > clients) and I am very satisfied with it. I am a single user and there are no > plans of any team work. > > What version management software should I try to install in your opinion? Perforce is free for 20 users /

[Interest] Does QNAM / XMLHttpRequest understand 100?

2016-01-28 Thread Jason H
We are talking about using a long-polling technique. As a result, the server will send `100 continue` until there is data available for the client. Is this supported in Qt? ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Qt component repositories (was: QtArg version 2.0.0)

2016-01-26 Thread Jason H
> What's the difference between qpm.io and inqlude.org? I use neither, but it looks like qpm.io is a npm-style site that uses a package manager to do the downloading for you. NPM is highly successful. With node, you have package.js in the project root that lists your dependencies and their

Re: [Interest] How to get number of channels from QAudioDeviceInfo

2016-01-26 Thread Jason H
> In the application am writing I can work around not being able to detect the > actual number of channels on a device but I do need to be able to send sound > data independently to each channel. Is this possible with Qt? I have no idea. You're looking at the code. My guess is no, that you'll

Re: [Interest] Getting QImages into QMediaRecoder to create video files (e.g. avi, mp4, or animated gif)?

2016-01-26 Thread Jason H
Well your QImages are going to display device optimized, your video needs to be YUV (or some other video format) There exists a multitude of utlities that can take images and use them as frames. FFMPeg is one. GraphicsMagick (Like ImageMagick but MIT licensed) is another.  Availible as exe or

Re: [Interest] Qt component repositories

2016-01-26 Thread Jason H
> The most helpful initiatives for Qt is the one that de-fragments it. Qt > community isn't big enough to cut it into pieces... I completely agree. We are too small to be fragmented. We should resolve this sooner than later. I also like the idea that it gets carried forth by an organization -

[Interest] 5.6 Beta broken on iOS (5.5.1 regression)

2016-01-25 Thread Jason H
Sorry I can't be more articulate, but here's what happened that lead to this posting. I have an app on iOS and Android. I'm compiling android against 5.6 because the beta has some fixes I need. I accidentally compiled the iOS version against 5.6 instead of 5.5.1 because I clicked on the wrong

[Interest] iOS video orientation (recording)

2016-01-25 Thread Jason H
Is there anything I can do to get it as portrait? The app is locked to portrait, but it only records landscape video, so all the videos need to be rotated 270. ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Video file generation from Qt application, other than FFmpeg

2016-01-23 Thread Jason H
FFMPEG is a utllity and a library.   I would investigate using FFMPEG from a command line using QProcess, rather than linking to it directly.     Sent: Friday, January 22, 2016 at 5:34 PM From: "rpzrpz...@gmail.com" To: interest@qt-project.org Subject: Re: [Interest]

Re: [Interest] Pixmap redraw on OS X Retina display zoomed-in 4x?

2016-01-22 Thread Jason H
Look for something called DevicePixelRatio... Also QML Screen attached property/element. It might be a shortcoming in Qt, but you should be able to work around it.       Sent: Friday, January 22, 2016 at 8:57 AM From: "Edward Sutton" To: "Qt Interest"

[Interest] Can't login to bugreports

2016-01-21 Thread Jason H
It seems the login now requires an @, and something is amiss in my account. Can someone look into it? The password reset link isn't working. I'm not sure which email domain it is going to, but none of them have received a password reset link. ___

Re: [Interest] Can't login to bugreports

2016-01-21 Thread Jason H
> Sent: Thursday, January 21, 2016 at 11:37 AM > From: "Thiago Macieira" <thiago.macie...@intel.com> > To: interest@qt-project.org > Subject: Re: [Interest] Can't login to bugreports > > On Thursday 21 January 2016 16:18:52 Jason H wrote: > > It seems th

Re: [Interest] Can't login to bugreports

2016-01-21 Thread Jason H
> Sent: Thursday, January 21, 2016 at 1:42 PM > From: "Matthew Woehlke" <mwoehlke.fl...@gmail.com> > To: interest@qt-project.org > Subject: Re: [Interest] Can't login to bugreports > > On 2016-01-21 11:37, Thiago Macieira wrote: > > On Thursda

Re: [Interest] Video file generation from Qt application, other than FFmpeg

2016-01-21 Thread Jason H
> Sent: Thursday, January 21, 2016 at 3:15 PM > We will not be able to use the FFmpeg library for video generation from > our Qt application. Are there any other tools/products usable with Qt > which can do basic generation of video files, given a sequence of > QImages or QPixmaps? We don't

[Interest] QML ListView not updating with ListModels

2016-01-20 Thread Jason H
I am implementing a model where items have a "check" property. The GUI calls it a Toggle. If the first item is checked, all other items should be unchecked, and vice versa. In my delegate I have: Toggle { id: toggle checked: check onCheckedChanged: {

[Interest] Summary of Android 6.0 issues?

2016-01-20 Thread Jason H
My phone finally got the OTA update for marshmallow - but I have not installed it yet. I am developing with Qt on Android. Is there anyone else here that has 6.0? Any issues developing for Android? Not that it matters, but my host platform is OSX. Many thanks in advance

[Interest] Standardized StackView navigation

2016-01-18 Thread Jason H
What are your thoughts with extending StackView (maybe a derived class called 'ScreenStack' or 'ActivityStack') I've done a number of mobile-paradigm based apps, and seem to be convergently evolving the same pattern. main.qml { ScreenStack {} Screen1 {} Screen2 {} Screen3 {} Screen4 {} }

[Interest] git initr-epository error

2016-01-13 Thread Jason H
Aliasing ../../../qtrepotools/git-hooks/gerrit_commit_msg_hook as qt3d/.git/hooks/commit-msg ... Cannot create forwarding script qt3d/.git/hooks/commit-msg: Not a directory What should I do? ___ Interest mailing list Interest@qt-project.org

[Interest] User comments on web pages?

2016-01-12 Thread Jason H
There are a few things I'd like to add to the documentation, but the barrier to entry is too high. I'm wondering if we could allow comments by users (or those with bugreports account, or has an an account and is authorized) to be able to comment on the online help? I found the PHP comments

Re: [Interest] User comments on web pages?

2016-01-12 Thread Jason H
> Op 12/01/2016 om 16:17 schreef Gian Maxera: > >> On 12 Jan 2016, at 15:11, André Somers <an...@familiesomers.nl> wrote: > >> > >> Op 12/01/2016 om 15:57 schreef Jason H: > >>> There are a few things I'd like to add to the documentation, but th

[Interest] Deployment issue on Samsung S3

2016-01-11 Thread Jason H
I'm not sure where to file this. I've got an S3 running 4.4.2 11:47:32: The process "/Users/jhihn/Qt5.6.0/5.6/android_armv7/bin/androiddeployqt" exited normally. 11:47:32: Pulling files necessary for debugging. 11:47:32: Package deploy: Running command

[Interest] Auto SmoothedAnimation?

2016-01-07 Thread Jason H
I have a progress bar (Rectangle) that I update the width on a fairly regular interval. I've tried using SmoothedAnimation, but it smoothly fills, pauses, then fills some more. I've read the docs that talk about velocity, but as far as I am concerned, this should be automatic. Velocity should

[Interest] What's the proper way to do custom QtActivity (android)

2016-01-06 Thread Jason H
I'm not looking for a Android primer, but I am looking on a primer on how to get the Qt/QtCreator to play nice with a subclassed application and activity. Ideally, I'd like to add the .java files somewhere and get up and running. I've read http://doc.qt.io/qt-5/deployment-android.html

Re: [Interest] Example SSL Server based on Qt...

2016-01-06 Thread Jason H
Don't take this the wrong way...  I've written production-level HTTP SSL servers in Qt before, and I've even requested/suggested there be a Qt C++ server framework. So take this as advice from a veteran.   Well, you should use QCoreApplication (drop the GUI), you never call

Re: [Interest] QLocalSocket bug?

2016-01-05 Thread Jason H
> Hi, >  I am adapting existing code from QTcpSocket to QLocalSocket (The TCP code > was used for distributing computations over a network, but since I also want > to separate the local computation in a sub-process, I'm using the TCP > code > for IPC using QLocalSocket). >  On the server side,

Re: [Interest] QLocalSocket bug?

2016-01-05 Thread Jason H
> It seems that win32 implementation of QLocalSocket is not so good, there are > many issues which prevent plain replacement of QTcpServer/Socket by > QLocalServer/Socket Why can't you just connect through loopback interface? (127.0.0.1) ___ Interest

Re: [Interest] Qt 5.5.1+ Android Activity Theme & OpenGL

2016-01-05 Thread Jason H
> Bogdan: > > Thanks for your answers on the previous gradle issues. > > During your work on QtActivity, did you ever try to create use a custom theme? > > The native Splash screen for Qt is rooted in a java function, but that > function executes way AFTER java inflation. > > So attaching the

<    5   6   7   8   9   10   11   12   13   14   >