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,

[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

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

Re: [Interest] QNetworkAccessManager and HTTP persistent connection

2013-11-28 Thread iMath
processEvents what event ? -- Original -- From: Tony Rietwyk;t...@rightsoft.com.au; Date: Thu, Nov 28, 2013 03:27 PM To: interestinterest@qt-project.org; Subject: Re: [Interest] QNetworkAccessManager and HTTP persistent connection Maybe you need to

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 are you

[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] 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 phil.kurs...@gmail.com wrote: Is there a way to change the behaviour of a view to expand its height instead of displaying 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 using only

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

Re: [Interest] Qt and MSVC 2013

2013-11-28 Thread Michael Jackson
On Nov 28, 2013, at 8:04 AM, Duane duane.heb...@group-upc.com 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),

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\USER\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:

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 second

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 a

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.