Re: [Interest] Qt help

2012-08-08 Thread pritam.ghang...@gmail.com
Hi, In that case if your hardware supports openGL, Qt 5 should be the obvious choice. Lot of work has gone in to Qt 5 on the 3D and graphics acceleration side. As far as I remember the minimum required is openGL ES 2.0 On Thu, Aug 9, 2012 at 9:54 AM, Ramakanthreddy_Kesireddy < ramakanthreddy_kesi

[Interest] Digia to acquire Qt from Nokia

2012-08-08 Thread Eric Landuyt
Hello , seems like a very good news: http://www.digia.com/en/Home/Company/News/Digia-to-acquire-Qt-from-Nokia/ -- Eric Landuyt, Developer - mailto:e...@datarescue.be DataRescue sa/nv - http://www.datarescue.com ___ Interest mailing list Interest@qt-pr

Re: [Interest] [solved] Re: advice on debugging a qnetworkaccessmanager/qnetworkreply issue

2012-08-08 Thread Mandeep Sandhu
> I'd like to have an event manager where I can just post a custom event > with a qnetworkrequest parameter, but the only way that seems feasible > really is to have all potential objects receive a > finished(qnetworkreply*) signal from the manager and check the > pointer, which seems really ineffi

Re: [Interest] [solved] Re: advice on debugging a qnetworkaccessmanager/qnetworkreply issue

2012-08-08 Thread Mandeep Sandhu
> Is there a clean manner for using the QNAMs finished(qnetworkreply*) > signal and then determining whose reply it is and calling its handler? > Everything I can think of seems sorta clunky and error prone; or is > there a synchronous QNAM-like class? Having to reimplement the HTTP > code in a qtc

Re: [Interest] Qt help

2012-08-08 Thread Ramakanthreddy_Kesireddy
Hi, To simplify my question, Actually am interested in 3D UI and 3D UI animations. In this context, is it good to go for Qt 5.0 alpha or Qt 4.8 latest? Please let me know in this regard. Thanks and Regards, Ramakanth From: Ramakanthreddy_Kesireddy Sent: Wednesday, August 08, 2012 6:44 PM To:

Re: [Interest] How to develop a WYSIWYG HTML editor based on QtWebkit?

2012-08-08 Thread 程梁
I'll try this JS code. In fact, I feel rather confuse about the HTML code webkit generates. Say I set content editable and enter some words line by line. Instead of , webkit's code (using QWebFrame::toHtml()) is wrapped. I thought it is more natural to wrap words line by line with . Of course I co

[Interest] QNetworkAccessManager - how to enforce authentication?

2012-08-08 Thread Alex Malyushytskyy
I could not find how to enforce authentication of QNetworkAccessManager. Problem is that for at least http server I have go work with, when user specify a valid user name, but invalid password when requested for authentication first time, user will not be requested for authentication second time,

Re: [Interest] [solved] Re: advice on debugging a qnetworkaccessmanager/qnetworkreply issue

2012-08-08 Thread Thiago Macieira
On quarta-feira, 8 de agosto de 2012 19.02.55, Justin Ferguson wrote: > Is there a clean manner for using the QNAMs finished(qnetworkreply*) > signal and then determining whose reply it is and calling its handler? The QNetworkReply pointer that is passed as an argument indicates which QNetworkRepl

[Interest] [solved] Re: advice on debugging a qnetworkaccessmanager/qnetworkreply issue

2012-08-08 Thread Justin Ferguson
Amazing how that works, you ask, step away, come back and look at the code and see your problem. Basically, in the slot for the first objects emitted signal raised from the reply's finished() I think took the URL returned from the request and downloaded the file, generating another request on the

[Interest] advice on debugging a qnetworkaccessmanager/qnetworkreply issue

2012-08-08 Thread Justin Ferguson
Hi, I'm running into an issue in an application that I so far cannot totally adequately explain why its occurring; I'm not posting any code in this email simply because I want to describe the issue and see if there is anything obvious I am missing when trying to debug the issue and then failing th

[Interest] Aligning objects in QGraphics....

2012-08-08 Thread BRM
I have three custom QGraphicsWidgets. Two of them belong to a custom layout that is assigned to the third: widget1   - custom layout    - widget2    - widget3 I am trying to move widget2 to overlay widget3 at specific coordinates; however, the results are a bit confusing. Widget3 has a

[Interest] Qt 5: Converting QJsonValue to QJsonArray

2012-08-08 Thread Stephen Chu
I am trying out the new QJsonValue in Qt 5 and find myself wondering: Does converting a QJsonValue which is an array to a QJsonArray with QJsonValue::toArray() makes a copy of the underlying data? Say I load a JSON file which is an object that contains an array with thousands of items using QJs

Re: [Interest] Questions about QGraphicsWidget

2012-08-08 Thread BRM
> From: Bo Thorsen > Subject: Re: [Interest] Questions about QGraphicsWidget > Den 07-08-2012 18:59, Bill Crocker skrev: >> On 08/07/2012 12:36 PM, BRM wrote: >>> I'm working on a QGraphicsWidget version of something I already >>> have a QWidget version of; namely because I need to add some fe

Re: [Interest] Problems printing

2012-08-08 Thread Jason H
Usually the extra page is created either by overflow, or an extra beginPage command. It has been many years since I worked with printing in Qt though. From: David Heremans To: Qt Interest Sent: Wednesday, August 8, 2012 6:40 AM Subject: [Interest] Problems p

[Interest] Problems printing

2012-08-08 Thread David Heremans
Hello, I'm trying to extend a program with some printing functionality and things aren't working out as expected. I'm hoping someone here can shed some light on the issues I'm experiencing... I stripped down my problems to a minimal working test case, which source I have attached. The main 2 probl

[Interest] Qt help

2012-08-08 Thread Ramakanthreddy_Kesireddy
Hi, As we need to identify whether Qt 5 Alpha or Qt 4.8 latest version would be suitable for the 3D UI and 3D UI with animations as rich UI is paramount. Though from initial analysis , Qt5.0 alpha has optimized open GL and Qt 3D module to be used. Could you please help in the link which explains

Re: [Interest] How to develop a WYSIWYG HTML editor based on QtWebkit?

2012-08-08 Thread Josiah Bryan
On Tue, Aug 7, 2012 at 11:35 PM, 程梁 wrote: > Thanks! I saw this example before. There is the same problem as I met. > If you clear editing area and type something, you will got some HTML > code like: > > http://www.w3.org/TR/html4/strict.dtd";> > > > > HTML Editor Demo > > hey > > in which I ju

[Interest] Building Qt with Angle Project

2012-08-08 Thread Wehmer, Matthias
Hi everybody, I have some issues with building Qt when trying to use the angle project, i.e. configure with "-opengl es2 -angle ". Essentially I was following this documentation: http://qt-project.org/wiki/Building-Qt-5-from-Git . The error occurs while building with perl under Windows XP, usin

Re: [Interest] Questions about QGraphicsWidget

2012-08-08 Thread Bo Thorsen
Den 07-08-2012 18:59, Bill Crocker skrev: > On 08/07/2012 12:36 PM, BRM wrote: >> I'm working on a QGraphicsWidget version of something I already have a >> QWidget version of; namely because I need to add some features where I need >> to overlay items, lines, and text in a way that QWidget does n