[Interest] Preventing sleep on mobile platforms

2015-04-13 Thread Jason H
I need to capture a photo, and while the photo capture screen is active, I want to disable the screen's ability to turn itself off until we have left the image capture screen. Is there a way to do this in QML, for Android and iOS? ___ Interest mailin

Re: [Interest] Preventing sleep on mobile platforms

2015-04-13 Thread Jason H
On Android, this seems to correspond to the WAKE_LOCK permission. I was hoping there was a Window.preventSleep property or something like that so I can modify the property at run-time. > Sent: Monday, April 13, 2015 at 1:09 PM > From: "Thiago Macieira" > To: interest@qt-project.org > Subject:

Re: [Interest] Preventing sleep on mobile platforms

2015-04-13 Thread Jason H
Thanks everyone.   I'll try to figure out how to use this. I don't know Objective C at all. Rather than set it once for the app, I'd just like specific screens to do it.   Is there a way we can get this integrated as part of QML Window? Or is there some other more apropriate element? Screen m

[Interest] Camera.focus.focusZones.length is 0?

2015-04-14 Thread Jason H
I am trying to get more reliable (read: in-focus) images. It seems that Camera.searchAndLock() is not enough, for various reasons that I won't go into. I am approaching this problem from multiple angles. I now include accelerometer data to reduce motion blur (our subjects are still) and I went t

Re: [Interest] Camera.focus.focusZones.length is 0?

2015-04-15 Thread Jason H
Qt 5.4.1 on Android 5.1 on Nexus 6 > Sent: Wednesday, April 15, 2015 at 6:19 AM > From: "Lopes Yoann" > To: "Jason H" > Cc: "interest@qt-project.org" > Subject: Re: [Interest] Camera.focus.focusZones.length is 0? > > > > On 14 Apr 20

[Interest] iOS app store rejection - microphone consent?

2015-04-15 Thread Jason H
Rejection details : ''' 2.3 Details During review, we were prompted to provide consent to use the microphone. However, we were not able to locate any features in your app that use the microphone for audio recording. Next Steps The microphone consent request is generated by the use of either

Re: [Interest] iOS app store rejection - microphone consent?

2015-04-15 Thread Jason H
> Il giorno 15/apr/2015, alle ore 17:41, Jason H ha scritto: > > > Rejection details : > > ''' > > 2.3 Details > > > > During review, we were prompted to provide consent to use the microphone. > > However, we were not able to locate

Re: [Interest] iOS app store rejection - microphone consent?

2015-04-15 Thread Jason H
http://doc.qt.io/qt-5/qml-qtmultimedia-camerarecorder.html > Sent: Wednesday, April 15, 2015 at 11:58 AM > From: Gianluca > To: "Jason H" > Cc: "interest@qt-project.org" > Subject: Re: [Interest] iOS app store rejection - microphone consent? > > >

Re: [Interest] Camera.focus.focusZones.length is 0?

2015-04-15 Thread Jason H
"Well there's your problem" - Adam Savage I've spent 2 days trying to get the focus on our pictures better. At least I have a cool new accelerometer based shutter now. Sent: Wednesday, April 15, 2015 at 10:40 AM From: "Lopes Yoann" A bug with searchAndLock() has been fixed for 5.5.0, see  QT

Re: [Interest] iOS app store rejection - microphone consent?

2015-04-15 Thread Jason H
> Sent: Wednesday, April 15, 2015 at 1:09 PM > From: Gianluca > > There is a property called “muted”, the documentation reports: "This property > indicates whether the audio input is muted during recording.” > Maybe this option stop the requesting of microphone access. > Set this property to

Re: [Interest] json file handling

2015-04-15 Thread Jason H
> Sent: Wednesday, April 15, 2015 at 1:28 PM > From: "Andre Somers" > To: interest@qt-project.org > Subject: Re: [Interest] json file handling > > On 15-4-2015 17:25, Thiago Macieira wrote: > > On Wednesday 15 April 2015 16:36:15 André Somers wrote: > >>> The dilemma I'm in is, how can I tell th

Re: [Interest] iOS app store rejection - microphone consent?

2015-04-15 Thread Jason H
> Sent: Wednesday, April 15, 2015 at 2:51 PM > From: Gianluca > To: "Jason H" > Cc: "interest@qt-project.org" > Subject: Re: [Interest] iOS app store rejection - microphone consent? > > > Il giorno 15/apr/2015, alle ore 19:56, Jason H ha scritto:

[Interest] Sensor availableDataRates?

2015-04-15 Thread Jason H
In QML, there is a data rate QList property, which is a typedef for a QPair How in JS can I see this? I tried a for loop to print availibleDataRates[i], all that gives me is an object. How can I print these in JS? I would figure availibleDataRates[i].first, availibleDataRates[i].second? Thanks

Re: [Interest] json file handling

2015-04-16 Thread Jason H
> Sent: Wednesday, April 15, 2015 at 7:21 PM > From: "Thiago Macieira" > To: interest@qt-project.org > Subject: Re: [Interest] json file handling > > On Wednesday 15 April 2015 20:27:00 Jason H wrote: > > Anyway, when converting structured data, you can im

Re: [Interest] iOS app store rejection - microphone consent?

2015-04-16 Thread Jason H
I wanted to bump this because this is holding up our re-submission. How can we "choose the AVAudioSession session category that fits your application's needs"? Specifically we need video, but not audio recording. Thanks. > Sent: Wednesday, April 15, 2015 at 11:41 AM >

Re: [Interest] iOS app store rejection - microphone consent?

2015-04-17 Thread Jason H
Thanks Yoann. I need this patch urgently.  INC-607995   Sent: Friday, April 17, 2015 at 5:30 AM From: "Lopes Yoann" To: "spami...@gmail.com" Cc: "interest@qt-project.org" Subject: Re: [Interest] iOS app store rejection - microphone consent? This is a bug in Qt. The camera plugin always crea

Re: [Interest] sqlite

2015-04-17 Thread Jason H
I've used SQLite as a table store pretty extensively and I can say: 1. It works as advertised. It allows multiple processes to access the same database safely. Threads no. Processes yes. 2. Multiple process performance is low. It may me adequate if there is not a lot of concurrency, just a lot o

Re: [Interest] sqlite

2015-04-20 Thread Jason H
> Sent: Friday, April 17, 2015 at 7:24 PM > From: "Thiago Macieira" > To: interest@qt-project.org > Subject: Re: [Interest] sqlite > > On Friday 17 April 2015 21:57:44 Jason H wrote: > > I've used SQLite as a table store pretty extensively and I can say:

Re: [Interest] iOS app store rejection - microphone consent?

2015-04-20 Thread Jason H
Hi, Yoann,   Can I get an ETA so that we can either relax or come up with some mitigation if it is not going to be patched in time?   Thanks.     Sent: Friday, April 17, 2015 at 11:57 AM From: "Jason H" To: "Lopes Yoann" Cc: "interest@qt-project.org" S

Re: [Interest] New Qt User

2015-04-20 Thread Jason H
That's just a tab widget with vertical tabs.   Sent: Monday, April 20, 2015 at 1:27 PM From: "Scapegoat Sarthak" To: interest@qt-project.org Subject: Re: [Interest] New Qt User Link for mock-up is: http://1drv.ms/1E2r2M1    On 20 April 2015 at 12:58, Scapegoat Sarthak

Re: [Interest] Wrong mouse move events.

2015-04-22 Thread Jason H
First, mouse moves are unpredictable. I have a drawing app that looses the mouse moves. instead of a line like: I'll get ___.___.___ Depending on how you are doing signals,slots, they might not be direct invocations, and can be queued. Queues can be messed with. (like m

[Interest] Compiling Qt for iOS: ld: library not found for -lpoly2tri_debug

2015-04-22 Thread Jason H
I'm trying to compile (from enterprise tool's sources) a patched version of Qt. I get this: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.pla

Re: [Interest] Compiling Qt for iOS: ld: library not found for -lpoly2tri_debug

2015-04-22 Thread Jason H
It seems it is this issue, https://bugreports.qt.io/browse/QTBUG-43006 , which is marked 'done' for 5.4.1 but I still have the issue. I'm comp > Sent: Wednesday, April 22, 2015 at 12:23 PM > From: "Jason H" > To: "interest@qt-project.org" > Subjec

Re: [Interest] QtSql database insertion issues...

2015-04-22 Thread Jason H
I always execute CREATE TABLE IF NOT EXISTS table after connecting.       Sent: Wednesday, April 22, 2015 at 10:08 PM From: BRM To: "Tony Rietwyk" , "'Qt Project'" Subject: Re: [Interest] QtSql database insertion issues... So I dove in more tonight; and discovered a rather dumb mista

Re: [Interest] QtSql database insertion issues...

2015-04-23 Thread Jason H
rging trend I can't see anything really happening at the SQL module anymore.   Sent: Thursday, April 23, 2015 at 1:48 AM From: "André Somers" To: interest@qt-project.org Subject: Re: [Interest] QtSql database insertion issues... Jason H schreef op 23-4-2015 om 04:38: I a

Re: [Interest] QtSql database insertion issues...

2015-04-23 Thread Jason H
t Windows NT 4 and RHEL 4 even though it’s not as fun as working with the latest and greatest.  So please, I beg of you, do not remove any functionality without a complete, viable, fully functional replacement.   Karl   On Apr 23, 2015, at 9:35 AM, Jason H <jh...@gmx.com> wrote:   V

[Interest] iOS Accelerometer doesn't work; sensor_explorer crashes on iOS.

2015-04-23 Thread Jason H
I went to move the Android-developed accelerometer feature to iOS and it doesn't work. I don't get any updates. I went to use the sensor_explorer example and it crashes with some errors: sensor_explorer.qml:46 module Explorer is not installed Error: your root element must be a Window.

Re: [Interest] iOS Accelerometer doesn't work; sensor_explorer crashes on iOS.

2015-04-24 Thread Jason H
; crashes on iOS. > > > > On 23/04/2015 19:19, Jason H wrote: > > I went to move the Android-developed accelerometer feature to iOS and it > > doesn't work. I don't get any updates. > > > > I went to use the sensor_explorer example and it crashes w

[Interest] OpenCV on mobile (iOS and Android)

2015-05-07 Thread Jason H
I am looking for instructions on how to use OpenCV with Qt on mobile platforms. I have some experience using libzbar on Android, but I am out of my comfort zone on iOS as I'm pretty new to XCode and the Apple tool chain. Has anyone used OpenCV on in an app on multiple mobile platforms with Qt/Q

Re: [Interest] OpenCV on mobile (iOS and Android)

2015-05-07 Thread Jason H
Thanks! That is very cool, and will check it out. I was more concerned with compile/link/managing dependencies though. > Sent: Thursday, May 07, 2015 at 10:41 AM > From: Gianluca > To: "Jason H" > Cc: "Qt Project" > Subject: Re: [Interest] OpenCV on mobile

Re: [Interest] Google Play 60-day deadline for resolving OpenSSL vulnerabilities

2015-05-07 Thread Jason H
I just checked my own APK and we're linking against 1.0.1j, and I have NOT received the message you mention. So I would think that either you/Qt or Parse is linking against a vulrnable version.    HTH   Sent: Thursday, May 07, 2015 at 4:54 PM From: "Nuno Santos" To: "Interests Qt" Subject: Re

[Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-08 Thread Jason H
I have an app that takes photos. It works on desktop, Android and iOS. When running with 5.4.1, it takes pictures correctly. When running with 5.4.2 snapshot (04 May _111), it shows the image in the VideoOutput correctly, but when we get the image and display it in Image it comes out 90deg CCW.

Re: [Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-08 Thread Jason H
Camera.orientation and VideoOutput.orientation are 270, regardless of Qt version. So I think this is introduced by the changes around AVFoundation. > Sent: Friday, May 08, 2015 at 3:07 PM > From: "Jason H" > To: "Interests Qt" > Subject: [Interest] Qt 5.4.2 s

Re: [Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-11 Thread Jason H
For us, it was a very welcomed behavioral change. Will this be in 5.5 then? This breaks our app and back-end processing for mobile. How do we fix this?       Sent: Monday, May 11, 2015 at 7:28 AM From: "Lopes Yoann" To: "Jason H" Cc: "Interests Qt" Subject: Re

Re: [Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-11 Thread Jason H
be able to display it as captured.   Will the exif suggestion work with that?       Sent: Monday, May 11, 2015 at 11:49 AM From: "Lopes Yoann" To: "Jason H" Cc: "Lopes Yoann" , "Interests Qt" Subject: Re: [Interest] Qt 5.4.2 snapshot ios camera cap

[Interest] Let's talk about the upcoming Camera breakage in 5.4.2

2015-05-12 Thread Jason H
I wanted to open this discussion up to anyone who is using a Camera, who has working code in 5.4.1. Brief backstory: At 5.4.1 introduced a fix that is is being removed in 5.4.2, because it is considered a "behavior" change and not a bug fix. I think this categorization is wrong, and I'm going

Re: [Interest] Let's talk about the upcoming Camera breakage in 5.4.2

2015-05-13 Thread Jason H
hink we need to determine and proceed the path of least impact. If I'm wrong, I'll back off. But since there are so many mobile fixes in the x.x.Y releases, I have a hard time believing that is the case. > Sent: Wednesday, May 13, 2015 at 8:55 AM > From: "Gunnar Sletta&qu

[Interest] Error diring make install for iOS build

2015-05-18 Thread Jason H
While doing a make install for -xplatform macx-ios-clang -release, it installed the QtGUI stuff, but bombed with: === BUILD TARGET xmlpatterns OF PROJECT xmlpatterns WITH CONFIGURATION Release === Check dependencies Code Sign error: No provisioning profiles found: No non–expired provisioning p

Re: [Interest] App crashing in ig4icd32.dll (Intel HD Graphics 3000)

2015-05-20 Thread Jason H
Yes, there is an issue out there (I don't recall it's number) I think our case was with a Intel HD Graphics 2ooo though, and was with the Graphical Effects, but a different one. It seems these cards have a buggy GL implementation. The issue, last I looked at it, suggested they just blacklist th

Re: [Interest] App crashing in ig4icd32.dll (Intel HD Graphics 3000)

2015-05-20 Thread Jason H
this is not the bug I was talking about. > Sent: Wednesday, May 20, 2015 at 11:22 AM > From: "Igor Mironchik" > To: interest@qt-project.org > Subject: Re: [Interest] App crashing in ig4icd32.dll (Intel HD Graphics 3000) > > Hi, > > Look at this bug: https://bugreports.qt.io/browse/QTBUG-43243

Re: [Interest] Call for Papers to Qt World Summit now open

2015-05-20 Thread Jason H
The domain is .org not .com     Sent: Monday, May 18, 2015 at 8:56 AM From: "Kojo Tero" To: "market...@qt-project.org" , "developm...@qt-project.org" , "interest@qt-project.org" Subject: Re: [Interest] Call for Papers to Qt World Summit now open Hello,   A reminder on the Qt World Summit ca

[Interest] aarch64-linux-android-g++: error: unrecognized command line option

2015-05-21 Thread Jason H
I started prepparing a minimal example for an issue, and I started getting errors. I've never had a problem and I haven't updated anything in the NDK /opt/android-ndk-r10d/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x86_64/bin/aarch64-linux-android-g++ -c -Wno-psabi -march=armv7-a -mfloa

Re: [Interest] aarch64-linux-android-g++: error: unrecognized command line option

2015-05-21 Thread Jason H
Looks like I have a messy Kit configuration. I'm not sure why Qt is applying the wrong parameters though. > Sent: Thursday, May 21, 2015 at 1:57 PM > From: "Jason H" > To: "interest@qt-project.org" > Subject: [Interest] aarch64-linux-android-g++: error

[Interest] Bug with displaying rectangles?

2015-05-21 Thread Jason H
Ok, so I have this phone app (minimal example attached) It is supposed to set the fill color between green or transparent. And it does. But what I observe is it fills the rectangle with the border color (white) for an instant before filling with green. To run this example you must be on a phon

Re: [Interest] Let's talk about the upcoming Camera breakage in 5.4.2

2015-05-22 Thread Jason H
AVE IT AS IT IS IN 5.4.1. You're going to have a lot of pissed off customers that are working, then cease to work, then will work fine again with 5.5. > Sent: Wednesday, May 13, 2015 at 10:54 AM > From: "Jason H" > To: "Gunnar Sletta" > Cc: "Inte

Re: [Interest] aarch64-linux-android-g++: error: unrecognized command line option

2015-05-22 Thread Jason H
n > > On Thursday 21 May 2015 19:57:59 Jason H wrote: > > /opt/android-ndk-r10d/toolchains/aarch64-linux-android-4.9/prebuilt/linux-x8 > > 6_64/bin/aarch64-linux-android-g++ > > > aarch64-linux-android-g++: error: unrecognized command line option '-mfloat- > >

Re: [Interest] Managing phone and tablet versions of the same application

2015-05-26 Thread Jason H
  I created a function to handle per-fixel scaling.  This works in the few areas that I need a fixed-pixel size element (i.e. borders). Everything else is laid out in proportion via percentages (i.e parent.width *0.33) If you need more than that, there is a file selector prefix you can use qith Q

Re: [Interest] Let's talk about the upcoming Camera breakage in 5.4.2

2015-05-26 Thread Jason H
ibute to the Project’s success"? Thanks. > Sent: Friday, May 22, 2015 at 10:35 AM > From: "Michael R Nelson" > To: "Jason H" > Cc: "Interests Qt" > Subject: RE: [Interest] Let's talk about the upcoming Camera breakage in 5.4.2 > >

Re: [Interest] SQLite

2015-05-27 Thread Jason H
There used to be an ORM for Qt that was promoted on this list. http://lmgtfy.com/?q=qt+orm Aside from that, I don't use ORMs, and I just have a general "settings" table of key value pairs one of which is the schema version. However you must write your own upgrade routine. When dealing with post

Re: [Interest] SQLite

2015-05-28 Thread Jason H
I once wrote a ORM that took an XML definition, and spat out QObject-derived classes that provided QObject QPROPERTY to SQLite database mappings. So it would create the SQL schema, the source files (.cpp/h) had support for transactions and rollbacks. I don't know how useful it would be for anyon

Re: [Interest] Camera not worknig on IOS

2015-06-01 Thread Jason H
  I think still capture is fine, aside from no ability to control the flash. I've been testing still camera capture on 5.4.1 for a few months now and it works. I'm not sure about video capture, but that would be a huge oversight if it didn't.   Here is my iOS .pro block: ios { QMAKE_INFO_PL

Re: [Interest] Camera not worknig on IOS

2015-06-01 Thread Jason H
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 H" > Cc: "Edward Sutton" , "Gunnar Roth" > , "interest@q

[Interest] QPdfWriter - ability to embed XML?

2015-06-10 Thread Jason H
I'm wanting to embed content data in XML so that it is query-able by external programs. As far as I can tell the QPdFWriter implementation we have is primarily for rasterization. Is there a way in Qt to include non-visible XML? Would it be a lot of work to add it if it does not exist? Unforunate

Re: [Interest] QPdfWriter - ability to embed XML?

2015-06-10 Thread Jason H
I have a months-open bug. It took me forever to convince the trolls that it is a bug. What I discovered is that it assumes 72dpi, rather than using the proper DPI setting. Scaling your fonts by newDPI/72 *fontSize will get it to the correct size. Note that when printing I only ever use pointSize

Re: [Interest] Qt5 with qml 2.x on Windows XP... problems?

2015-06-10 Thread Jason H
Please be aware that performance wise, you may have issues. Vista was the first version to require some 3D capability. XP has GL (opengl32.dll), but only a very simple implementation. Most vendors (NVidia, ATI) supplied their own GL driver. It is my understanding that QtQuick 2 assumes GL. I am n

Re: [Interest] Qt5 with qml 2.x on Windows XP... problems?

2015-06-10 Thread Jason H
ednesday, June 10, 2015 at 4:01 PM > From: "Giuseppe D'Angelo" > To: interest@qt-project.org > Subject: Re: [Interest] Qt5 with qml 2.x on Windows XP... problems? > > Il 10/06/2015 21:46, Jason H ha scritto: > > It is my understanding that QtQuick 2 assumes

[Interest] What about this simple QML is broken?

2015-06-10 Thread Jason H
I sat down today to teach someone QML and it didn't work as expected. I'm on Linux usually, this person was on Windows 8, using a 32 bit Mingw. I'm pretty confident in my QML abilities, now with mobile apps on both App stores, and many other utilities not published. At issue is the simple prope

Re: [Interest] What about this simple QML is broken?

2015-06-10 Thread Jason H
sday, June 10, 2015 at 4:52 PM From: "Jérôme Godbout" To: "Jason H" Cc: "interest@qt-project.org" Subject: Re: [Interest] What about this simple QML is broken? The Rectangle is not a direct parent or sibling of id something, there's Text in between.   On We

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

2015-06-16 Thread Jason H
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 image, we capture the preview image, we then display this image in an image element. In android with autoOrientation: true it works fine. In iOS the image is

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

2015-06-16 Thread Jason H
Thanks that would be awesome, I don't know any Obj-C!     Sent: Tuesday, June 16, 2015 at 11:28 AM From: "Gian Maxera" To: "Daniel França" Cc: "Jason H" , "interest@qt-project.org" Subject: Re: [Interest] Camera cature ios roated 90 ccw (5

[Interest] Wiki Down?

2015-06-19 Thread Jason H
https://wiki.qt.io/Qt-5.5-release Sorry! This site is experiencing technical difficulties. Try waiting a few minutes and reloading. (Cannot contact the database server) ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mai

[Interest] QML Inspector?

2015-06-25 Thread Jason H
Is there anything that allows us to see a tree view of items at runtime and inspect (and modify?) their properties? I just helped someone who was dealing with an opacity issue and it was because of a component a few levels up. If they could visualize the element hierarchy as a tree, it would ha

Re: [Interest] QML Inspector?

2015-06-25 Thread Jason H
This.is.awesome! Thanks Giuseppe! > Sent: Thursday, June 25, 2015 at 3:36 PM > From: "Giuseppe D'Angelo" > To: interest@qt-project.org > Subject: Re: [Interest] QML Inspector? > > Il 25/06/2015 21:30, Jason H ha scritto: > > Is there anything that a

[Interest] QML ListView/Model currentIndexChanges not firing for synamic models

2015-06-29 Thread Jason H
We have two scrolling pickers which are based on ListView. They are the same QML Component. When one is assigned a static model (ListModel/ListElement) it works. When it is created programmatically, it does not. What is going wrong? We've looked into dynamicRoles and tried using sync() Thanks i

[Interest] My first OSX compile ends in error.

2015-06-30 Thread Jason H
Normally I build on Linux, or when building on OSX, for iOS. But this is my first stab at running the QML app on OSX. Undefined symbols for architecture x86_64: "qt_static_plugin_QSvgPlugin()", referenced from: main::StaticQSvgPluginPluginInstance::StaticQSvgPluginPluginInstance() in mai

Re: [Interest] My first OSX compile ends in error.

2015-06-30 Thread Jason H
Hrm... So after playing some more, removing the entry in main.cpp, it works. I need a better way to appropriately include Q_IMPORT_PLUGIN(QSvgPlugin) I thought it was needed on all __APPLE__ platforms, but it seemingly isn't > Sent: Tuesday, June 30, 2015 at 5:24 PM > From: &quo

[Interest] ListView currentItem not changing (5.4)

2015-07-01 Thread Jason H
I'm trying to use a ListView with a VisualItemModel The ListView is horizontal and displays three "first time" help screens. The user can swipe left/right between them. Only one is ever on the screen at once. The user is also provided forward/back buttons. highlightFollowCurrentItem: true snapMo

[Interest] Online Installer/Maintence tool not working

2015-07-01 Thread Jason H
I'm trying to upgrade to Qt 5.5. It might be because of a 5.5 stampede, but none of the online stuff is working. I Force Quitted that (OSX), and it would't launch. So I launched it from the command line. It said I needed to update the maintenance tool. I've been sitting at a maintenance tool s

Re: [Interest] Indie Mobil Program terminated?

2015-07-02 Thread Jason H
It seems a bit early to give up on the Indie mobile. There are reasons for having loss-leaders. As someone who does mobile (iOS/Android) I'm constantly dealing with feature discrepancies between iOS and Android. 5.5 represents an probably first version of Qt to have all the substantial features

Re: [Interest] Living with 5.4.x QML QQuickPaintedItem/QQuickItem plugins

2015-07-02 Thread Jason H
Charts is commercial. Are you using the Commercial version?   Sent: Thursday, July 02, 2015 at 1:46 PM From: "mark diener" To: "interest@qt-project.org" Subject: Re: [Interest] Living with 5.4.x QML QQuickPaintedItem/QQuickItem plugins Plugins example still dies.   Qt 5.5 - Examples/Qt-5.5/

[Interest] Using a iOS Camera in 5.5 vs 5.4?

2015-07-02 Thread Jason H
I have an app that uses the camera. It started with 5.3, ships on 5.4. It works on iOS. I started another app today, and I copied the ios block from the .pro into the new project, as well as a few other settings (app icons, launch screens) I use the same VideoOutput/Camera setup, but the ViewFi

Re: [Interest] Using a iOS Camera in 5.5 vs 5.4?

2015-07-02 Thread Jason H
5 are being deployed to the same phone. > Sent: Thursday, July 02, 2015 at 6:22 PM > From: "Jason H" > To: "interest@qt-project.org" > Subject: [Interest] Using a iOS Camera in 5.5 vs 5.4? > > I have an app that uses the camera. It started with 5.3, ships on

Re: [Interest] Indie Mobil Program terminated?

2015-07-03 Thread Jason H
We have a commerical license for Charts on the server side of things. I'll probably switch this out to use Chart.js.   We use professional support quite often. This is normally a result of an issue with Qt and in most cases a parity issue between mobile platforms. I think we should be done using

[Interest] StackView transitionFinished()?

2015-07-03 Thread Jason H
I have a screen that is pushed on the Stack (I use onVisibileChanged) I refresh the data from the server. On most phones this is ok, but on pre iPhone 6s, the animation is rather choppy. I am looking for a way to have the screen get notified that it's done sliding in (the default animation) so

[Interest] Web Docs more detailed than Creator's help?

2015-07-03 Thread Jason H
Creator's Help: Qt 5.5 > Qt Quick Controls> QML Types > TextAreaStyle QML Type Provides custom styling for TextArea. More... import Statement:import QtQuick.Controls.Styles 1.4 Since: Qt 5.2 Web Help: Qt 5.5 > Qt Quick Controls> QML Types > TextAreaStyle QML Type Provides custom styling

Re: [Interest] StackView transitionFinished()?

2015-07-03 Thread Jason H
> Sent: Friday, July 03, 2015 at 3:34 PM > From: "Jason H" > To: "interest@qt-project.org" > Subject: [Interest] StackView transitionFinished()? > > I have a screen that is pushed on the Stack (I use onVisibileChanged) I > refresh the data from the serv

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

2015-07-06 Thread Jason H
Changes that we provoked into getting into Qt 5.5: (Note we skipped 5.4.2, so two of the three may have showed up in 5.4.2) iOS: Camera flash now works. The multimedia system only requests microphone when needed. (Or was this in 5.4.2?) Android: Allegedy camera focus is fixed. (Or was this in

Re: [Interest] Camera not worknig on IOS

2015-07-07 Thread Jason H
This would be par for Qt, because on Android you need JNI code to add a photo to the gallery as well. I would agree I think that a function like this should be provided by Qt. But the workflow is not as simple as saving to the the writable location returned by QStandardPath. (Qt actually intern

Re: [Interest] Indie Mobil Program terminated?

2015-07-07 Thread Jason H
1. Consult your laywer.  2. But there is some question if LGPL apps are allowed in the App stores. 3. I'd get the Indie Mobile for $25/25 (I forget) before August 31 and get grandfathered in. This is not advice, but it's what I would do.     Sent: Tuesday, July 07, 2015 at 3:11 PM From: "John

Re: [Interest] Indie Mobil Program terminated?

2015-07-07 Thread Jason H
caveats apply.    Yes, sometimes not at the rate you want. But it's "getting there". It's definately usable. I've published apps in iOS and Android app stores.   Sent: Tuesday, July 07, 2015 at 3:53 PM From: "John C. Turnbull" To: "Jason H" Cc: &q

Re: [Interest] Can't get green dot with ios 8.4

2015-07-07 Thread Jason H
Thanks. After some digging, I think it's a Creator issue so I posted in that group. FWIW, Creator thinks a different phone is connected than is actually connected. > Sent: Tuesday, July 07, 2015 at 4:27 PM > From: "Michael R Nelson" > To: "jh...@gmx.com" , "interest@qt-project.org" > > Subje

Re: [Interest] Indie Mobil Program terminated?

2015-07-07 Thread Jason H
e exactly, but close) to true x-platform compatibility. Don't get caught up in some performance thing (did you actually mean cross-platform performance?) because YOU WILL LOSE. That's not where you're going to hang your hat. And your not sounding all that humble, IMO.   On Tue, Jul 7,

Re: [Interest] Is moc obsolete?

2015-07-08 Thread Jason H
Those of us not able to be on the L&G compilers would value the presence of moc in the not-bleeding-edge compilers. Source compatibility cannot be overstated. In fact, the original post on http://woboq.com/ is asking the question, if it is possible, not that moc has outlived it's usefulness or t

[Interest] iOS LaunchImages? : WAS: Image and Canvas get pixelated on retina iOS devices

2015-07-09 Thread Jason H
I'm finally trying to get myu launch images to work. I've not had any success.  I've been following the guide at http://doc.qt.io/qt-5/platform-notes-ios.html.    Whereas my first attempts did not flat out work, (got the default black text on white)  Now I just get a blank screen (The launch im

Re: [Interest] Exposing types to the QJSEngine in Qt 5.5

2015-07-09 Thread Jason H
> Sent: Thursday, July 09, 2015 at 4:26 AM > From: "Jaroslaw Staniek" > To: interest@qt-project.org > Subject: [Interest] Exposing types to the QJSEngine in Qt 5.5 > ... > Adding qRegisterMetaType() prior to engine instantiation does not help. ... > -- > regards, Jaroslaw Staniek I've never used

Re: [Interest] Qt mobile apps v native

2015-07-11 Thread Jason H
> Amongst all the debate around the Indie license, some mention was made of Qt > Mobile not quite "being ready yet". > > So, for someone considering Qt for lots of things including mobile, could > someone please answer these questions for me: > > 1. Which Qt features do not currently work on iO

[Interest] Minimal Working example of iOS xib LaunchScreens?

2015-07-13 Thread Jason H
Qt is supposed to create a default launch screen, but every time I change it I just get a blank (black) screen. I tried a VC with just green as background and nothing works. Is there a minimal working example someone can share of a non-default screen? Many thanks! __

Re: [Interest] Android - Min SDK / Target SDK / Build SDK

2015-07-13 Thread Jason H
  Min SDK: The minumum version you are willing to target. May be missing some features. Target SDK: The SDK with all the APIs you need. Build SDK: The SDK you are building with.   In general Min SDK==Target SDK unless you have code to invoke newer SDK features. Build SDK >= Min SDK. The SDKs

Re: [Interest] Android app deployment - Device Incompatibility

2015-07-14 Thread Jason H
Just going by what you typed, your phone would seem  your device is armabi, and not armabi-v7a.     Sent: Monday, July 13, 2015 at 5:04 AM From: "Nuno Santos" To: interest Subject: [Interest] Android app deployment - Device Incompatibility Hi,   I’m uploading the android version of my ap

Re: [Interest] Performance of Qt scripting on iOS

2015-07-14 Thread Jason H
That would be a technical case, not a business one. > Sent: Tuesday, July 14, 2015 at 7:11 AM > From: "Robert Iakobashvili" > To: "Gian Maxera" > Cc: "interest@qt-project.org" > Subject: Re: [Interest] Performance of Qt scripting on iOS > > Not about JS/QML performance, but my Qt widget-based a

[Interest] Debugging QtQuick Compiler

2015-07-14 Thread Jason H
I have an app that always crashes on start-up when I use the QtQuick Compiler. Simply removing the compiler allows the app to work. How can I debug it in a meaningful way? I took a stab at a minimal test case, but it did not occur as reliably. ___ In

Re: [Interest] How to add .s/.S assembly files to a project using qmake?

2015-07-20 Thread Jason H
Motorola S records? Don't they need to be parsed?   Sent: Monday, July 20, 2015 at 11:20 AM From: "Nuno Santos" To: interest Subject: [Interest] How to add .s/.S assembly files to a project using qmake? Hi,   Is it possible to add .s/.S files into a project using qmake?   Thx,   Regards,

[Interest] QCamera flash modes

2015-07-20 Thread Jason H
I'm trying to identify if a QCamera has a flash. Ideally, I'd like this done in QML, but there seems to be no support for it yet. So I'm making a QML type in C++. So in C++: qDebug() << "Default:" << QCameraInfo::defaultCamera().deviceName() << QCameraInfo::defaultCamera().position(); camera =

Re: [Interest] Need argumentative help..... giving qobject copy/assignment constructor and put it in qlist/qmap

2015-07-20 Thread Jason H
And the problem with PHP is that it works at all. ;-) Wouldn't the modifications you inquire make a mess of the implicit data sharing? > Sent: Monday, July 20, 2015 at 1:02 PM > From: "Gunnar Roth" > To: "Guido Seifert" > Cc: interest@qt-project.org > Subject: Re: [Interest] Need argumentative

Re: [Interest] Need argumentative help..... giving qobject copy/assignment constructor and put it in qlist/qmap

2015-07-21 Thread Jason H
Once I was put in charge of a project where an "engineer" had replaced (inherited) all the Qt Q* classes used in the project to classes that did not have a 'Q' as a first letter. No other changes. And yes, that "engineer" was a contractor. > Sent: Tuesday, July 21, 2015 at 1:03 PM > From: "Gun

Re: [Interest] QCamera flash modes

2015-07-22 Thread Jason H
) << "has QCamera, no exp"; } else qDebug() << "no QCamera"; return false; } Which then prints all falses and returns false itself, even on a camera that has a working flash (Nexus6). What am I still doing wrong? > Sent: Tuesday, July 21, 2015 at 9:19

[Interest] moc code : incomplete type 'void' is not assignable

2015-07-23 Thread Jason H
I'm getting an error in moc-generated file, and I don't know why. error: incomplete type 'void' is not assignable case 1: *reinterpret_cast< void*>(_v) = _t->camera(); break; ~ ^ The header file contains: #include #include class FlashControl

Re: [Interest] moc code : incomplete type 'void' is not assignable [FIXED]

2015-07-23 Thread Jason H
Sorry, I got bit by copy-paste. It should be: Q_PROPERTY(QCamera* setCamera READ camera WRITE setCamera) > Sent: Thursday, July 23, 2015 at 10:56 AM > From: "Jason H" > To: interest > Subject: [Interest] moc code : incomplete type 'void' is not assignable

Re: [Interest] iOS combobox

2015-07-24 Thread Jason H
I think it is native. There was a bug in 5.4 where the Done was on the wrong side. In 5.5 it's on the right side. You can always make your own. > Sent: Friday, July 24, 2015 at 9:14 AM > From: maitai > To: Interest@qt-project.org > Subject: [Interest] iOS combobox > > Hello, > > Sorry for

[Interest] managing (deleting) dynamically created QML objects: Property 'destroy' of object TypeError: Type error is not a function

2015-07-24 Thread Jason H
So I successfully create them, but have trouble deleting them. Rectangle { property var indicators: [] function updateIndicators() { var i; var indicator; var component = Qt.createComponent("LastLocationIndicator.qml");

<    8   9   10   11   12   13   14   15   16   17   >