[Interest] Problem with Loader loaded items showing

2016-06-29 Thread Jason H
I had a working app with a menu that slides in. I converted it to use a Loader to load the area that contains the menu and the start page. Now the menu shows up when the app first starts. Despite my Menu.qml being: Item { id: menu x: -width //I should be off-screen!

[Interest] Row, Column, Repeater, and ListView spacer delegate?

2016-06-29 Thread Jason H
It would be really cool if Row, Column, Repeater, ListView supported a spacer delegate. So I could do: A | B | C And not just: A B C Is there a way I'm not thinking of? I don't want to include the bar in the delegate because then I always get an extra: either at the start or end of the list.

[Interest] Roboto Consensed is way to not condensed

2016-07-01 Thread Jason H
>From QFontDatabase: "Roboto Condensed" "Regular" (9, 10, 11, 12, 13, 14, 18, 24, 36, 48, 64, 72, 96, 144, 288) "Roboto Condensed" "Bold" (9, 10, 11, 12, 13, 14, 18, 24, 36, 48, 64, 72, 96, 144, 288) "Roboto Condensed" "Light" (9, 10, 11, 12, 13, 14, 18, 24, 36, 48, 64, 72, 96, 144, 288)

Re: [Interest] Thoughts on a 'proper' (or standard) file/io API for QML?

2016-08-15 Thread Jason H
docs/Web/API/FileReader   Rich.   On 10 August 2016 at 16:09, Jason H <jh...@gmx.com> wrote: I know it's not a normal thing, but occasionally in QML we need to access files. Exposing an object is not hard, but it would be really good to have a standard to enable QML libraries that use file I

Re: [Interest] Passing QML mapobjects (MapCircle) to QML maps through C++

2016-08-15 Thread Jason H
I assume you men a geogrpahical map, as QMap is something else entirely.    It is trivial to interop between C++ and QML. Depending on how you do it, you can just set a context property  as a QObject-derived class in the C++ API. Otherwise you have to use it as a MetaType.  

Re: [Interest] Thoughts on a 'proper' (or standard) file/io API for QML?

2016-08-15 Thread Jason H
> Sent: Wednesday, August 10, 2016 at 4:36 PM > From: "Alejandro Exojo" <s...@badopi.org> > To: interest@qt-project.org > Subject: Re: [Interest] Thoughts on a 'proper' (or standard) file/io API for > QML? > > On Wednesday 10 August 2016 17:09:17 Jason

Re: [Interest] Thoughts on a 'proper' (or standard) file/io API for QML?

2016-08-15 Thread Jason H
platform, native framework and implement file io via JS?     On Wed, Aug 10, 2016 at 10:36 PM, Alejandro Exojo <s...@badopi.org> wrote: On Wednesday 10 August 2016 17:09:17 Jason H wrote: > I know it's not a normal thing, but occasionally in QML we need to access > files. Ex

Re: [Interest] Android not using my QtActivity subclass.

2016-08-15 Thread Jason H
UPDATE: Somehow I lost ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android in my .pro > Sent: Friday, August 12, 2016 at 5:04 PM > From: "Jason H" <jh...@gmx.com> > To: "Jason H" <jh...@gmx.com> > Cc: "interestqt-project.org" <interest@qt-pr

Re: [Interest] Thoughts on a 'proper' (or standard) file/io API for QML?

2016-08-15 Thread Jason H
" <gunnar.r...@gmx.de> > To: "Jason H" <jh...@gmx.com> > Cc: "Alejandro Exojo" <s...@badopi.org>, interest@qt-project.org > Subject: Re: [Interest] Thoughts on a 'proper' (or standard) file/io API for > QML? > > > > Am 15.08.2016 um 17:3

Re: [Interest] Thoughts on a 'proper' (or standard) file/io API for QML?

2016-08-15 Thread Jason H
quot; when it is "fast enough" for almost anyone.   Sent: Monday, August 15, 2016 at 11:41 AM From: "Vlad Stelmahovsky" <vladstelmahov...@gmail.com> To: "Jason H" <jh...@gmx.com> Cc: interest@qt-project.org Subject: Re: [Interest] Thoughts on a 'proper' (or stan

Re: [Interest] Passing QML mapobjects (MapCircle) to QML maps through C++

2016-08-17 Thread Jason H
QML maps through C++   On 15-Aug-2016 8:47 PM, "Jason H" <jh...@gmx.com> wrote: > > I assume you men a geogrpahical map, as QMap is something else entirely.  Yes. I was talking of geographical map. > It is trivial to interop between C++ and QML. Depending on how

Re: [Interest] Qt Android Service example

2016-08-17 Thread Jason H
Should be, only since 5.7 http://doc.qt.io/qt-5/androidservices.html   Sent: Wednesday, August 17, 2016 at 1:02 PM From: "Nuno Santos" To: "Qt Project MailingList" Subject: [Interest] Qt Android Service example Hi,   Is there any public

Re: [Interest] Qt Android Service example

2016-08-18 Thread Jason H
It is kinda jarring how they drop you off into the Android documentation like that.   What I have is a Qt app (QtAppplication, QtActivity) with a Android service.    Sent: Wednesday, August 17, 2016 at 5:41 PM From: "Nuno Santos" <nunosan...@imaginando.pt> To: "Jason

Re: [Interest] QML async/await support?

2017-02-02 Thread Jason H
ovsky" <vladstelmahov...@gmail.com> To: "Jason H" <jh...@gmx.com> Cc: "interestqt-project.org" <interest@qt-project.org> Subject: Re: [Interest] QML async/await support? In C++. you can always fallback to C++ from QML   On Thu, Feb 2, 2017 at 7:24 PM, Jason H <

Re: [Interest] QML async/await support?

2017-02-03 Thread Jason H
> Sent: Friday, February 03, 2017 at 11:48 AM > From: "Konstantin Tokarev" <annu...@yandex.ru> > To: "Jason H" <jh...@gmx.com>, "Samuel Gaist" <samuel.ga...@edeltech.ch> > Cc: "interestqt-project.org" <i

Re: [Interest] QML async/await support?

2017-02-03 Thread Jason H
, 2017 at 12:06 PM From: "Ben Lau" <xben...@gmail.com> To: "Jason H" <jh...@gmx.com> Cc: "Samuel Gaist" <samuel.ga...@edeltech.ch>, "interestqt-project.org" <interest@qt-project.org> Subject: Re: [Interest] QML async/await support?

Re: [Interest] Problem to use Firebase (QML/IOS APP) push notification.

2017-02-08 Thread Jason H
Why are you worried about push notifications on the simulator?     Sent: Wednesday, February 08, 2017 at 2:25 PM From: "Manoel Neto" To: "Interests Qt" Subject: [Interest] Problem to use Firebase (QML/IOS APP) push notification. Hi,    We are

[Interest] My Crazy Idea of 2017: WebGL backend for Qt?

2017-02-08 Thread Jason H
I was watching the QtWS16 video on the new Scenegraph tech and was wondering why WebGL was not mentioned? I'm imagining a server with a context that provides a WebGL client view. ___ Interest mailing list Interest@qt-project.org

Re: [Interest] QML async/await support?

2017-02-02 Thread Jason H
In QML?   Sent: Thursday, February 02, 2017 at 1:21 PM From: "Vlad Stelmahovsky" <vladstelmahov...@gmail.com> To: "Jason H" <jh...@gmx.com> Cc: "interestqt-project.org" <interest@qt-project.org> Subject: Re: [Interest] QML async/await support?

Re: [Interest] QML async/await support?

2017-02-03 Thread Jason H
> Sent: Thursday, February 02, 2017 at 3:40 PM > From: "Samuel Gaist" <samuel.ga...@edeltech.ch> > To: "Jason H" <jh...@gmx.com> > Cc: "interestqt-project.org" <interest@qt-project.org> > Subject: Re: [Interest] QML async/await su

[Interest] QML async/await support?

2017-02-02 Thread Jason H
When will QML get proper async/await support? I'm not using Promises, since my callback hell is manageable, but I do look forward to async/await. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Qt Lite 5.8

2017-01-30 Thread Jason H
> Sent: Monday, January 30, 2017 at 12:57 PM > From: "mark diener" > To: "Kai, Koehne" > Cc: "Tor Arne, Vestbø" , "interest@qt-project.org" > > Subject: Re: [Interest] Qt Lite 5.8 > > Kai: > > Thank you

Re: [Interest] Qt Android - Google Drive API

2017-02-16 Thread Jason H
Not to mention there are multiple users on the same device. I have two google drives, one for work, and one personal. > Sent: Thursday, February 16, 2017 at 11:28 AM > From: "Robert Iakobashvili" > To: "Mike Chinander" , "interest@qt-project.org" >

Re: [Interest] QObject::connect returns true, but the connection does not work

2017-02-22 Thread Jason H
> Sent: Wednesday, February 22, 2017 at 2:33 PM > From: "Alexander Dyagilev" > To: "interest@qt-project.org" > Subject: [Interest] QObject::connect returns true, but the connection does > not work > > Why? > > emit is called; slot is NOT called.

Re: [Interest] How set default Android APK name?

2017-02-13 Thread Jason H
another one installed before. Second the resulting file name is important exactly - it will be needed change it manually each time before distribution. May be you do not know but operating systems cannot save different files with same name in one directory...   Понедельник, 13 февраля 2017, 21:51 +

Re: [Interest] Replacing QScript with QML

2017-02-14 Thread Jason H
> Sent: Tuesday, February 14, 2017 at 10:14 AM > From: "Ian Geiser" > To: Interest@qt-project.org > Subject: [Interest] Replacing QScript with QML > > > > > Greetings, I am ported a non-gui Qt4 QScript apt to Qt5 and would like to > replace the QScript component

Re: [Interest] What's the best way to play youtube videos? (android/iOs/windows)

2017-02-13 Thread Jason H
I think I remember seeing that 5.8 (or was it 5.9?) WebView supports DRM codecs so you could make a player for almost any site. There was some hinting that you'd have to copy some DLLs over for one of them though.     Sent: Sunday, February 12, 2017 at 1:59 PM From: "Bernhard B"

Re: [Interest] How set default Android APK name?

2017-02-13 Thread Jason H
At ease, Serge,   The thing that matters is the value in the manifest, not the filename. I suggest starting here: https://www.kdab.com/qt-on-android-episode-2/   There is nothing wrong with how the apks are named (other than a signed build is always release-signed) but that is only cosmetic.

Re: [Interest] Replacing QScript with QML

2017-02-15 Thread Jason H
. > Sent: Wednesday, February 15, 2017 at 2:50 PM > From: "Ian Geiser" <geis...@geekcentral.pub> > To: "Jérôme Godbout" <jer...@bodycad.com> > Cc: "Jason H" <jh...@gmx.com>, "Interests Qt" <Interest@qt-project.org> > S

Re: [Interest] Qt 5.8.0 RC build under windows

2017-01-19 Thread Jason H
I really think Qt needs a compile tool (like the Linux kernel has/had (make menuconfig or xconfig) ) that will also provide telemetry* when a build fails. I *never* have had Qt "just compile" and these days I'm compiling it for at least 3 platforms. Heck even a make clean doesn't complete

[Interest] Android networking: Won't connect

2017-01-19 Thread Jason H
I have apps that work, and I remember having solved this problem before, but it escapes me... I am trying to use QML and XMLHttpRequest and the request foes from 1 to 4, which is CONNECTING to DONE. Nothing hits the server. QT += core qml quick network websockets android { DISTFILES

Re: [Interest] Qt 5.8.0 RC build under windows

2017-01-19 Thread Jason H
@analog.com" <william.croc...@analog.com> > To: interest@qt-project.org > Subject: Re: [Interest] Qt 5.8.0 RC build under windows > > On 01/19/2017 09:55 AM, Jason H wrote: > > I really think Qt needs a compile tool > > I would vote against that as it would be ju

Re: [Interest] Problem transfering bigger data amounts over Websockets on iOS

2017-01-20 Thread Jason H
What about sending sending ping messages periodically? Is your app being backgrounded? I had a problem with websockets disconnecting on iOS, but not on Android. > Sent: Friday, January 20, 2017 at 5:58 AM > From: "Markus Steinhilber" > To: interest@qt-project.org >

[Interest] WebView page content

2017-01-20 Thread Jason H
I am using a QML WebView as part of a OAuth process. The "final" page is a JSON document of the user's information. How can I grab that content and JSON.parse() it? ___ Interest mailing list Interest@qt-project.org

Re: [Interest] [Announcement] QtWebKit Technology Preview 3

2016-08-19 Thread Jason H
> Hello everyone, > > We are pleased to announce QtWebKit Technology Preview 3! > > Highlights of this release are: > > * NPAPI and Qt plugins are finally supported on X11 and Windows (not on macOS > yet, sorry) > > * Bulk of the patches which have never been in the trunk of webkit.org was >

Re: [Interest] (no subject)

2016-08-22 Thread Jason H
Kapil, you have sent multiple messages with no subject line. Please use a subject line.    Sent: Monday, August 22, 2016 at 2:26 AM From: "Kapil Gupta" To: interest@qt-project.org Subject: [Interest] (no subject) Hi,   I am using qml-material to create the GUI for my

Re: [Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Jason H
quot;Manoel Neto" <manoelne...@gmail.com> > To: "Jason H" <jh...@gmx.com> > Cc: interest@qt-project.org > Subject: Re: [Interest] Location when the App is Killed/Terminated/Suspended > > Hi Jason, thanks for your reply. My problem is not how to build > AppD

[Interest] Signal not making it to QML

2016-09-01 Thread Jason H
On Android, engine.rootContext()->setContextProperty(QLatin1String("platformShim"), ); //platformshim.h signals: void pushTokenReceived(QString token); //native JNI function calls PlatformShim::instance()->pushTokenReceived(token); //in main.qml Connections { target:

Re: [Interest] Signal not making it to QML

2016-09-01 Thread Jason H
I figured it out. It helps to only have one instance of a singleton. *g*. > Sent: Thursday, September 01, 2016 at 2:50 PM > From: "Jason H" <jh...@gmx.com> > To: "Interests Qt" <interest@qt-project.org> > Subject: [Interest] Signal not making it

[Interest] QTBUG-37095: Canvas element renders fuzzy on retina displays

2016-09-01 Thread Jason H
I know we all love our bugs the most, but this one has been open since Feb 2014. It's got 15 votes and 15 watchers, and req'd by Silver support. We were supposed to get the DPI problems fixed in 5.6.(0). We're on the verge of 5.6.2, and it's still not fixed in 5.7 apparently. The latest

Re: [Interest] CocoaPods and Qt

2016-09-01 Thread Jason H
+=-framework AddressBook LIBS += -lsqlite3 > Sent: Tuesday, August 30, 2016 at 12:47 PM > From: "Manoel Neto" <manoelne...@gmail.com> > To: "Jason H" <jh...@gmx.com> > Cc: "Interests Qt" <interest@qt-project.org> > Subject: Re:

Re: [Interest] Is Qt/QML suitable for me?

2016-09-01 Thread Jason H
The deployment process to the various app stores kinda sucks, but that's not Qt's fault.   The other frusrtation I have is just the lack of true mobile integration. Things like notifications (local and remote), wake locks, and various other bits that are not supported yet, but could be. Part of

Re: [Interest] Is Qt/QML suitable for me?

2016-08-30 Thread Jason H
> Sent: Tuesday, August 30, 2016 at 3:11 PM > From: "Артур Истомин" > To: interest@qt-project.org > Subject: [Interest] Is Qt/QML suitable for me? > > I want to convert my POS (point of sale) software (long ugly shell-scripts) > to GUI-software for mobile (Android) and

[Interest] Includue Additional PLISTs?

2016-08-30 Thread Jason H
I am integrating Google Cloud Messaging, and need to include a GoogleService-Info.plist file. I currently get the error: Could not locate configuration file: 'GoogleService-Info.plist'. How can I tell qmake to include it? I already have an Info.plist.

Re: [Interest] Qt Android App and Notifications - Black screen after tapping a notification with app open on background.

2016-08-30 Thread Jason H
What code are you using to show your activity from the notification?   Sent: Tuesday, August 30, 2016 at 11:32 AM From: "Nuno Santos" <nunosan...@imaginando.pt> To: "Jason H" <jh...@gmx.com> Cc: "Qt Project MailingList" <interest@qt-projec

Re: [Interest] Includue Additional PLISTs?

2016-08-30 Thread Jason H
Thanks, I got this working :-)   Sent: Tuesday, August 30, 2016 at 11:30 AM From: "Nuno Santos" <nunosan...@imaginando.pt> To: "Jason H" <jh...@gmx.com> Cc: "Interests Qt" <interest@qt-project.org> Subject: Re: [Interest] Includue Additiona

[Interest] CocoaPods and Qt

2016-08-30 Thread Jason H
I'm fighting the google cloud messaging. It is packaged as CocoaPods, but I manually added the .a and frameworks to the project. I get the errors (runtime): You have enabled the CloudMessaging service in Developer Console, but it appears as though your Podfile is missing the line: 'pod

Re: [Interest] Qt Android App and Notifications - Black screen after tapping a notification with app open on background.

2016-08-30 Thread Jason H
I don't have a problem with notifcations like that. What are you doing to bring your activity to the front? I'd suspect you start an intent, and have the SINGLE_TOP flag on the activity, or something like that?   Sent: Tuesday, August 30, 2016 at 11:12 AM From: "Nuno Santos"

Re: [Interest] Qt Android App and Notifications - Black screen after tapping a notification with app open on background.

2016-08-30 Thread Jason H
Using a comma instead of a period? :-) Not passing `this`?     Sent: Tuesday, August 30, 2016 at 12:34 PM From: "Nuno Santos" <nunosan...@imaginando.pt> To: "Jason H" <jh...@gmx.com> Cc: "Qt Project MailingList" <interest@qt-projec

Re: [Interest] CocoaPods and Qt

2016-08-30 Thread Jason H
ent: Tuesday, August 30, 2016 at 12:47 PM > From: "Manoel Neto" <manoelne...@gmail.com> > To: "Jason H" <jh...@gmx.com> > Cc: "Interests Qt" <interest@qt-project.org> > Subject: Re: [Interest] CocoaPods and Qt > > Hi Jason, > >

Re: [Interest] Qt Android App and Notifications - Black screen after tapping a notification with app open on background.

2016-08-30 Thread Jason H
to take the notificationIntent above and just startIntent() it from the handler and see what you get.   Sent: Tuesday, August 30, 2016 at 12:04 PM From: "Nuno Santos" <nunosan...@imaginando.pt> To: "Jason H" <jh...@gmx.com> Cc: "Qt Project MailingList&q

Re: [Interest] Is Qt/QML suitable for me?

2016-08-30 Thread Jason H
asyncronously.)     But I think it's even better than PyQt.     Sent: Tuesday, August 30, 2016 at 4:11 PM From: "Jérôme Godbout" <jer...@bodycad.com> To: "Jason H" <jh...@gmx.com> Cc: "Артур Истомин" <art.is...@yandex.ru>, "Interests

[Interest] Qt Versioning Questions

2016-09-14 Thread Jason H
So Qt has 3 codelines being maintained (AFAIK): 5.6 (LTS), 5.7, 5.8 I need fixes that are in 5.6.2. First question: When will those fixes from 5.6.2 be available in 5.7 and 5.8? Given the timing it looks like 5.6.2->5.7.1-5.8? Also I am waiting for https://bugreports.qt.io/browse/QTBUG-51133

Re: [Interest] Qt Versioning Questions

2016-09-14 Thread Jason H
> Sent: Wednesday, September 14, 2016 at 11:05 AM > From: "Kai Koehne" <kai.koe...@qt.io> > To: "Jason H" <jh...@gmx.com>, "Interests Qt" <interest@qt-project.org> > Subject: RE: [Interest] Qt Versioning Questions > > > >

Re: [Interest] Pixelated canvas on Qt 5.7 and iOS devices ... still?

2016-09-15 Thread Jason H
https://bugreports.qt.io/browse/QTBUG-37095 (2014-02-26)   It's been a while, but IIRC, if you allocate a canvas of 2x dimensions, then scale to 0.5, you'll get the sharpness you are looking for.   But I completely agree, it's been unfixed for far too long. I remember experiencing it on 5.4,

Re: [Interest] QGraphicsScene and writing to file

2016-09-29 Thread Jason H
Having done something simular (not that large though, just rendering HD frames) if you need to render multiple of these, use another thread to do the save() call because the PNG compression takes forever and CPU cores are plentiful.   As for the 100k(!?) horizontal resolution... that might be a

Re: [Interest] Status of Qt and WebAssembly, Emscripten, NaCl...

2016-09-29 Thread Jason H
Just curious, what is your intent?     Sent: Thursday, September 29, 2016 at 8:35 AM From: "Jean-Michaël Celerier" To: interest Subject: [Interest] Status of Qt and WebAssembly, Emscripten, NaCl... Hello,   Is there an official

Re: [Interest] Status of Qt and WebAssembly, Emscripten, NaCl...

2016-09-29 Thread Jason H
** Er I meant. EMSCRIPTEN   Sent: Thursday, September 29, 2016 at 12:31 PM From: "Jason H" <jh...@gmx.com> To: "Jean-Michaël Celerier" <jeanmichael.celer...@gmail.com> Cc: interest <interest@qt-project.org> Subject: Re: [Interest] Status of Qt and WebAssembl

Re: [Interest] Status of Qt and WebAssembly, Emscripten, NaCl...

2016-09-29 Thread Jason H
might help.    Also, I would look at ASM.js.    Sent: Thursday, September 29, 2016 at 10:25 AM From: "Jean-Michaël Celerier" <jeanmichael.celer...@gmail.com> To: "Jason H" <jh...@gmx.com> Cc: "Jean-Michaël Celerier" <jeanmichael.celer...@gmail.com>,

Re: [Interest] What don't you like about Qt?

2016-10-04 Thread Jason H
eaningless Agile verbiage / kool-aid, he also explained in detail what he meant by it. Quoting him, emphasis mine: On 2016-10-04 10:03, Jason H wrote: My Agile team does two week sprints so we can reorder priorities twice a month. **The Qt community has no say (AFAIK) in determining the priority

Re: [Interest] What don't you like about Qt?

2016-10-04 Thread Jason H
I think the bigger issue, that many people have expressed here, but not said as such, is the Qt release cycle is not Agile. As more teams adopt Agile development practices, the chasm between what user teams needs and what is being delivered grows. As a result, it seems that Qt is drifting away

Re: [Interest] Qt 5.6.1 widget app terminates if do not accept Android back key ?

2016-10-07 Thread Jason H
It seems like the activity catches it and removes itself from the stack. Is it crashing? If so paste the exception.     Sent: Friday, October 07, 2016 at 1:21 PM From: "Eddie Sutton" To: "Qt Interest" Subject: [Interest] Qt 5.6.1 widget

Re: [Interest] Qt 5.6.1 widget app terminates if do not accept Android back key ?

2016-10-07 Thread Jason H
I think that's your problem. My back button (Nexus 6) on backs out, then leaves me at the launcher.   But I think they are putting themselves in the background. I don't go back to another app.       So most Android users will be irritated if I intercept the back button and do not let

Re: [Interest] What don't you like about Qt?

2016-10-05 Thread Jason H
Case and point: https://bugreports.qt.io/browse/QTBUG-37095, which I mentioned recently, 17 votes, multiple platforms... a mere 14 line fix, had been open for 2.5 years.         Sent: Tuesday, October 04, 2016 at 8:59 PM From: "Rob Allan" To: interest@qt-project.org

Re: [Interest] Qt & iPhone 6 Plus

2016-10-05 Thread Jason H
There could be a few issues. This just (today) got fixed: https://bugreports.qt.io/browse/QTBUG-37095 (will be in 5.6.3) Also there are some Font weight issues (Thin is not well supported. There is an issue for that too) > Sent: Wednesday, October 05, 2016 at 12:46 PM > From: maitai

Re: [Interest] Agile programming (Was: What don't you like about Qt?)

2016-10-05 Thread Jason H
y, in the end all machines would speak different dialects and you'd never get them to communicate reliably. just my 2 cents. Viktor   Am 04.10.2016 um 16:28 schrieb Bob Hood: On 10/4/2016 8:03 AM, Jason H wrote: I think the bigger issue, that many people have expressed here, but not said as suc

Re: [Interest] Qt & iPhone 6 Plus

2016-10-05 Thread Jason H
I would say that 99% of the time, it's a devicePixelRatio issue and can be resolved by scaling the drawing of everything up times the devicePixelRatio, and then scaling back down by the device pixel ratio. If you find areas where that is the case, then see if a bug report exists, if not,

Re: [Interest] What don't you like about Qt?

2016-09-21 Thread Jason H
> I also can't help making a comparison with two other popular layout > frameworks: WPF/XAML, and Android/AXML. In both of these worlds, the markup > language and the "code-behind" class hierarchy of UI elements are > absolutely equivalent 1st class citizens. Anything you can do in XAML, you > can

Re: [Interest] What don't you like about Qt?

2016-09-21 Thread Jason H
arev" <annu...@yandex.ru> > To: "Jean-Michaël Celerier" <jeanmichael.celer...@gmail.com>, "Jason H" > <jh...@gmx.com> > Cc: interest <interest@qt-project.org>, "Rob Allan" <rob_al...@trimble.com> > Subject: Re: [Int

[Interest] SSL broken hard on OSX

2016-09-21 Thread Jason H
I am on OSX 10.11.5. I've been using SSL successfully for a while, and I fell into a habit of ignoring qt.network.ssl warnings: qt.network.ssl: QSslSocket: cannot resolve SSL_set_psk_client_callback qt.network.ssl: QSslSocket: cannot resolve TLSv1_1_client_method qt.network.ssl: QSslSocket:

Re: [Interest] SSL broken hard on OSX

2016-09-21 Thread Jason H
> > Does anyone know how I can fix (not hide) these issues? > > Option 1) upgrade OpenSSL > > Option 2) use the native backend (SecureTransport) for SSL, not OpenSSL. > SecureTransport is the default in Qt 5.6. Thanks Thiago! But instructions are there instructions? Questions I have: 1. Which

Re: [Interest] SSL broken hard on OSX

2016-09-21 Thread Jason H
> Sent: Wednesday, September 21, 2016 at 2:07 PM > From: "Jason H" <jh...@gmx.com> > To: "Thiago Macieira" <thiago.macie...@intel.com> > Cc: interest@qt-project.org > Subject: Re: [Interest] SSL broken hard on OSX > > > > > Does anyo

[Interest] Swift and Qt? (formally?)

2016-09-19 Thread Jason H
There is a 9-month old github; https://github.com/msorvig/qt-and-swift for inegrating the two. Are there any plans for formal Qt support of Swift? Obj-C is painful. ___ Interest mailing list Interest@qt-project.org

[Interest] iOS 10 Webkit is causing Cordova app issues

2016-09-19 Thread Jason H
I've heard that a lot of Cordova apps are breaking on iOS 10 because of changes to Webkit. I figure Qt is in a similar situation when using Webkit. Cordova's issue tracker is full of people reporting issues, but they keep getting closed as 'invalid' because it seems that application code tweaks

Re: [Interest] What don't you like about Qt?

2016-09-19 Thread Jason H
1. Qt progresses at a glacial pace, and often neglects the more urgent/parity issues. - a. As more organizations adopt agile, this becomes all that more apparent. I've got to wait for a year for a code change to hit a release? Sorry, that's just too long. - b. Basic stuff like controlling the

Re: [Interest] Swift and Qt? (formally?)

2016-09-20 Thread Jason H
> Sent: Tuesday, September 20, 2016 at 7:39 AM > From: "Till Oliver Knoll" <till.oliver.kn...@gmail.com> > To: "Qt Project" <interest@qt-project.org> > Subject: Re: [Interest] Swift and Qt? (formally?) > > Am 19.09.16 um 18:52 schrieb Robert Iakoba

Re: [Interest] Swift and Qt? (formally?)

2016-09-20 Thread Jason H
> Sent: Tuesday, September 20, 2016 at 1:35 PM > From: "Jason H" <jh...@gmx.com> > To: "Till Oliver Knoll" <till.oliver.kn...@gmail.com> > Cc: "Qt Project" <interest@qt-project.org> > Subject: Re: [Interest] Swift and Qt? (formall

Re: [Interest] What don't you like about Qt?

2016-09-19 Thread Jason H
2. There are still bugs from 5.2 that need fixing. 3. QmlListProperty has a LOT of requests against it. https://bugreports.qt.io/browse/QTBUG-34015?jql=text%20~%20%22QQmlListProperty%22 PS> Like https://qpm.io? Sent: Monday, September 19, 2016 at 4:03 PM From: "Jérôme Godbout"

Re: [Interest] Current QDataStream format documentation?

2016-09-22 Thread Jason H
> On quinta-feira, 22 de setembro de 2016 20:10:32 PDT Jason H wrote: > > > On quinta-feira, 22 de setembro de 2016 17:36:44 PDT Jason H wrote: > > > > So I'm still looking for protocol 17 documentation. I need to provide > > > > this > > &

Re: [Interest] Current QDataStream format documentation?

2016-09-23 Thread Jason H
> Sent: Friday, September 23, 2016 at 11:14 AM > From: "Thiago Macieira" <thiago.macie...@intel.com> > To: interest@qt-project.org > Subject: Re: [Interest] Current QDataStream format documentation? > > On sexta-feira, 23 de setembro de 2016 17:05:26 PDT J

Re: [Interest] What you don't like about Qt

2016-09-23 Thread Jason H
> Not an isolated case. Client after client tells the same story. The > licensing team at Digia must be paid on commission because _every_ use > requires a license when you first contact them. FWIW, My dealings with the licensing people have been good. > What I don't like right now about Qt

Re: [Interest] Current QDataStream format documentation?

2016-09-23 Thread Jason H
> Sent: Thursday, September 22, 2016 at 10:12 PM > From: "Thiago Macieira" <thiago.macie...@intel.com> > To: interest@qt-project.org > Subject: Re: [Interest] Current QDataStream format documentation? > > On sexta-feira, 23 de setembro de 2016 03:01:40 PDT Ja

Re: [Interest] What you don't like about Qt

2016-09-23 Thread Jason H
> > Actually, the entire industry is moving to declarative. > > Declarative with mandatory bits of imperative Javascript? Well with blanket statement being admittedly blanket in nature and subject to all the caveats therein, yes. I realize that many of you are embedded engineers, and will

Re: [Interest] What don't you like about Qt?

2016-09-22 Thread Jason H
I've never seen it claimed that voting matters 1 iota.   I guess what we're asking for here is more prioritization transparency?     Sent: Thursday, September 22, 2016 at 2:27 AM From: "Vlad Stelmahovsky" <vladstelmahov...@gmail.com> To: "Jason H" <jh...@gmx.c

[Interest] Current QDataStream format documentation?

2016-09-22 Thread Jason H
There used to be a page on QDataStream serialization: http://doc.qt.io/qt-4.8/datastreamformat.html The normal trick does not work: http://doc.qt.io/qt-5/datastreamformat.html -> 404. Where can I find it? There were two additional protocol version since 4.8.

Re: [Interest] Current QDataStream format documentation?

2016-09-22 Thread Jason H
ore recent documentation? > Sent: Thursday, September 22, 2016 at 11:11 AM > From: "Jason H" <jh...@gmx.com> > To: "Jason H" <jh...@gmx.com> > Cc: interest <interest@qt-project.org> > Subject: Re: [Interest] Current QDataStream format documentation

Re: [Interest] Current QDataStream format documentation?

2016-09-22 Thread Jason H
on, DataStream class to serialization of binary ... See the list of data types which can be serialized here > Sent: Thursday, September 22, 2016 at 10:54 AM > From: "Jason H" <jh...@gmx.com> > To: interest <interest@qt-project.org> > Subject: [Interest] Current QDataSt

Re: [Interest] Current QDataStream format documentation?

2016-09-22 Thread Jason H
> 22.09.2016, 18:11, "Jason H" <jh...@gmx.com>: > > Nevermind. The trick does work. I have no idea what I did wrong. > > http://doc.qt.io/qt-5/datastreamformat.html > > > > "qt5 serialization" is what I had to search for. The 5.x page never

[Interest] QML ListView "gravity"

2016-09-20 Thread Jason H
While still wanting a Top-To-Bottom order, I want a "gravity" for the first several elements. [HEADER A B FOOTER] - vs. - [HEADER A B FOOTER] Is there an easy way to do this? ___ Interest mailing list Interest@qt-project.org

[Interest] QML Values to enum name

2016-09-20 Thread Jason H
Without having to create my own mapping object, I'd like to get the name from values: WebSocket { id: webSocket onStatusChanged: console.log("webSocket status:", status) // prints 3 or 4 } I'd like to be able to do: onStatusChanged: console.log("secWebSocket status:",

Re: [Interest] QML ListView "gravity"

2016-09-20 Thread Jason H
> > Is there an easy way to do this? I have a hack, but I am still looking for a better solution. The hack is to place it in an Item, anchor the list view to it's bottom, and set the height accordingly: height: contentHeight < listViewContainer.height ? contentHeight :

[Interest] First timer WebSocket fail (OSX)

2016-09-20 Thread Jason H
It's my first time using web sockets, and thereby the first time with Qt WebSockets. I imported QtWebSockets 1.0 (though there was mention of Qt.WebSockets 1.1) I added QT+=websockets to the .pro When the socket is activated, it's status goes from 0 to 4 to 3. I see nothing on the server. I

Re: [Interest] Qt Android Service example

2016-08-18 Thread Jason H
Let's backup. What are you trying to do with a service?   Sent: Thursday, August 18, 2016 at 10:13 AM From: "Nuno Santos" <nunosan...@imaginando.pt> To: "Jason H" <jh...@gmx.com> Cc: "Qt Project MailingList" <interest@qt-project.org> Subject:

Re: [Interest] Qt Android Service example

2016-08-18 Thread Jason H
)); cpuLock.acquire(); } Sent: Thursday, August 18, 2016 at 12:18 PM From: "Nuno Santos" <nunosan...@imaginando.pt> To: "Jason H" <jh...@gmx.com> Cc: "Qt Project MailingList" <interest@qt-project.org> Subject: Re: [Interest] Qt Android Service exa

[Interest] Qt on Android needs improvements

2016-08-18 Thread Jason H
The more I do on Android the more I realize the situation is less than ideal. My issues are thus: 1. I need to call native (Qt) code in MyActivity.onCreate(), but there is no notification that Qt is ready. In fact Qt doesn't finish loading until after onCreate. I need some kind of blocking call

Re: [Interest] Force property's binding to be executed from C++

2016-08-23 Thread Jason H
If I understand you correctly, and I probably don't, the skin component   Skin { signal skinPropertyChanged(); property color accentucationColor: "red" onAccentucationColorChanged: skinPropertyChanged() }   SkinManager {// exposed C++ class     id:skinManager     property var

Re: [Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Jason H
@implementation QtAppDelegate +(QtAppDelegate *)sharedQtAppDelegate{ static dispatch_once_t pred; static QtAppDelegate *shared = nil; dispatch_once(, ^{ shared = [[super alloc] init]; }); return shared; } ... void

Re: [Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Jason H
See also: https://bugreports.qt.io/browse/QTBUG-38184     Sent: Monday, August 22, 2016 at 11:04 PM From: "Jason H" <jh...@gmx.com> To: "Nuno Santos" <nunosan...@imaginando.pt> Cc: interest@qt-project.org Subject: Re: [Interest] Location when the App is Killed/T

Re: [Interest] Location when the App is Killed/Terminated/Suspended

2016-08-22 Thread Jason H
ginando.pt> To: "Manoel Neto" <manoelne...@gmail.com> Cc: "Jason H" <jh...@gmx.com>, interest@qt-project.org Subject: Re: [Interest] Location when the App is Killed/Terminated/Suspended I think didFinishLaunchingWithOptions will only get called when the

Re: [Interest] Force property's binding to be executed from C++

2016-08-23 Thread Jason H
currentSkin to productOutdoor, productMyDreamHome, or productOther   You should get what you want. I personally just use a big JSON object and assign that.  Sent: Tuesday, August 23, 2016 at 5:36 PM From: "Xavier Bigand" <flamaros.xav...@gmail.com> To: "Jason H" <jh..

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