> 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
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
@implementation QtAppDelegate
+(QtAppDelegate *)sharedQtAppDelegate{
static dispatch_once_t pred;
static QtAppDelegate *shared = nil;
dispatch_once(&pred, ^{
shared = [[super alloc] init];
});
return shared;
}
...
void QtAppDelegateInitial
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
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
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
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
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
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: [
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
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
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.
___
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
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
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
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
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
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
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
> 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
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
+=-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
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
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
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:
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
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
> 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
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
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
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
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
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
> 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
> 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
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
>
> 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
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
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
> 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
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
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
> > 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
> 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
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
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.
___
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?
>
>
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
> 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
> 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
> 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
> &
> 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
> 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
> 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
> > 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
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 //
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
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
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
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
>
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
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
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
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
** 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
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)
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
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
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
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]
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
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
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
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
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
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
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
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
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
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
> 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
> 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
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
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"
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
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
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
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
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
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
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
> Jason H wrote:
> >Text {
> > id: instructionText
> > color: "white"
> > text: instructionTextData
> > width: contentWidth > parent.width *.9 ? parent.width *.9 : contentWidth
> > font.pointSiz
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
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
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
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
> 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
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
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
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
601 - 700 of 1756 matches
Mail list logo