On 24 Feb 2015, at 00:18, Jereme Lamothe wrote:
> I went through this process as well. The Qt libraries that ship w/ the
> SDK (at least as of 5.3) are built against XInput 2.0, which is too
> early for multi-touch support. In order to support touch events, I
> downloaded the xinput 2.2 librarie
On Tuesday 24 February 2015 13:24:24 Jason Kretzer wrote:
> Here is the thing:
>
> I have software that is generally “proxy aware.” I have it running behind
> other proxies and they seem to work. The software is now running behind
> another proxy and I cannot seem to connect to the outside world
Here is the thing:
I have software that is generally “proxy aware.” I have it running behind
other proxies and they seem to work. The software is now running behind
another proxy and I cannot seem to connect to the outside world using it.
Here is the code in main.cpp:
QNetworkProxy proxy;
pro
Hi,
maybe a Qt bug?
Using setType / setState (from kwindowsystem) on a custom qquickwindow
like here:
http://www.filedropper.com/testtar
results in the rendering to freeze.
Drive me crazy!
___
Interest mailing list
Interest@qt-project.org
http://lists.
Hi all,
Is it possible to create a QML TableView with infinite scrolling?
For example, this is possible on a ListView using the code below, but
I couldn't find a way to do it on a TableView:
onAtYEndChanged: {
if(atYEnd) sigEndOfListReached()
}
Thank you,
Bru
On Tue, Feb 24, 2015 at 9:12 AM, Ola Røer Thorsen wrote:
>
>
> 2015-02-24 8:51 GMT+01:00 Mathieu Slabbinck :
>>
>>
>> So my question here: how can I make a qt project that compiles libx
>> before starting on the app itself, disregarding multiple jobs.
>>
>
> Hi, I think doing something like this i
On Tuesday 24 February 2015 08:51:53 Mathieu Slabbinck wrote:
> The sequential build I've managed to get right with the use of the
> subdirs template.
> But, this system only works when only using one compile job at a time.
> Using for example make -j 4 will start the libx compilation as the
> firs
Try putting the states in a different / sibling item, like below:
Item {
id: stateMachine
states: [
State {
when: !controller.userManager.isLogged
PropertyChanges { target: root; source:
Qt.resolvedUrl("MenuProfileLogin.qml") }
},
State {
when: controller.user
Hi,
Loader is supposed to unload the content when source is set to another url or
to an empty string.
However, I’m not being able to have that behaviour. This is what I have.
When the variable value changes, the initial item is not removed, staying below
the new one.
I can’t get over this…
I am using the following code to open message boxes in Qt 5.4:
QMessageBox* messageBox = new QMessageBox();
messageBox->setWindowModality(Qt::ApplicationModal);
messageBox->show();
This code shows a message box having a context help button (which I do not
want).
The following code snippets both
Hello,
I am trying to use QSaveFile on wec7 but commit() fails
1. in ram based file system if the file does not already exist.
2. in flash based file system , it fails always.
while analyzing the problem i found this:
QSaveFile::commit() has this code
// atomically replace old file w
2015-02-24 8:51 GMT+01:00 Mathieu Slabbinck :
>
> So my question here: how can I make a qt project that compiles libx
> before starting on the app itself, disregarding multiple jobs.
>
>
Hi, I think doing something like this in your subdir project file will help:
TEMPLATE = subdirs
SUBDIRS = Some
12 matches
Mail list logo