[Interest] qt-android: How to shrink the size of Qt libraries

2014-03-28 Thread 见良
Hello everyone: I am writing an app which is designed to run on both android and iOS, we development our app's UI usingn Qt Quick technology. But the size of the Qt library is too big, I have to build Qt by myself (from the stable branch of git repository) to shrink size, the build comm

Re: [Interest] Qt 5.3 Beta - Multicast receiving only first packet.

2014-03-28 Thread Ryan Kroetch
Running the same example on the same machine & network compiled with Qt 5.2.1 receives multiple readyRead signals w/ datagrams as expected. Running the example compiled with Qt 5.3 receives a single 'readyRead' signal w/ 2-3 datagrams contained. It seems like the readyRead signal isn't getting rese

[Interest] Creating a video feed or overlay

2014-03-28 Thread Tom Isaacson
I'm working on an app that reads data from a sensor then displays it on a graph using qwt. This part is working fine but what we want to do now is create a video feed of the graph that can be displayed in other apps. We'd also like to add the graph as an overlay to a video feed from a camera. Is

[Interest] Qt 5.3 Beta - Multicast receiving only first packet.

2014-03-28 Thread Ryan Kroetch
Running the Opensource Qt 5.3 Beta release w/ packaged mingw on windows. Connecting a QUdpSocket to a multicast address only receives the first datagram. I see this behavior in my own application, and in the Multicast Receiver Example. Can anyone else reproduce this? _

[Interest] understanding QCompleter

2014-03-28 Thread Graham Labdon
Hi Please help to understand QCompleter Here is the code used to set up the completer m_completer = new QCompleter(this); m_fileSystemModel = new QFileSystemModel(m_completer); m_fileSystemModel->setRootPath(""); m_completer->setModel(m_fileSystemModel); m_

Re: [Interest] Sample Appdelegate insertion for QtQuick + iOS

2014-03-28 Thread Gustavsen Richard
We currently don't support background processing on iOS. For saving and restoring you can use http://qt-project.org/doc/qt-5/qguiapplication.html#applicationState The only way I can think of to use your own application delegate would be start off with a native Xcode project, and link in Qt as a

Re: [Interest] Qt4.8 and Webkit1/2 with HTML5

2014-03-28 Thread Harish Surana
Qt4.8 came with QtWebKit2.2. On Fri, Mar 28, 2014 at 8:34 AM, Einar Már Björgvinsson < einar.bjorgvins...@marel.com> wrote: > hi > I wanted to ask if there is a Qt port on WebKit2 for Qt4.8 ? > If not, is there any change on getting HTML5 support in Qt4.8 web ? > > regards > Einar M. Bjorgvins

Re: [Interest] Qt4.8 and Webkit1/2 with HTML5

2014-03-28 Thread Thiago Macieira
Em sex 28 mar 2014, às 14:55:08, Harish Surana escreveu: > Qt4.8 came with QtWebKit2.2. QtWebKit2 was named before WebKit started WebKit2. So it's slightly confusing, but QtWebKit2 is WebKit1. In Qt 5, the WebKit plugin to QML is based on WebKit2, but the QtWebKitWidgets API is still WebKit1. -

Re: [Interest] Qt4.8 and WebKit2

2014-03-28 Thread Thiago Macieira
Em sex 21 mar 2014, às 07:23:39, Einar Már Björgvinsson escreveu: > hi > I wanted to ask if there is a Qt port on WebKit2 for Qt4.8 ? > If not, is there any change on getting HTML5 support in Qt4.8 web ? There are a few updates to qtwebkit, which is being released separately from the main Qt 4.8

Re: [Interest] Qt systray icon fails to load, causing X to blink and spam error

2014-03-28 Thread Thiago Macieira
Em sex 28 mar 2014, às 13:41:48, Rutledge Shawn escreveu: > Aside: I wonder why cmst doesn't use Qt bearer management. It's too > incomplete, something wrong with it, or the author didn't know about it? I > haven't gotten around to trying it myself. When I switched from wicd to > connman a coupl

Re: [Interest] Qt 5.3 Beta - Multicast receiving only first packet.

2014-03-28 Thread Thiago Macieira
Em sex 28 mar 2014, às 09:33:16, Ryan Kroetch escreveu: > Running the Opensource Qt 5.3 Beta release w/ packaged mingw on windows. > > Connecting a QUdpSocket to a multicast address only receives the first > datagram. > I see this behavior in my own application, and in the Multicast Receiver > Exa

Re: [Interest] Qt systray icon fails to load, causing X to blink and spam error

2014-03-28 Thread Rutledge Shawn
On 20 Mar 2014, at 11:37 PM, Frank Shin wrote: > Hi, this is my first post here and it is in regards to a qt5 base app that is > a gui for connman internet manager. The author released this software on his > github below > https://github.com/andrew-bibb/cmst > I am hoping to help the author by

[Interest] QT Installer Framework - Post Install operations

2014-03-28 Thread Sandeep
Hi, I had asked this question earlier in a different way (Subject line: Qt Installer Framework - Running more than 1 command after the installation is finished), but the motive is same. As I understand after the application installer is completed, if I choose to run my program (when the checkb

Re: [Interest] QT Installer framework - Customize Pages

2014-03-28 Thread Sandeep
Hi, Question2: What is the difference between "function Component" and "function Controller" in the installer.qs scripts used in examples? Basically what are they? I tried registering for the IntroductionPageCallback but never got called. function Component() { } Component.prototype.Int

[Interest] Qt systray icon fails to load, causing X to blink and spam error

2014-03-28 Thread Frank Shin
Hi, this is my first post here and it is in regards to a qt5 base app that is a gui for connman internet manager. The author released this software on his github below https://github.com/andrew-bibb/cmst I am hoping to help the author by asking this forum and

[Interest] Qt4.8 and Webkit1/2 with HTML5

2014-03-28 Thread Einar Már Björgvinsson
hi I wanted to ask if there is a Qt port on WebKit2 for Qt4.8 ? If not, is there any change on getting HTML5 support in Qt4.8 web ? regards Einar M. Bjorgvinsson ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listin

[Interest] Qt4.8 and WebKit2

2014-03-28 Thread Einar Már Björgvinsson
hi I wanted to ask if there is a Qt port on WebKit2 for Qt4.8 ? If not, is there any change on getting HTML5 support in Qt4.8 web ? regards Einar ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] Qt Installer Framework - Running more than 1 command after the installation is finished

2014-03-28 Thread Sandeep
Hi, I want to know if there is a way to run more than 1 command once the installer is completed. I tried comma/semi-colon separated list of commands in the RunProgram but that does not work. Multiple RunProgram tags are not supported either. Having said that, how would I be allowed to run mu

[Interest] QCompleter

2014-03-28 Thread Graham Labdon
Hi I am trying to get QCompleter to behave as follows - complete folder names but only show files with a given extension So for example C:\ - user sees all folders under C C:\my - user sees all folders that match C:\myFolder\a - user sees all folders that match + any files that match a*.myext I h