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

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 application. I am trying t

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(&pred, ^{ shared = [[super alloc] init]; }); return shared; } ... void QtAppDelegateInitial

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

2016-08-22 Thread Jason H
t; From: "Manoel Neto" > To: "Jason H" > 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 > AppDelegate (I did this and it is ok when t

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

2016-08-22 Thread Jason H
do we set the app delegate, so the initial call to didFinishLaunchingWithOptions is lost to whatever default delegate Qt provides.   Someone correct me if I am wrong, but I'm pretty sure that is it.     Sent: Monday, August 22, 2016 at 7:53 PM From: "Nuno Santos" To: &q

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

2016-08-22 Thread Jason H
e and somehow assign your delegate to be the application delegate. But I don't know much about iOS internals.   Sent: Monday, August 22, 2016 at 7:53 PM From: "Nuno Santos" To: "Manoel Neto" Cc: "Jason H" , interest@qt-project.org Subject: Re: [Interest] Location wh

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" To: "Nuno Santos" Cc: interest@qt-project.org Subject: Re: [Interest] Location when the App is Killed/Terminated/Suspended I wish I unders

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 currentSkin

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

2016-08-23 Thread Jason H
rentSkin 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" To: "Jason H" Cc: interest@qt-project.org Subject: Re: [

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

2016-08-24 Thread Jason H
As as aside, you may want to look into using a QTreeModel for your XML, then you can use the model/view/delegate stuff in C++ and QML.     Sent: Tuesday, August 23, 2016 at 7:24 PM From: "Xavier Bigand" To: "Jérôme Godbout" Cc: "Jason H" , "Interests

[Interest] Android Gradle issue: use -source 7 or higher to enable diamond operator

2016-08-24 Thread Jason H
I'm trying to use some supplied code that relies on Java 1.7: new HashSet<>(); error: diamond operator is not supported in -source 1.6 But in my build.gradle I have: android { /* the usual ... */ sourceCompatibility = 1.7 targetCompatibility = 1.7 } But I continue to get the error. What

[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
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" To: "Qt Project M

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" To: "Jason H" Cc: "Qt Project MailingList" Subject: Re: [Interest] Qt Android App and Notifications - Black screen after tapping a

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" To: "Jason H" Cc: "Interests Qt" Subject: Re: [Interest] Includue Additional PLISTs? A plist is a resource like any other. For instance, an icon is a resource an

[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 "Google

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

2016-08-30 Thread Jason H
t try 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" To: "Jason H" Cc: "Qt Project MailingList" Subject: Re: [Interest] Qt Android App and

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" To: "Jason H" Cc: "Qt Project MailingList" Subject: Re: [Interest] Qt Android App and Notifications - Black screen after tapping a

Re: [Interest] CocoaPods and Qt

2016-08-30 Thread Jason H
that) > Sent: Tuesday, August 30, 2016 at 12:47 PM > From: "Manoel Neto" > To: "Jason H" > Cc: "Interests Qt" > Subject: Re: [Interest] CocoaPods and Qt > > Hi Jason, > > GoogeCM changed to Firebase Claoud Message. You could configur

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 desktop (Linux/Windows) devi

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

2016-08-30 Thread Jason H
ction asyncronously.)     But I think it's even better than PyQt.     Sent: Tuesday, August 30, 2016 at 4:11 PM From: "Jérôme Godbout" To: "Jason H" Cc: "Артур Истомин" , "Interests Qt" Subject: Re: [Interest] Is Qt/QML suitable for me? If

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" > To: "Jason H" > Cc: "Interests Qt" > Subject: Re: [Interest] CocoaPods and Qt > > Hi Jason, > > GoogeCM changed to Firebas

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

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

[Interest] Signal not making it to QML

2016-09-01 Thread Jason H
On Android, engine.rootContext()->setContextProperty(QLatin1String("platformShim"), &shim); //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" > To: "Interests Qt" > Subject: [Interest] Signal not making it to QML > > On Android, > engine.rootCo

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

Re: [Interest] Qt Versioning Questions

2016-09-14 Thread Jason H
> Sent: Wednesday, September 14, 2016 at 11:05 AM > From: "Kai Koehne" > To: "Jason H" , "Interests Qt" > Subject: RE: [Interest] Qt Versioning Questions > > > > > -Original Message- > > From: Interest [mailto:interest-bo

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

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 LE

[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 http://lists.qt-project.org/mailman/l

[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
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" To: "interest@q

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" > To: "Qt Project" > Subject: Re: [Interest] Swift and Qt? (formally?) > > Am 19.09.16 um 18:52 schrieb Robert Iakobashvili: > > On Mon, Sep 19, 2016 at 5:25 PM, Jason H wrot

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

2016-09-20 Thread Jason H
> Sent: Tuesday, September 20, 2016 at 1:35 PM > From: "Jason H" > To: "Till Oliver Knoll" > Cc: "Qt Project" > Subject: Re: [Interest] Swift and Qt? (formally?) > > > Sent: Tuesday, September 20, 2016 at 7:39 AM > > From: "Til

[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 http://lists.qt-pr

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 : listViewContainer.height

[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:", WebSock

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

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
uot;Konstantin Tokarev" > To: "Jean-Michaël Celerier" , "Jason H" > > Cc: interest , "Rob Allan" > Subject: Re: [Interest] What don't you like about Qt? > > > > 21.09.2016, 15:28, "Jean-Michaël Celerier" : > > He

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

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" > To: "Thiago Macieira" > Cc: interest@qt-project.org > Subject: Re: [Interest] SSL broken hard on OSX > > > > > Does anyone know how I can fix (not hide) these issues? > &g

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" To: "Jason H" Cc: interest Subject: Re: [Interest

[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
serialization, 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" > To: interest > Subject: [Interest] Current QDataStream format documentation? > >

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" > To: "Jason H" > Cc: interest > Subject: Re: [Interest] Current QDataStream format documentation? > > Nevermind. The trick does work. I have no idea what I did wr

Re: [Interest] Current QDataStream format documentation?

2016-09-22 Thread Jason H
> 22.09.2016, 18:11, "Jason H" : > > 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 came up > > in

Re: [Interest] Current QDataStream format documentation?

2016-09-22 Thread Jason H
> 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 > > documentation to an outside implementer. > > It doesn't exist. You'll have to write it. I'm not the

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: Thursday, September 22, 2016 at 10:12 PM > From: "Thiago Macieira" > To: interest@qt-project.org > Subject: Re: [Interest] Current QDataStream format documentation? > > On sexta-feira, 23 de setembro de 2016 03:01:40 PDT Jason H wrote: > > T

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 is

Re: [Interest] Current QDataStream format documentation?

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

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 forev

Re: [Interest] How do i declare a QGeoCoordinate property in QML?

2016-09-26 Thread Jason H
I'm not sure I get all the nuances of what you are attempting. The 2nd one has a circular reference. The first once works because you provide separate storage via 'var' so it is not circular. Resolve the alias down, don't go for indirection. Item { property alias coordinateSource: coordinate //

[Interest] QtCreator color scheme for Komodo

2016-09-27 Thread Jason H
I wonder if anyone has done a Komodo (9) color scheme? Komodo has some pretty terrible stock color schemes. They seem to favor the dark, I favor the light,a nd everything is too light. Something like Qt Creator's syntax highlighting would be just right ;-) If one does not exist, might QtCreator

[Interest] TextField_QMLTYPE_16 QVariant(Invalid) QRect(0,0 0x0)

2016-09-27 Thread Jason H
When I close my app, I get a lot of these dumped to the console. Why? Sometimes the _16 is _19, etc. TextField_QMLTYPE_16 QVariant(Invalid) QRect(0,0 0x0) TextField_QMLTYPE_16 QVariant(Invalid) QRect(0,0 0x0) TextField_QMLTYPE_16 QVariant(Invalid) QRect(0,0 0x0) TextField_QMLTYPE_16 QVariant(Inva

Re: [Interest] TextField_QMLTYPE_16 QVariant(Invalid) QRect(0, 0 0x0)

2016-09-28 Thread Jason H
it was, but you can > iteratively go through the TextField and ancestors QML files, and try to > comment out anything to do with Accessibility. > The workaround was then to set that property in your own code. > > > On 28 Sep 2016, at 00:01, Jason H wrote: > > > > Wh

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

2016-09-28 Thread Jason H
Konrad: > Also: Javascript is not an OO language: you are supposed to have classes, not > prototypes, for OO. ES6 has proper classes. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes Rob: > I quite like QML as a declarative markup language, but am less enthused about >

Re: [Interest] [ Android ] How pass argument to QtActivity::runOnUiThread ?

2016-09-28 Thread Jason H
Why not have two runnables? One that sets the flag and one that does not?   m_activity.runOnUiThread( ikeepScreenOn ? new Runnable() { ... keep screen on code... } : new Runnable { ...don't keep screen on... } It might boove you to put the common code in one function though.     I personally

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 "stance" on the Qt Project regarding the "C++ ported Web" p

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
might help.    Also, I would look at ASM.js.    Sent: Thursday, September 29, 2016 at 10:25 AM From: "Jean-Michaël Celerier" To: "Jason H" Cc: "Jean-Michaël Celerier" , interest Subject: Re: [Interest] Status of Qt and WebAssembly, Emscripten, NaCl... Putting

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" To: "Jean-Michaël Celerier" Cc: interest Subject: Re: [Interest] Status of Qt and WebAssembly, Emscripten, NaCl... Well, a lot can be accomplished with HTML5 these days.   I

[Interest] Android: qmake setting to use gradle?

2016-09-30 Thread Jason H
For the most part, you can just check out source and build a project. But if the project needs to be built with gradle, then it fails because the fault is ant. Is there something we can add to the .pro file to indicate to build it with gradle? (corresponding to the checkbox in the QtCreator UI)

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 f

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

2016-10-04 Thread Jason H
o way trying to spread meaningless 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 determinin

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 > To: "N

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 Subject: Re: [Interest]

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

2016-10-05 Thread Jason H
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 such, is the Qt release cycle is not Agile. As more teams ado

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

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 app terminates if do not accept Android back key ? H

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 th

Re: [Interest] Qt 5.6.2 release date

2016-10-11 Thread Jason H
There was a issue with Webkit in the Sept 27 build. We're eagerly waiting for it too. I'm checking multiple times a day myself. Last releasing email from Oct 7 ("during the next week" is this week!): Hi all, We have final Qt 5.6.2 packages here: Windows: http://download.qt.io/snapshots/qt/5.6/5

[Interest] Android 7 issues

2016-10-12 Thread Jason H
This message is part FYI, part question. Using Qt 5.6.0 (for now, the 5.6.2 installer is running) FYI: When I run my app on the device, it doesn't have any network connectivity. Wifi is connected and working I get a 0 error code (which comes from the XMLHttpRequest) And in adb logcat, when

[Interest] 5.6.2 ships with QtCreator 4.0.3?

2016-10-12 Thread Jason H
It seems like QtCreator 4.0.3 is the bundled version, but 4.1 is current? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Android 7 issues

2016-10-12 Thread Jason H
Unforuntely the instructions http://doc.qt.io/qt-5/opensslsupport.html don't work for OSX. https://github.com/openssl/openssl/issues/1531 > Sent: Wednesday, October 12, 2016 at 1:29 PM > From: "Nuno Santos" > To: "Jason H" > Cc: "Qt Interest&qu

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

2016-10-14 Thread Jason H
That's some brutal stuff. Comments interjected. > Sent: Friday, October 14, 2016 at 9:40 AM > From: "Roland Hughes" > To: "Artem Sidyakin" > Cc: "interest@qt-project.org" > Subject: Re: [Interest] What you don't like about Qt > > On 09/23/2016 11:11 AM, Artem Sidyakin wrote: > >> Digia > > Fro

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

2016-10-17 Thread Jason H
You haven't highlighted any problem with Agile the methodology. You have only highlighted problems with the skills of your team, or at worst, how your team implements Agile. I don't disagree that having a thought-out event lifecycle approach isn't important, and I'd argue that it should have it's o

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

2016-10-17 Thread Jason H
> On 10/04/2016 06:31 PM, interest-requ...@qt-project.org wrote: > > I think the bigger issue, that many people have expressed here, but not > > said as such, is the Qt release cycle is not Agile. > I would thank God it is not, but the rest of your post proves that it is. > > As more teams adopt A

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

2016-10-18 Thread Jason H
> In years prior it was not uncommon to find major corporations with teams > of 40+ developers, many of them consultants, developing systems for > internal consumption. Large projects took (and still take) a minimum of > 7 years to spec, develop, test, install and finally settle in. During > th

[Interest] Apple/iOS/XCode8 problems

2016-10-19 Thread Jason H
Recently, we did a release using 5.6.2 and it is crashing on all the phones. I'm trying to revert to 5.6.0, but in the time between the two, my mac installed XCode 8 and SDK 10.12. When I try to build now, with QMAKE_MAC_SDK = macosx10.12 I get: :-1: error: Current macosx10.12 SDK version (10.1

Re: [Interest] Apple/iOS/XCode8 problems

2016-10-19 Thread Jason H
ns for the "midot" scheme: { platform:macOS, arch:x86_64 } { platform:macOS, arch:i386 } > Sent: Wednesday, October 19, 2016 at 11:48 AM > From: "Nuno Santos" > To: "Jason H" > Cc: "interestqt-project.org"

Re: [Interest] Apple/iOS/XCode8 problems

2016-10-19 Thread Jason H
rch:x86_64 } { platform:macOS, arch:i386 } make: *** [xcodebuild-debug-iphoneos] Error 70 12:04:10: The process "/usr/bin/make" exited with code 2. I've got no clue on that one. > Sent: Wednesday, October 19, 2016 at 12:08 PM > From: "Nuno Santos" > To: "Jason H" &g

Re: [Interest] Apple/iOS/XCode8 problems

2016-10-19 Thread Jason H
gning is required for product type 'Application' in SDK 'iOS 10.0' > Sent: Wednesday, October 19, 2016 at 12:24 PM > From: "Nuno Santos" > To: "Jason H" > Cc: "interestqt-project.org" > Subject: Re: [Interest] Apple/iOS/XCode8 pro

Re: [Interest] Apple/iOS/XCode8 problems

2016-10-19 Thread Jason H
That's the thing.. I'm not. These values are unchanged for the past 11 months. It's only the Xcode/SDK version that's changed. > Sent: Wednesday, October 19, 2016 at 12:49 PM > From: "Nuno Santos" > To: "Jason H" > Cc: "interestqt

Re: [Interest] Apple/iOS/XCode8 problems

2016-10-19 Thread Jason H
a cascade of errors. Opening it in XCode showed that the plist could not be parsed. Fixing that fixed the rest. Thanks everyone for your help this morning! > Sent: Wednesday, October 19, 2016 at 12:58 PM > From: "Jason H" > To: "Nuno Santos" > Cc: "in

[Interest] Crazy idea of the day: QML Image source inception

2016-10-20 Thread Jason H
I have a collection of QML elements that use the canvas. I'd like to be able to re-use them as an Image source. For example, one of my QMLs is X.qml, which draws two intersecting diagonal lines using Canvas. I also have a ListView who has a delegate that contains an image. Sometimes I want thi

[Interest] QML Text.contentWidth is never increasing

2016-10-20 Thread Jason H
http://doc.qt.io/qt-5/qml-qtquick-text.html#contentWidth-prop "Returns the width of the text, including width past the width which is covered due to insufficient wrapping if WrapMode is set." However if it ever enters into a wrapping situtation, it becomes the wrapped width: |A B C| (decreasing

Re: [Interest] Crazy idea of the day: QML Image source inception

2016-10-21 Thread Jason H
Nice! Thanks   Sent: Friday, October 21, 2016 at 9:25 AM From: "Jérôme Godbout" To: "Gunnar Sletta" Cc: "Jason H" , "interestqt-project.org" Subject: Re: [Interest] Crazy idea of the day: QML Image source inception every Item into Qml now have gra

Re: [Interest] QML Text.contentWidth is never increasing

2016-10-21 Thread Jason H
> Jason H wrote: > >Text { > > id: instructionText > > color: "white" > > text: instructionTextData > > width: contentWidth > parent.width *.9 ? parent.width *.9 : contentWidth > > font.pointSiz

Re: [Interest] Faster Qt app build

2016-10-21 Thread Jason H
Depending on what you are doing... Remember the iOS build process does like 3 architectures, and for me, it takes forever to link. Meanwhile OSX compiles are adequate. I don't usually alter more than 1 file at a time, so it's just incremental. > Sent: Friday, October 21, 2016 at 1:34 PM > Fr

[Interest] ComboBox with hintText?

2016-10-31 Thread Jason H
I'm trying to have a QML ComboBox with a hint text capability, but none of my efforts are panning out. The idea is that the combobox has an unpicked initial state, and supplied a hint as to what the combobox contains. Once a selection is made the combobox functions normally. I'm having trouble

Re: [Interest] ComboBox with hintText?

2016-10-31 Thread Jason H
t] ComboBox with hintText? > > On Mon, 2016-10-31 at 16:23 +0100, Jason H wrote: > > I'm trying to have a QML ComboBox with a hint text capability, but > > none of my efforts are panning out. The idea is that the combobox has > > an unpicked initial state, and supplied a h

Re: [Interest] ComboBox with hintText?

2016-10-31 Thread Jason H
I'm also on 5.6.2 because we had bugfixes arrive in that that we need that aren't in 5.7.0, but they will be in 5.7.1 > Sent: Monday, October 31, 2016 at 11:56 AM > From: "Jason H" > To: "J-P Nurmi" > Cc: "interestqt-project.org&quo

Re: [Interest] ComboBox with hintText?

2016-11-01 Thread Jason H
> Sent: Monday, October 31, 2016 at 12:46 PM > From: "J-P Nurmi" > To: "interestqt-project.org" > Subject: Re: [Interest] ComboBox with hintText? > > > On 31 Oct 2016, at 17:00, Jason H wrote: > > > > > > I'm also on 5.6.2 beca

Re: [Interest] Debugging the Qt Source on Android Device with the QtSDK installation in QtCreator

2016-11-02 Thread Jason H
https://www.kdab.com/qt-android-episode-3/   Sent: Wednesday, November 02, 2016 at 9:58 AM From: "Alexandre Pretyman" To: Qt-interest Subject: [Interest] Debugging the Qt Source on Android Device with the QtSDK installation in QtCreator Hi all,   Is it possible to use the Qt installed by QtSD

[Interest] Android keybaord rect

2016-11-03 Thread Jason H
For chat style apps, it is often desired to not to obscure the bottom of the screen. There are a two ways to handle this on Android. One is to resize the Window to be height - keybaord.height, the other is to just pad the UI with an element the height of the keyboard rectangle. The problem is i

Re: [Interest] Qt World Summit 2016 on Qt Lite?

2016-11-04 Thread Jason H
I don't know where I saw it, but I saw a rather impressive bar chart comaring executable sizes and Qt light really delivered.   I am interested in this as well, but more to know how it is implemented. It sounds to me like it's a Qt-compile-time thing, rather than a more general approach. I'm won

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