[Interest] ApplicationWindow is not an Item?

2016-06-16 Thread Jason H
I tried using Keys on an application window. I got an error that it is not an item. While it's trivial to throw an item in, why isn't it an Item? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QtQuick compiler

2016-06-16 Thread Jason H
It is not. See http://blog.qt.io/blog/2016/06/16/qt-5-7-released/   "The only exception is the Qt Quick Compiler where we need some more time to finish the required changes to be able to support this feature in the Open Source Edition." Sent: Wednesday, June 15, 2016 at 8:42 AM From: "Xavier

[Interest] Urgent: ld: framework not found MobileCoreServices on OSX

2016-06-15 Thread Jason H
I just found an issue with my app in the Apple App store. I am trying to fix urgently it, but now I get ld: framework not found MobileCoreServices /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -headerpad_max_install_names -stdlib=libc++

Re: [Interest] 5.8 Features?

2016-06-24 Thread Jason H
obile devices. Some features like DPI retrieving wasn't correctly implemented so because it was a blocker for us, we fixed it by calling the native API on Android.           2016-06-24 15:00 GMT+02:00 Robert Iakobashvili <corobe...@gmail.com>: On Tue, Jun 21, 2016 at 10:55 PM, Jas

Re: [Interest] Routing all QML file requests through a custom resource provider

2016-06-17 Thread Jason H
What Dimitry said plus:   Add: CONFIG += resources_big   to your .pro file, which should get around some long linking times.     -- Sent: Friday, June 17, 2016 at 5:45 AM From: "Dmitry Volosnykh" To: "Max Savenkov"

[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] 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] 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 {} }

Re: [Interest] 5.8 Features?

2016-06-27 Thread Jason H
u 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 reason I'd cancel my subscription. Mobile seems more like a second class citizen.   On Fri, 24 Jun 2016 at 18:02 Jason H <jh...@gmx.co

Re: [Interest] 5.8 Features?

2016-06-24 Thread Jason H
m: ekke <e...@ekkes-corner.org> To: interest@qt-project.org Subject: Re: [Interest] 5.8 Features? Am 24.06.16 um 18:02 schrieb Jason H: 6 months of latency would be great. But the things I talk about are pretty basic on mobile: - Foreground/background lifecycle events, - S

[Interest] Bluring the composited background for a menu

2016-06-27 Thread Jason H
It seems it's all the rage these days: Providing a menu whose background is the result of something below it, blurred, then its own content layered on top.I have a Menu item above the rest of the app, with a cyan background. Attempting to use blur only blurs the cyan (no change), the text below

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.

[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] 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. $

[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

[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] 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

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

[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

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] 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] 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] 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] 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] 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

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

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-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

[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] 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] 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] 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

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] 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

[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: {

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] 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] 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] 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

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] 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

[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

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 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

[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] 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

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] 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

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] 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] 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

[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
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] 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

[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] Moving from Parse

2016-03-28 Thread Jason H
I'm not sure I see your problem. You're using Qt, you can use QJson* classes, QNAM, and interop with these without issue. I believe you can just use MongoDB, as a JS object store. I've not done that though, but that seems the path of most resistence. I personally just roll my own using

Re: [Interest] Problem location symbol on android

2016-04-08 Thread Jason H
I'm not sure of your exact issue, looks good to me. But do note: 1. You may need a QTPLUGIN 2. The android dynamic linker is single-pass, one-way. All prerequisites must me loaded prior to the library containing depenencies.   But, given your logs I think it should be working. I've not used

Re: [Interest] qtWebsocket SSL question

2016-04-08 Thread Jason H
Use openssl's cert generation features. > Sent: Friday, April 08, 2016 at 11:24 AM > From: "Alexander Carôt" > To: "qt qt" > Subject: [Interest] qtWebsocket SSL question > > Hello all, > > I just started investigating websockets with Qt and

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

Re: [Interest] Canvas keeping artifacts

2016-03-23 Thread Jason H
your code, no luck. It looks like the Black Sabbath - Paraoid album cover.      Sent: Wednesday, March 23, 2016 at 5:11 PM From: "Jérôme Godbout" <jer...@bodycad.com> To: "Jason H" <jh...@gmx.com> Cc: "interest@qt-project.org Interest" <interest@qt-projec

[Interest] Canvas keeping artifacts

2016-03-23 Thread Jason H
I have a very simple pause button: Canvas { id: pauseCanvas anchors.fill: parent onWidthChanged: requestPaint() onHeightChanged: requestPaint() onPaint: { var ctx = getContext('2d');

Re: [Interest] Very large QRC file

2016-03-23 Thread Jason H
> Sent: Wednesday, March 23, 2016 at 4:23 PM > From: "Thiago Macieira" <thiago.macie...@intel.com> > To: interest@qt-project.org > Subject: Re: [Interest] Very large QRC file > > On quarta-feira, 23 de março de 2016 16:39:02 EDT Jason H wrote: > > I have

Re: [Interest] Canvas keeping artifacts

2016-03-24 Thread Jason H
, March 23, 2016 at 6:21 PM From: "Jérôme Godbout" <jer...@bodycad.com> To: "Jason H" <jh...@gmx.com> Cc: "interest@qt-project.org Interest" <interest@qt-project.org> Subject: Re: [Interest] Canvas keeping artifacts Canvas {         id: c

Re: [Interest] Canvas keeping artifacts

2016-03-24 Thread Jason H
By the way, reset() is not a W3C function, and it's also not in the QML Canvas documentation.   I'm wondering how you found it?       Sent: Thursday, March 24, 2016 at 9:42 AM From: "Jason H" <jh...@gmx.com> To: "Jérôme Godbout" <jer...@bodycad.com> Cc: &

[Interest] Amharic character support?

2016-03-24 Thread Jason H
Amharic (Ethiopian) is giving me some trouble. All the other languages are fine. What do I need to do get Amharic characters showing? They are rendered as boxes. ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Amharic character support?

2016-03-24 Thread Jason H
> On quinta-feira, 24 de março de 2016 17:41:30 PDT Jason H wrote: > > Amharic (Ethiopian) is giving me some trouble. All the other languages are > > fine. What do I need to do get Amharic characters showing? They are > > rendered as boxes. > > How are you sure

Re: [Interest] Amharic character support?

2016-03-24 Thread Jason H
t;jesse.ja...@gmail.com> > To: interest@qt-project.org > Subject: Re: [Interest] Amharic character support? > > 24.03.2016, 20:44, Jason H kirjoitti: > > I'm not sure at all. I'm using Monserrat, which is a google > > font, which works for every language I have except that

[Interest] Displaying First video frame (android)

2016-03-25 Thread Jason H
I have an app that on OSX, I can play() and pause() back-to-back to get the first frame on screen. On android this doesn't seem to work, it stays black (black background rect). Is there a way I can ensure the first videoframe is presented? ___

[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] 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

Re: [Interest] Very large QRC file

2016-03-23 Thread Jason H
> Notice the -no-compress option too this can save runtime CPu costs involved > with decompressing the data especially for already compressed formats such as > most video codecs. > > Then in your c++ source add: > > QResource::registerResource("mybigmedia.qrb"); > > and use it just like any

Re: [Interest] Very large QRC file

2016-03-23 Thread Jason H
> Op 23/03/2016 om 16:57 schreef 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. > Please don't. Don't fi

Re: [Interest] Very large QRC file

2016-03-23 Thread Jason H
> > mac { > asset_builder.output = > $$OUT_PWD/VideoPlayerHIV.app/Contents/MacOs/${QMAKE_FILE_IN_BASE}.qrb > } else { > asset_builder.output = $$OUT_PWD/${QMAKE_FILE_IN_BASE}.qrb > } > > Or similar. Most excellent. Thank you. ___ Interest

Re: [Interest] Canvas keeping artifacts

2016-03-25 Thread Jason H
> Sent: Friday, March 25, 2016 at 5:14 AM > From: "Nikita Krupenko" <krne...@gmail.com> > To: interest@qt-project.org > Subject: Re: [Interest] Canvas keeping artifacts > > 2016-03-24 15:49 GMT+02:00 Jason H <jh...@gmx.com>: > > By the way

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] 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
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
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] 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] 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); > ... > > //

<    2   3   4   5   6   7   8   9   10   11   >