Re: [Interest] Accessing existing enums from QML

2014-05-14 Thread Kristoffersen, Even (NO14)
>Subject: [Interest] Accessing existing enums from QML > >Hi, >my C++ code makes heavy use of quite simple enums which are defined in some >namespace, outside of any class >(and therefore also outside of any class >which derives from QObject). It's done like this: > > namespace Imap { >typed

Re: [Interest] Accessing existing enums from QML

2014-05-14 Thread Jan Kundrát
On Wednesday, 14 May 2014 09:04:15 CEST, Kristoffersen, Even (NO14) wrote: > You can add a wrapper class for the enum inside the namespace > for your Qt C++/QML code, non-Qt C++ won't change: Thanks, but this wouldn't help me -- the application as a whole *is* using Qt. > namespace Imap > { > #

Re: [Interest] Size of libQt5Core in 5.3

2014-05-14 Thread Peter Kuemmel
> Von: "Daniel Bowen" > An: interest@qt-project.org > Betreff: Re: [Interest] Size of libQt5Core in 5.3 > > Thanks again for the info. > > Here's where I've gotten to so far. > > Starting from the last ./configure command line I mentioned, plus > -no-feature- for every qfeature.txt item (minus L

Re: [Interest] QML Styled button and text issue

2014-05-14 Thread Nurmi J-P
On 14 May 2014, at 04:33, Jason H wrote: > Text does not show up when used as: > > > ///MyButton.QML > import QtQuick 2.0 > import QtQuick.Controls 1.1 > import QtQuick.Controls.Styles 1.1 > > Button { > style: ButtonStyle { > background: Rectangle { >border.width: control.activeFocus

Re: [Interest] Styled text not setting control size

2014-05-14 Thread Nurmi J-P
On 14 May 2014, at 05:05, Jason H wrote: >TextField { > width: parent.width > style: TextFieldStyle { > textColor: "white" > font {pixelSize: 30} > background: Rectangle { color:"black" } > } >} > When using the code above, the black area is about 1/2 the heigh

Re: [Interest] BUG? QTimer in QThread

2014-05-14 Thread Sensei
On 5/13/14, 2:16pm, Mandeep Sandhu wrote: > On Tue, May 13, 2014 at 5:33 PM, Filip Piechocki wrote: >> I would like to mention, that in the first email the thread is never started >> and without starting the thread I would not expect much to happen in this >> thread :) > > I was about to say the s

[Interest] Qt Accessibility Mailing List and News

2014-05-14 Thread Frederik Gladhorn
Hello, I have some good news which I won't repeat here, please read up on the state of Qt accessibility in Qt 5.3 and onward: http://blog.qt.digia.com/blog/2014/05/14/accessibility-in-qt-5-3/ I'd like to invite everyone interested to join our new Qt accessibility mailing list: http://lists.qt-p

Re: [Interest] Windows: static Qt 5.3 w/ Desktop OpenGL?

2014-05-14 Thread Kalinowski Maurice
I only have access to Visual Studio 2013 right now, but both the release (upcoming 5.3.0 final) and stable (5.3.1) compile fine in the following configuration: configure -debug-and-release -static -commercial -opengl desktop -c++11 -nomake examples -nomake tests -no-icu -no-angle Missing a sta

[Interest] Qt5.3 Beta error crosscompilation IMX6 Sabre AI

2014-05-14 Thread Ramakanthreddy Kesireddy
Hi, I could successfully create the image and run the examples as mentioned in https://community.freescale.com/docs/DOC-100419 However, when I tried to cross compile Qt5.3 Beta(inorder to run sample app) with the cross compiler meta toolchain, it is giving below errors. obj/qguivariantanimatio

Re: [Interest] Qt5.3 Beta error crosscompilation IMX6 Sabre AI

2014-05-14 Thread Ramakanthreddy Kesireddy
Hi, Here is my configure line and am getting different error in Qt widgets now. ./configure -v -opensource -confirm-license -device imx6 -device-option CROSS_COMPILE=/opt/poky/1.6+snapshot/sysroots/i686-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi- -sysroot /home/kishore/

[Interest] QQuickWidget and TextInput or TextField not working in Qt 5.3.0 RC

2014-05-14 Thread Günter Michel
Hello I try to port a program from using 'createWindowContainer' to the new QQuickWidget in Qt 5.3.0 RC In this widget i have a simple Rectangle with a TextInput. The 'TextInput' shows no cursor when clicked and doesn't respond to keystrokes. Also TextField from the desktop controls doesn't

[Interest] QML beautifier?

2014-05-14 Thread Jason H
So It's crossed my mind that having a stable or standard order of elements in a QML document would be a good thing. Also it would help with merging QML files.  While the order of Elements in the QML file is important, the order of properties is not.  So I was wondering if there is a tool to cons

Re: [Interest] Qt5.3 Beta error crosscompilation IMX6 Sabre AI

2014-05-14 Thread Joseph Crowell
On 5/14/2014 9:53 PM, Ramakanthreddy Kesireddy wrote: Hi, Here is my configure line and am getting different error in Qt widgets now. ./configure -v -opensource -confirm-license -device imx6 -device-option CROSS_COMPILE=/opt/poky/1.6+snapshot/sysroots/i686-pokysdk-linux/usr/bin/arm-poky-l

Re: [Interest] No emails since May 5

2014-05-14 Thread Thiago Macieira
Em ter 13 maio 2014, às 18:54:55, Jason H escreveu: > I take that back. I'm not getting any emails unless they are addressed to > me. Stop using Yahoo then. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center

[Interest] Getting keypresses in a splashscreen on OSX

2014-05-14 Thread Glenn Ramsey
Hi, I am trying to get keypresses from QSplashScreen before my main window opens. My splash class inherits from QSplashScreen and overrides the keyPressEvent method. The code below works on Windows but on OSX the keypresses are not intercepted until the main window opens. Is there a workaroun

[Interest] QAtomicInt overflow / wrap-around?

2014-05-14 Thread Markus Pointner
Hi, I'd like to use a QAtomicInt to generate IDs, by calling fetchAndAddOrdered(1) to get a new ID. Sooner or later the QAtomicInt will reach INT_MAX (or whatever the constant is). Is it ok to continue with fetchAndAddOrdered(1), or do I have to manually reset the value to a sane minimum? I am

Re: [Interest] QAtomicInt overflow / wrap-around?

2014-05-14 Thread Thiago Macieira
Em qui 15 maio 2014, às 00:38:46, Markus Pointner escreveu: > Hi, > > I'd like to use a QAtomicInt to generate IDs, by calling > fetchAndAddOrdered(1) to get a new ID. Sooner or later the QAtomicInt will > reach INT_MAX (or whatever the constant is). Is it ok to continue with > fetchAndAddOrdered(

[Interest] Qt WebKit replacement (Was: Mac app built with Qt5.3.0 RC got rejected by Mac App Store because of non-public API calls.)

2014-05-14 Thread Sze Howe Koh
On 15 May 2014 09:18, Yang Fan wrote: > BTW, when will QtWebkit be replaced? The plan is to make Qt WebEngine available to Qt Enterprise Embedded users from Qt 5.3, and other users from Qt 5.4: http://blog.qt.digia.com/blog/2014/05/13/news-from-the-qt-webengine-team/ Regards, Sze-Howe > On Th

Re: [Interest] QML beautifier?

2014-05-14 Thread André Somers
Jason H schreef op 14-5-2014 19:40: > So It's crossed my mind that having a stable or standard order of elements in > a QML document would be a good thing. Also it would help with merging QML > files. While the order of Elements in the QML file is important, the order of > properties is not. > >