Re: [Interest] Bearer management on Linux with NetworkManager and switching between different connection profiles

2014-01-03 Thread Aaron McCarthy
Hi, On Thu, 26 Dec 2013 13:00:30 Jan Kundrát wrote: my application uses QSslSockets for communicating with an IMAP server. On Linux with NetworkManager, the network connectivity stops working after switching between the wired Ethernet and WiFi connections; I have to manually disconnect and

[Interest] QML container inheritience and sharing IDs

2014-01-03 Thread Jason H
I have a structured QML document that is nothing more than Items and Images. Some Images are collected into an Item and an id is assigned. Structure1.qml Item { id:item Image { id: image1} Image { id: image2} } I then inherit this structure, and set the additional info at runtime:

Re: [Interest] QML container inheritience and sharing IDs

2014-01-03 Thread Nurmi J-P
On Fri, 2014-01-03 at 07:23 -0800, Jason H wrote: I have a structured QML document that is nothing more than Items and Images. Some Images are collected into an Item and an id is assigned. Structure1.qml Item { id:item Image { id: image1} Image { id: image2} } I then

[Interest] QtQuick real-time meter widget question (QML Loader-related)

2014-01-03 Thread VStevenP
I've created a real-time audio meter widget in QtQuick.  The meter is updated on a regular basis, and it is always visible on the top status bar of my app. 1. Is there a way to run this meter so that it will not be blocked by any QML Loader activity?  (I have some launcher icons on a sidebar

Re: [Interest] Bearer management on Linux with NetworkManager and switching between different connection profiles

2014-01-03 Thread Jan Kundrát
On Friday, 3 January 2014 11:38:27 CEST, Aaron McCarthy wrote: The QNetworkConfigurationManager::onlineStateChanged() signal can be used for this. Unfortunately, this is not the case. When wlan0 and eth0 are both connected initially, the established sockets all use the eth0. As the cable gets

Re: [Interest] QML container inheritience and sharing IDs

2014-01-03 Thread Rogers Nate
Give something like this a try: Structure1.qml Item { id:item property string image1source: property string image2 source: Image { id: image1 source: image1source } Image { id: image2 source: image2source } } I then inherit this

Re: [Interest] QML container inheritience and sharing IDs

2014-01-03 Thread Jason H
Thanks! This works! What happens if I want to add a level between the two levels? Do I realias the properties? Between.qml: { property alias exportedAliasId: importedAliasId } There is nothing else I need to do? From: Nurmi J-P jpnu...@digia.com To:

[Interest] QPixmap : cannot create a qpixmap when no gui is being used

2014-01-03 Thread Etienne Sandré-Chardonnal
Dear all, I have the following main function: int main(int argc, char *argv[]) { //Check if gui is required (no parameters given, or -gui parameter) bool gui; if( argc=1 || hasGuiParam(argc, argv) ) gui = true; else gui =

Re: [Interest] QPixmap : cannot create a qpixmap when no gui is being used

2014-01-03 Thread Scott Aron Bloom
The issue is, you can run most of the GUI components, in non-gui mode.. Scott From: interest-bounces+scott.bloom=onshorecs@qt-project.org [mailto:interest-bounces+scott.bloom=onshorecs@qt-project.org] On Behalf Of Etienne Sandré-Chardonnal Sent: Friday, January 3, 2014 9:03 AM To:

Re: [Interest] QPixmap : cannot create a qpixmap when no gui is being used

2014-01-03 Thread Scott Aron Bloom
Use QCoreApplication when gui is false… From: etienne.sandre.chardon...@gmail.com [mailto:etienne.sandre.chardon...@gmail.com] On Behalf Of Etienne Sandré-Chardonnal Sent: Friday, January 3, 2014 10:14 AM To: Scott Aron Bloom Cc: interest@qt-project.org Subject: Re: [Interest] QPixmap : cannot

[Interest] Unexplained offset in QML

2014-01-03 Thread Jason H
I have a QML object that is several Images. When I load the whole thing, I do it as a two-step process. The first is a static QML file that properly nests the objects. That is inherited by one that sets the source and location of the images. The images are correct, with no white space. The

Re: [Interest] what does qt and /qt mean?

2014-01-03 Thread iMath
so does this mean it would be better to use this tag with QTextDocument,QLabel and QTextEdit when displaying rich text? -- Original -- From: Harri Porten;por...@froglogic.com; Date: Thu, Jan 2, 2014 08:49 PM To: interestinterest@qt-project.org; Subject: