Re: [Interest] specifying units in Qt style sheets

2013-06-20 Thread Alejandro Exojo
2013/6/21 Hamish Moffatt > 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 > margin-left: 100 pt

Re: [Interest] Desktop deployment

2013-06-20 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 bu

[Interest] specifying units in Qt style sheets

2013-06-20 Thread Hamish Moffatt
Hi, I'm trying to make my app work for a variety of screen sizes and densities, I'm using style sheets as much as possibly to control the size of things. Since I want things to be the same physical size across devices generally, I'm trying to specify things in points (which are 1/72 inches by

[Interest] Setting attribute in webpage and press button ‘GO’

2013-06-20 Thread Sujan Dasmahapatra
I am developing a web application. I need to select an option from dropdown in a website and press ‘GO’ button. I am connect with the website like as below. 1. QNetworkAccessManager *m_manager = newQNetworkAccessManager

Re: [Interest] RESTful web service with Qt or in C++

2013-06-20 Thread Gopalakrishna Bhat
I used gSOAP to access web service and it worked very well Regards, Gopalakrishna On Fri, Jun 21, 2013 at 6:37 AM, Olivier Austina wrote: > Hi, > How a REST web service can be developed with Qt (or in C++). Or KDSoap > can be used for this end? Any suggestion is welcome.Thanks. > Regards > Ol

Re: [Interest] RESTful web service with Qt or in C++

2013-06-20 Thread Sivan Greenberg
Hi Oliver, I used QNetworkAccessManager to fetch responses, and then built up memory structures out of the received JSON using http://qt-project.org/doc/qt-5.0/qtcore/json.html HTH, -Sivan On Fri, Jun 21, 2013 at 4:07 AM, Olivier Austina wrote: > Hi, > How a REST web service can be develope

[Interest] RESTful web service with Qt or in C++

2013-06-20 Thread Olivier Austina
Hi, How a REST web service can be developed with Qt (or in C++). Or KDSoap can be used for this end? Any suggestion is welcome.Thanks. Regards Olivier ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interes

[Interest] hover events on graphics scene

2013-06-20 Thread Ruth Ivimey-Cook
Hi It was suggested that I ask about this here. I have a graphics scene and want to monitor hover events for the items in the scene, but they're not getting through. I've debugged the code and the problem appears to be that I'm using a layered structure with items having child items. So: Grap

[Interest] Webapplication in Qt Help needed

2013-06-20 Thread Sujan Dasmahapatra
How can I push a string into a field and press 'go' button in a webpage. There is a website I am able to get the content. One field by name Price : Edit boxbutton-GO I want to enter some value into the edit box and press the button 'GO' from my Qt application. This is a web application in Qt