[Interest] Qt Radio module features

2014-09-17 Thread Ramakanthreddy Kesireddy
Hi, If we would like to implement AM/FM/DAB/DMB/ Sirius SDARS/XM features, does Qt Multimedia radio supports the same? Please let me know if any additional hardware(radio module) is needed to test these features on desktop and embedded board. Regards Ramakanthreddy Kesireddy | CDG IES Office:

Re: [Interest] rendering thread context switch

2014-09-17 Thread Gunnar Sletta
There is no direct call to force the render thread to pick up the GUI thread changes and render right away, but what you want can be done. Call update on the first batch of items and put itemK+1..itemN into list for later processing. Then connect to QQuickWindow::beforeSynchronization() (or aft

Re: [Interest] Nomination for Qt Champion

2014-09-17 Thread Samuel Gaist
On 17 sept. 2014, at 21:57, Emmanuel Mayssat wrote: > http://qt-project.org/wiki/QtChampions > I found the page above. > > Is there a way to still nominate a Qt Champion for 2014? > Yes, if you have an account, just edit the page. If not, you can ask someone who has to do it for you

[Interest] Nomination for Qt Champion

2014-09-17 Thread Emmanuel Mayssat
http://qt-project.org/wiki/QtChampions I found the page above. Is there a way to still nominate a Qt Champion for 2014? -- Emmanuel Mayssat http://www.epicsqt.org ___ Interest mailing list Interest@qt-project.or

Re: [Interest] rendering thread context switch

2014-09-17 Thread K. Frank
Hello Manish! On Tue, Sep 16, 2014 at 5:25 AM, manish sharma <83.man...@gmail.com> wrote: > Hi, > > I have few quick items, each of those items render some data every few milli > sec. Somewhere in my code i do something like below:- > > void renderNewData() > { > item1->update() > item2->u

Re: [Interest] raise a minimized qwindow

2014-09-17 Thread Duane
On 9/17/2014 12:07 PM, Thiago Macieira wrote: > On Wednesday 17 September 2014 11:23:57 Duane wrote: >> I can configure this when it's running on my desktop distro which is >> Fedora 20 but the target box is running Tinycore linux and has a very >> limited windows manager. > > The problem is in tha

Re: [Interest] raise a minimized qwindow

2014-09-17 Thread Thiago Macieira
On Wednesday 17 September 2014 11:23:57 Duane wrote: > I can configure this when it's running on my desktop distro which is > Fedora 20 but the target box is running Tinycore linux and has a very > limited windows manager. The problem is in that "limited window manager". You have to direct your

Re: [Interest] Future of Qt with Ios

2014-09-17 Thread Kate Alhola
Thank you about this hint. It looks that this is not all. Orientation change is handled in qioswindow.mm: - (void)layoutSubviews . This method is called normally with ios7 and actualGeometry changes when orientation changes. In IOS8 this does no longer work. This function is now called 6 times du

Re: [Interest] raise a minimized qwindow

2014-09-17 Thread Duane
On 9/17/2014 11:14 AM, Jereme Lamothe wrote: > You're doing the right thing so far, but I don't believe you'll be > able to create the behavior you want in your application code. Your > window manager has control over what happens with windows that try to > come to the foreground. If you're attempt

Re: [Interest] raise a minimized qwindow

2014-09-17 Thread Bob Hood
On 9/17/2014 8:10 AM, Duane wrote: > I have an app that invokes another app as a QProcess. The invoked app > is a QtSingleApplication. This generally works well in that if the app > is already opened but minimized, it won't reopen but it will be > activated. I'm using activateWindw(); raise()

Re: [Interest] Input Validator

2014-09-17 Thread Rainer Wiesenfarth
Am 17.09.2014 17:11, schrieb Stephen King: I'm a little confused with QML TextInput with an int validator in Qt 4.7.4 (and maybe later). Given an int validator with a top of 128 and bottom of -127, why is 07 acceptable but 08 not and likewise 028, 038 etc? I assume they're actually intermediate

Re: [Interest] raise a minimized qwindow

2014-09-17 Thread Jereme Lamothe
You're doing the right thing so far, but I don't believe you'll be able to create the behavior you want in your application code. Your window manager has control over what happens with windows that try to come to the foreground. If you're attempting this in Ubuntu, there's a troubleshooting article

[Interest] Input Validator

2014-09-17 Thread Stephen King
Hi, I'm a little confused with QML TextInput with an int validator in Qt 4.7.4 (and maybe later). Given an int validator with a top of 128 and bottom of -127, why is 07 acceptable but 08 not and likewise 028, 038 etc? I assume they're actually intermediate but I don't think I can get that info

Re: [Interest] raise a minimized qwindow

2014-09-17 Thread Duane
On 9/17/2014 10:27 AM, Marian Beermann wrote: > Did you try showMaximize/showNormal? > > On 17.09.2014 16:10, Duane wrote: >> I have an app that invokes another app as a QProcess. The invoked app >> is a QtSingleApplication. This generally works well in that if the app >> is already opened but mi

Re: [Interest] raise a minimized qwindow

2014-09-17 Thread Marian Beermann
Did you try showMaximize/showNormal? On 17.09.2014 16:10, Duane wrote: > I have an app that invokes another app as a QProcess. The invoked app > is a QtSingleApplication. This generally works well in that if the app > is already opened but minimized, it won't reopen but it will be > activated

[Interest] raise a minimized qwindow

2014-09-17 Thread Duane
I have an app that invokes another app as a QProcess. The invoked app is a QtSingleApplication. This generally works well in that if the app is already opened but minimized, it won't reopen but it will be activated. I'm using activateWindw(); raise(); This will make the taskbar icon blink.