Re: [Interest] SSL compilation error building on Mac

2013-05-14 Thread Gil Moses
Ok, another struggle, link error this time. Configure: ./configure -debug-and-release -platform macx-g++42 -opensource -openssl-linked -no-xcb -no-eglfs -no-directfb -no-linuxfb -no-kms -opengl -I/Users/gilm/Downloads/openssl-1.0.1e/include -L/Users/gilm/Downloads/openssl-1.0.1e

Re: [Interest] Particles Emitter, emit signal when particle life is expired?

2013-05-14 Thread Mark
On Sun, May 12, 2013 at 2:08 PM, Mark mark...@gmail.com wrote: Hi, I'm browsing through the Emitter API while searching for some way to get notified when a particle is expired. What i'm having is one emitter that emits 1 particle every 25ms then one trailemitter that adds a trail to the

Re: [Interest] QTableView::moveCursor and scrolling to end

2013-05-14 Thread Иван Комиссаров
You can use following hack: store current horizontal scroll position, call base implementation and restore scroll position. Иван Комиссаров 14.05.2013, в 11:17, Mojmír Svoboda mojmir.svob...@warhorsestudios.cz написал(а): Hello, my problem is simple: when an user press ctrl+end to scroll

[Interest] Qt Sensors, can it support CPU, GPU and HDD sensors as well?

2013-05-14 Thread Mark
Hi, While looking through the Qt Sensors docs i find that to be very much focused on mobile device sensors as in phones, tablets and everything in between. However, the ancient old sensors of HDD, GPU and CPU seem nowhere to be found. Can the Qt Sensor package add support for that? Is it even

Re: [Interest] Qt Sensors, can it support CPU, GPU and HDD sensors as well?

2013-05-14 Thread Mark
On Tue, May 14, 2013 at 10:54 AM, Mark mark...@gmail.com wrote: Hi, While looking through the Qt Sensors docs i find that to be very much focused on mobile device sensors as in phones, tablets and everything in between. However, the ancient old sensors of HDD, GPU and CPU seem nowhere to be

[Interest] Unique - Hardware bound - ID

2013-05-14 Thread Adrian Stern
Hello I'm looking for an easy way to get a unique ID for the system my software is running on. We need this ID to be absolutely unique so we can identify each running system and assing stuff to it. So far I found a few linux specific ways to get some IDs, which I think can be sufficient but

Re: [Interest] Unique - Hardware bound - ID

2013-05-14 Thread Gopalakrishna Bhat
Hi, On Tue, May 14, 2013 at 3:11 PM, Adrian Stern adrian.st...@screenfood.comwrote: Hello I'm looking for an easy way to get a unique ID for the system my software is running on. We need this ID to be absolutely unique so we can identify each running system and assing stuff to it. So

[Interest] Qt 5.1 Beta Released

2013-05-14 Thread Sergio Ahumada
Hi, Qt 5.1 Beta has been released ! Please check https://blog.qt.digia.com/blog/2013/05/14/qt-5-1-beta-released/ for more information. Cheers, -- Sergio Ahumada Release Engineer - Digia, Qt ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Qt 5.1 Beta Released

2013-05-14 Thread Yves Bailly
Le 14/05/2013 15:10, Sergio Ahumada a écrit : Qt 5.1 Beta has been released ! Please check https://blog.qt.digia.com/blog/2013/05/14/qt-5-1-beta-released/ for more information. Congratulations and a great thanks to all those who made this possible :-) Just a little question, about Android

Re: [Interest] Qt Sensors, can it support CPU, GPU and HDD sensors as well?

2013-05-14 Thread Thiago Macieira
On terça-feira, 14 de maio de 2013 10.54.46, Mark wrote: Can the Qt Sensor package add support for that? I think so. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center signature.asc Description: This is a digitally signed message

Re: [Interest] Qt for Android not quite what I expected

2013-05-14 Thread Portale Alessandro
From: interest-bounces+alessandro.portale=digia@qt-project.org [interest-bounces+alessandro.portale=digia@qt-project.org] on behalf of Guido Seifert [warg...@gmx.de] Sent: Tuesday, May 14, 2013 17:48 Hi, with the new beta binary package I was able to compile and deploy to android.

Re: [Interest] Qt for Android not quite what I expected

2013-05-14 Thread Guido Seifert
It seems that You are using absolute pixel sizes for the widgets. Since the Android device has a higher DPI than your Desktop, Qt will use a font with bigger default pixel size, but it will in this case not adjust the widget size. Solution: Try putting the widgets into a layout manager,

Re: [Interest] Qt Sensors, can it support CPU, GPU and HDD sensors as well?

2013-05-14 Thread Mark
On Tue, May 14, 2013 at 3:37 PM, Thiago Macieira thiago.macie...@intel.com wrote: On terça-feira, 14 de maio de 2013 10.54.46, Mark wrote: Can the Qt Sensor package add support for that? I think so. But how since the base class is obviously a little too focused on other types of sensors.. Or

Re: [Interest] Qt Sensors, can it support CPU, GPU and HDD sensors as well?

2013-05-14 Thread Andre Somers
Op 14-5-2013 18:24, Mark schreef: On Tue, May 14, 2013 at 3:37 PM, Thiago Macieira thiago.macie...@intel.com wrote: On terça-feira, 14 de maio de 2013 10.54.46, Mark wrote: Can the Qt Sensor package add support for that? I think so. But how since the base class is obviously a little too

Re: [Interest] Unique - Hardware bound - ID

2013-05-14 Thread Alex Malyushytskyy
UUIDs is not unique for hardware/system, so I doubt QUuid will help. Such things are normally resolved using MAC address on any system, which is unique for every network adapter, But there always may be a system which does not have network adapter, have a few network adapters or does not let

Re: [Interest] QTableView::moveCursor and scrolling to end

2013-05-14 Thread Nurmi J-P
On May 14, 2013, at 9:17 AM, Mojmír Svoboda mojmir.svob...@warhorsestudios.cz wrote: Hello, my problem is simple: when an user press ctrl+end to scroll to the end of the table then there is an implicit horizontal scroll to the right. My users requested few times already to disable that