Re: [Interest] Desktop deployment

2013-06-21 Thread Mandeep Sandhu
Hi, We too use a custom build step for packaging all the binaries/libraries/resources for deployment, though this step is done outside of qmake from a top-level Makefile. We are almost building a mini Linux distribution for our embedded product, so the final packaging step involves copying all

Re: [Interest] specifying units in Qt style sheets

2013-06-21 Thread Alejandro Exojo
2013/6/21 Hamish Moffatt ham...@risingsoftware.com font-size: 50pt; -- works font-size: 50 pt; -- does not work - results in default font size font-size: 50px; -- works font-size: 50 px; -- does not work - results in default font size margin-left: 100pt; -- does not work - results in 0 px

[Interest] Terminating a QThread

2013-06-21 Thread francois cellier
Dear all, Even if I know that it can be dangerous to terminate a thread, I need to do it for my application. The function that run into the thread is like a long linear sequence of code that has not been designed in a signal/slot way. Moreover, in my thread, I need an eventloop as I use in it

Re: [Interest] Terminating a QThread

2013-06-21 Thread Mandeep Sandhu
On Fri, Jun 21, 2013 at 1:36 PM, francois cellier f_cell...@yahoo.frwrote: Dear all, Even if I know that it can be dangerous to terminate a thread, I need to do it for my application. The function that run into the thread is like a long linear sequence of code that has not been designed in

Re: [Interest] Terminating a QThread

2013-06-21 Thread Etienne Sandré-Chardonnal
Sorry Mandeep, I didn't read your post first. Basically what I posted is similar. A mutex is a little bit overkill here, you could use an atomic variable if you want to be sure, but just a bool flag will be enough as it is always set atomically AFAIK 2013/6/21 Mandeep Sandhu

[Interest] Is it possible to select an option from drop down in a webpage

2013-06-21 Thread Sujan Dasmahapatra
I am able to load an webpage using QWebView. In the page there is a drop down menu. I want to select an option from the drop down. Is it possible to do in QT? Please help. -- Thanks Regards Sujan ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Terminating a QThread

2013-06-21 Thread francois cellier
Thanks Etienne and Mandeep for your answers. However as I wrote in my initial post (in the code of the objectInThread class), in my real application I do not have a while loop just a sequence of functions. With a while loop and the flag the code is clean like that. However, in my case that

Re: [Interest] Terminating a QThread

2013-06-21 Thread André Somers
Op 21-6-2013 10:06, francois cellier schreef: Dear all, Even if I know that it can be dangerous to terminate a thread, I need to do it for my application. Are you really going to completely re-do the discussion you already had on the qt-project.org forums? André -- You like Qt? I am

Re: [Interest] Turn off default window hints in X11 using Qt5

2013-06-21 Thread Ramakanthreddy_Kesireddy
Hi, I have tried the same earlier to achieve frameless window with no title,minimize,maximize and close button hints. However, it seems that window manager ignores the same while trying to set using setFlags API. On target board, currently Ubuntu 12.04 desktop image is flashed. Does it helps

Re: [Interest] Terminating a QThread

2013-06-21 Thread francois cellier
André, my idea was more to continue the discussion of the qt-project.org forum. In my first post on this list I precised the conclusion we have made on the qt-project.org forum post that is to say the different behaviours of the two approaches using the worker approach or not. My question in

[Interest] Qt Installer Framework example

2013-06-21 Thread Muhammad Bashir Al-Noimi
Howdy, I'm working on learning how to use IFW, I tried to run its examples to understand how to use it specially I suffer from documentation lacking, but I failed to run this example (testapp)

[Interest] Getting the QQuickView that created a QMediaService instance or requested a QMediaPlayerControl

2013-06-21 Thread Luca Carlon
Hi! I'm working on a plugin for hardware acceleration of Media Player Qt API. To do this I need to run some code on the scene graph thread. All the possible ways I've been given to do this require to somehow access the QQuickWindow in which the service is created. But can I do this from the

Re: [Interest] Terminating a QThread

2013-06-21 Thread Tony Rietwyk
But a bool value can be cached indefinitely, so make sure you declare the flag as volatile! Tony From: interest-bounces+tony=rightsoft.com...@qt-project.org [mailto:interest-bounces+tony=rightsoft.com...@qt-project.org] On Behalf Of Etienne Sandré-Chardonnal Sent: Friday, 21 June