Re: [Development] Qt Quick2 OpenGL or Raster translucent window

2012-03-11 Thread hailong geng
Hi     Yes, I have tried this before and only get black background.      I have reported a bug : https://bugreports.qt-project.org/browse/QTBUG-24707 (I am not sure whether this should be a bug or a task). I just want to make QQuickView with translucent bakcground work(with OpenGL as backend is

Re: [Development] Quick in Qt 5 is sluggish and other observations

2012-03-11 Thread Alan Alpert
I'll just respond to the QtQuick issues. On Mon, 12 Mar 2012 01:57:12 ext Ariel Molina R. wrote: > Second observation: > After installing i tried the QML examples/particles from the git clone > dir (as they were not installed either) using the example launcher. QML examples do not need to be buil

Re: [Development] QDoc can't ignore Q_PROPERTY

2012-03-11 Thread Lincoln Ramsay
On 03/12/2012 10:05 AM, ext andrew.den-ex...@nokia.com wrote: >> This change only affects signals marked as NOTIFY in a Q_PROPERTY >> macro. > > I think the point is there may be instances where a signal that is > emitted incidentally when a property changes is used as the notify > signal for that

Re: [Development] QDoc can't ignore Q_PROPERTY

2012-03-11 Thread andrew.den-exter
> On 03/10/2012 07:32 PM, ext Andre Somers wrote: > > Signals are often used outside the context of properties. > > Signals yes, but NOTIFY signals? > > This change only affects signals marked as NOTIFY in a Q_PROPERTY macro. I think the point is there may be instances where a signal that is emi

Re: [Development] QDoc can't ignore Q_PROPERTY

2012-03-11 Thread Lincoln Ramsay
On 03/10/2012 07:32 PM, ext Andre Somers wrote: > Signals are often used outside the context of properties. Signals yes, but NOTIFY signals? This change only affects signals marked as NOTIFY in a Q_PROPERTY macro. > I'm already not all that enthousiastic about not having the getters > and the se

Re: [Development] On qbs use inside Qt

2012-03-11 Thread Stephen Kelly
On Thursday, February 16, 2012 12:45:58 lars.kn...@nokia.com wrote: > Yes, please. Feature development (and this counts as it) happens in > branches. We integrate when the feature is done and we're not feature > frozen. The next possibility for that is 5.1. I notice that several repos (I didn't lo

[Development] Breaking up QtPlatformSupport

2012-03-11 Thread Thiago Macieira
Hello After the alpha, I'd like to dismantle the QtPlatformSupport library and fix it properly. It should be broken up into smaller libraries or back into .pri files to be included. I know this is not going to be a popular change, but please bear with me on the explanation: Due to a mistake in t

[Development] Quick in Qt 5 is sluggish and other observations

2012-03-11 Thread Ariel Molina R.
Hi, I just downloaded Qt 5 from git, and compiled using the instructions found in the README For a stable build of Qt5: ./init-repository ./configure -prefix $PWD/qtbase -opensource make -j4 First observation: It did not install qtdeclarative, i had to manually go in and make install

Re: [Development] qtdeclarative doesn't compile?

2012-03-11 Thread Denis Dzyubenko
Hi Sergio, On Sun, Mar 11, 2012 at 3:12 PM, Sergio Ahumada Navea wrote: > qtbase/containers was merged into qtbase/api_change > > qtdeclarative/master depends on > qtbase/3d19422ef16a230bb11dbbfe4a8cc9667f39bf15 > > qtjsondb/master depends on qtbase/api_changes and qtdeclarative/master > > I woul

Re: [Development] qtdeclarative doesn't compile?

2012-03-11 Thread Sergio Ahumada Navea
On 03/11/2012 02:55 PM, Denis Dzyubenko wrote: > Hi guys, > > Is there something wrong with the CI or is qtdeclarative broken at the moment? > > I got an error in qtdeclarative when staging a change for qtjsondb module: > > http://codereview.qt-project.org/19092 > > http://testresults.qt-project.or

[Development] qtdeclarative doesn't compile?

2012-03-11 Thread Denis Dzyubenko
Hi guys, Is there something wrong with the CI or is qtdeclarative broken at the moment? I got an error in qtdeclarative when staging a change for qtjsondb module: http://codereview.qt-project.org/19092 http://testresults.qt-project.org/ci/QtJsonDb_master_Integration/build_00599/linux-g%2B%2B_de

Re: [Development] Qt Quick2 OpenGL or Raster translucent window

2012-03-11 Thread sarah.j.smith
Hi Have you tried something like this: int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); QSurfaceFormat f; f.setSamples(16); // if you want AA as well f.setAlphaBufferSize(8); // turn on alpha QQuickView view; view.setFormat(f); view.se