Re: [Interest] Qt Binaries for Mingw 4.7

2012-07-24 Thread Konrad Rosenbaum
Hi, On Monday 23 July 2012 23:24:38 K. Frank wrote: On Mon, Jul 23, 2012 at 4:33 PM, Konrad Rosenbaum kon...@silmor.de wrote: ... Doubtful. The only way to do this would be to add buffering and prefetching to mingw implementations of read, write, open, close, etc. This would break some

Re: [Interest] Qt5: Obtain current layout size

2012-07-24 Thread Bo Thorsen
Den 23-07-2012 15:41, Stephen Chu skrev: On 7/23/12 4:52 AM, Bo Thorsen wrote: Den 22-07-2012 21:49, Stephen Chu skrev: On 7/22/12 6:30 AM, Bo Thorsen wrote: Den 21-07-2012 18:27, Stephen Chu skrev: I am working on a dynamically generated form. One thing I'd like to do is to reflow the

Re: [Interest] Qt Binaries for Mingw 4.7

2012-07-24 Thread Thiago Macieira
On terça-feira, 24 de julho de 2012 09.06.36, Konrad Rosenbaum wrote: As compared to most other compilers: keep each compile step in one process (pre-processor, compiler, assembler makes at least 3), read files as you go, pipe them from one process to the next, reading as many bytes as you

Re: [Interest] Qt Binaries for Mingw 4.7

2012-07-24 Thread K. Frank
Hi Konrad! On Tue, Jul 24, 2012 at 3:06 AM, Konrad Rosenbaum kon...@silmor.de wrote: Hi, On Monday 23 July 2012 23:24:38 K. Frank wrote: On Mon, Jul 23, 2012 at 4:33 PM, Konrad Rosenbaum kon...@silmor.de wrote: ... ... But I could imagine that slipping a layer between mingw and gcc could

Re: [Interest] Qt Binaries for Mingw 4.7

2012-07-24 Thread K. Frank
Hello Thiago! On Tue, Jul 24, 2012 at 7:11 AM, Thiago Macieira thiago.macie...@intel.com wrote: On terça-feira, 24 de julho de 2012 09.06.36, Konrad Rosenbaum wrote: As compared to most other compilers: keep each compile step in one process (pre-processor, compiler, assembler makes at least

[Interest] Creating Desktop Widgets (aka Desklets) in Qt

2012-07-24 Thread Jiří Procházka
Hi, I am tasked in creating desktop widgets (aka desklets, stuff like system monitors, clocks, etc) in Qt, the target platform is Windows. So far I managed to create a frameless window which stays on bottom and isn't shown on taskbar by following window flags: Qt::SubWindow |

Re: [Interest] MouseArea on top of Flickable

2012-07-24 Thread Mark
On Sun, Jul 22, 2012 at 3:45 AM, Mark mark...@gmail.com wrote: Hi, I have a Flickable with a MouseArea on top of it. I only want to use the MouseArea fro the pressed events, the flackable should just be working with dragging up/down. This however isn't as easy as it sounds.. It looks

[Interest] QTabBar drawBase property- what does it do?

2012-07-24 Thread John Weeks
I am in the process of porting code that draws images of controls. Due to history and architecture, I'm not using QWidgets as the basis for these controls, they are drawn using OS primitives. Now I am drawing them with QStyle. There are references amonst the Tab Bar stuff to a base. The QTabBar

Re: [Interest] MouseArea on top of Flickable

2012-07-24 Thread Mark
On Tue, Jul 24, 2012 at 7:40 PM, Mark mark...@gmail.com wrote: On Sun, Jul 22, 2012 at 3:45 AM, Mark mark...@gmail.com wrote: Hi, I have a Flickable with a MouseArea on top of it. I only want to use the MouseArea fro the pressed events, the flackable should just be working with dragging

Re: [Interest] QTabBar drawBase property- what does it do?

2012-07-24 Thread Christoph Feck
On Tuesday 24 July 2012 21:34:14 John Weeks wrote: I am in the process of porting code that draws images of controls. Due to history and architecture, I'm not using QWidgets as the basis for these controls, they are drawn using OS primitives. Now I am drawing them with QStyle. There are

Re: [Interest] Qt Binaries for Mingw 4.7

2012-07-24 Thread K. Frank
Hi Thiago! On Tue, Jul 24, 2012 at 5:20 PM, Thiago Macieira thiago.macie...@intel.com wrote: On terça-feira, 24 de julho de 2012 11.04.22, K. Frank wrote: In terms of compiler speed, it seems to me that the consensus is that gcc on windows (e.g., mingw or mingw-w64) is slow. Would you have

Re: [Interest] Creating Desktop Widgets (aka Desklets) in Qt

2012-07-24 Thread Tony Rietwyk
Sent: Wednesday, 25 July 2012 1:35 AM Hi, I am tasked in creating desktop widgets (aka desklets, stuff like system monitors, clocks, etc) in Qt, the target platform is Windows. So far I managed to create a frameless window which stays on bottom and isn't shown on taskbar by following