Re: [Interest] QNetworkAccessManager and HTTP persistent connection

2013-11-28 Thread Thiago Macieira
On sexta-feira, 29 de novembro de 2013 09:12:26, iMath wrote: > I just send another same request to the same host again ,because my download > is interrupted during later downloading process ,there is a few minutes > between the subsequent request and the last one ,but the connection is > still on.

Re: [Interest] Qt and MSVC 2013

2013-11-28 Thread Hamish Moffatt
On 28/11/13 17:37, Philippe wrote: > When you add a source file that requires moc, uic or rcc processing, the > VS Addin generates the proper command lines to integrate these processes > in the project. > > I use qmake to generate the projects, which does all that for me. Admittedly it's a bit of

Re: [Interest] QNetworkAccessManager and HTTP persistent connection

2013-11-28 Thread iMath
I just send another same request to the same host again ,because my download is interrupted during later downloading process ,there is a few minutes between the subsequent request and the last one ,but the connection is still on. -- Original -- From: "Mandeep Sa

Re: [Interest] QNetworkAccessManager and HTTP persistent connection

2013-11-28 Thread iMath
I just send another same request to the same host again ,because my download is interrupted during later downloading process. -- Original -- From: "Mandeep Sandhu";; Date: Fri, Nov 29, 2013 00:44 AM To: "iMath"<2281570...@qq.com>; Cc: "interest"; Subject:

Re: [Interest] QNetworkAccessManager and HTTP persistent connection

2013-11-28 Thread Mandeep Sandhu
On Thu, Nov 28, 2013 at 12:26 PM, iMath <2281570...@qq.com> wrote: > Thank you for your prompt! > I think I should give my question a clear description. > The "Connection:keep-alive" is in the reply header, when I call close() of > the reply, the connection is still on ,I wonder how can I send a

Re: [Interest] Qt and MSVC 2013

2013-11-28 Thread Björn Piltz
For the debugger visualizers you only need to copy qt(4|5).natvis to: C:\Users\\Documents\Visual Studio 2013\Visualizers\ or C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Packages\Debugger\Visualizers You can grab qt5.natvis from here: https://qt.gitorious.org/qt-labs/vstools/source/

Re: [Interest] Qt and MSVC 2013

2013-11-28 Thread Michael Jackson
On Nov 28, 2013, at 8:04 AM, Duane wrote: > On 11/27/2013 8:14 PM, Hamish Moffatt wrote: >> On 27/11/13 19:22, Yves Bailly wrote: >>> Le 27/11/2013 09:17, Philippe a écrit : Would be nice, but without the Visual Studio Addin (I haven't seen yet any VS 2013 beta version), this will not

Re: [Interest] Qt HTTP access to Exchange

2013-11-28 Thread Bo Thorsen
Here is a simple test application that shows the problem. If I run this against a host that doesn't use username domains, I get a request for authentication. If I run it against one of the NTLM hosts with domain\user for usernames, it just writes finished. It should of course ask for authentica

Re: [Interest] ProxyModel for background image download - How to notify sourceModel?

2013-11-28 Thread Tony Rietwyk
Hi Philipp, If your view is attached to the proxy model, then you could just emit from the proxy itself. Regards, Tony Sent: Friday, 29 November 2013 1:00 AM I have a proxymodel that is responsible for background image downloading. How to I notify the source model (whic

Re: [Interest] How to make a QAbstractViewer never display vertical scrollbar but expand its height?

2013-11-28 Thread Jonathan Greig
Clement, I wouldn't say its expanding, but simply shows extra space or re-centers itself inside the area. With QTreeView, it doesn't shift, but with QGraphicsView and QMdiArea it does shift slightly. - Swyped from my droid. On Nov 28, 2013 7:07 AM, "Clément Geiger" wrote: You might be able to d

[Interest] ProxyModel for background image download - How to notify sourceModel?

2013-11-28 Thread Philipp Kursawe
I have a proxymodel that is responsible for background image downloading. How to I notify the source model (which does not implement setData, doesn't have to) that an image has been downloaded? My proxy keeps a cache of downloaded images for every row in the source model QVariant ProxyModel:data(i

Re: [Interest] How to make a QAbstractViewer never display vertical scrollbar but expand its height?

2013-11-28 Thread Clément Geiger
You might be able to do that with a QListView (using the protected method QListView::contentSize()). Otherwise I'm interested in the answer; I tried to do exactly the same (multiple views in a scrollable container) a while ago and finally gave up. 2013/11/28 Jonathan Greig > Is this what you a

Re: [Interest] Qt and MSVC 2013

2013-11-28 Thread Duane
On 11/27/2013 8:14 PM, Hamish Moffatt wrote: > On 27/11/13 19:22, Yves Bailly wrote: >> Le 27/11/2013 09:17, Philippe a écrit : >>> Would be nice, but without the Visual Studio Addin (I haven't seen yet >>> any VS 2013 beta version), this will not be usable for many. >> Perfectly usable if you're u

Re: [Interest] How to make a QAbstractViewer never display vertical scrollbar but expand its height?

2013-11-28 Thread Philipp Kursawe
No, I want the QAbstractItemView to not display a vert scrollbar but expand its height to fit all items. On Thu, Nov 28, 2013 at 1:54 PM, Jonathan Greig wrote: > Is this what you are needing? > > QAbstractScrollArea:: setVerticalScrollBarPolicy( Qt:: ScrollBarAlwaysOff ) > > - Swyped from my dro

Re: [Interest] How to make a QAbstractViewer never display vertical scrollbar but expand its height?

2013-11-28 Thread Jonathan Greig
Is this what you are needing? QAbstractScrollArea:: setVerticalScrollBarPolicy( Qt:: ScrollBarAlwaysOff ) - Swyped from my droid. On Nov 28, 2013 6:40 AM, "Philipp Kursawe" wrote: Is there a way to change the behaviour of a view to expand its height instead of displaying a toolbar to make all

[Interest] How to make a QAbstractViewer never display vertical scrollbar but expand its height?

2013-11-28 Thread Philipp Kursawe
Is there a way to change the behaviour of a view to expand its height instead of displaying a toolbar to make all items visible? I would like the parent container to be scrollable, because it contains multiple listviews in a vertical layout. ___ Interest

Re: [Interest] Qt HTTP access to Exchange

2013-11-28 Thread Bo Thorsen
Den 27-11-2013 17:40, Thiago Macieira skrev: > On quarta-feira, 27 de novembro de 2013 17:39:35, Mandeep Sandhu wrote: >> Then it might be worth while to use a packet sniffer like wire-shark >> (or some such) to see if the TCP connection is being abruptly closed >> (by either client or server) or a

Re: [Interest] QNetworkAccessManager and HTTP persistent connection

2013-11-28 Thread iMath
processEvents what event ? -- Original -- From: "Tony Rietwyk";; Date: Thu, Nov 28, 2013 03:27 PM To: "interest"; Subject: Re: [Interest] QNetworkAccessManager and HTTP persistent connection Maybe you need to delete the first reply, and possibly process

Re: [Interest] Beginning with graphics effects

2013-11-28 Thread Agocs Laszlo
Hi, The effect is applied to the widget including all its children. In your example m_effect1 is getting applied both to pushButton and stackedWidget. Having m_effect2 on pushButton introduces the warnings since nested effects are not really supported but that is not what you want anyway. Try

[Interest] Beginning with graphics effects

2013-11-28 Thread bob smith
Hi I apologies if this message appears twice - was having problems registering with list (I surely am a noob!) I am new to Qt and have started playing with graphics effect and cannot quite achieve what I want. I have a an object of type QWidget that has a QButton as a child. I want to apply a dif

Re: [Interest] Qt and MSVC 2013

2013-11-28 Thread Scott Aron Bloom
Just use CMake... The only think I use the add in for is the documentation integration Scott -Original Message- From: interest-bounces+scott=onshorecs@qt-project.org [mailto:interest-bounces+scott=onshorecs@qt-project.org] On Behalf Of Philippe Sent: Wednesday, November 27, 2