Re: [Development] How can I use a proxy to push change to codereview.qt-project.org?

2013-12-13 Thread Thiago Macieira
On sábado, 14 de dezembro de 2013 12:14:49, Liang Jian wrote:
> I used to be pushing changes to be code reviewed using the following
> command:
> git push
> ssh://jianlian...@codereview.qt-project.org:29418/qt/qtbaseHEAD:ref/for/sta
> ble That works fine before, but today after I type the command there is not
> any response for half an hour, I think this is due to network problem,
> maybe due to the china's great firewall or something else. How can I use a
> proxy to push change? Thanks

You can try ssh://ssh.qt-project.org:443/

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center


signature.asc
Description: This is a digitally signed message part.
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] How can I use a proxy to push change to codereview.qt-project.org?

2013-12-13 Thread Liang Jian
I used to be pushing changes to be code reviewed using the following
command:
git push 
ssh://jianlian...@codereview.qt-project.org:29418/qt/qtbaseHEAD:ref/for/stable
That works fine before, but today after I type the command there is not
any response for half an hour, I think this is due to network problem,
maybe due to the china's great firewall or something else. How can I use a
proxy to push change? Thanks
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Trigger Qt event loop from external message loop

2013-12-13 Thread Thiago Macieira
On sábado, 14 de dezembro de 2013 00:45:20, Roland Winklmeier wrote:
> Since I
> cannot run Qt's event loop with QApplication::exec() - I dont want the
> plugin to block the parent application - I try to trigger the event loop
> externally.

You have to do that.

Use another thread then. All of your proposed solutions in your email will run 
into trouble sooner or later.
-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center


signature.asc
Description: This is a digitally signed message part.
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] Trigger Qt event loop from external message loop

2013-12-13 Thread Roland Winklmeier
Hi there,

I'm working on an application using Qt5 for its window framework. The
requirement for this application is to run standalone and as a plugin
for a native application.
While the case standalone application is easy, I'm struggling a bit with
the plugin part. I have the following in mind:

The plugin is loaded by a native application as a plugin. After the
plugin is attached as a shared library a QApplication object is created
and a dialog is shown, when the user selects it from the menu. Since I
cannot run Qt's event loop with QApplication::exec() - I dont want the
plugin to block the parent application - I try to trigger the event loop
externally. The two options I have are:

qApp->sendPostedEvents();
or
qApp->processEvents();

The second one is not a good idea, since it calls PeekMessage(...,
PM_REMOVE) which removes any message. Even that targeted for the parent
application -> not a good idea.
qApp->sendPostedEvents() on the other hand does send everything except
window system messages.
qwindowsysteminterface.cpp sais the following about this topic:
"The platform plugins call the various functions to notify about events.
The events are queued until sendWindowSystemEvents() is called by the
event dispatcher." So I would need to call sendWindowSystemEvents()
before. This can be done by calling
QEventDispatcherWin32::sendPostedEvents() which is protected and part of
the private headers. Even though it is virtual, its base class
QAbstractEventDispatcher does not have such a method. During runtime a
QWindowsGuiEventDispatcher object is allocated and its virtual method
sendPostedEvents() is used. This is what I would need.

Now I'm stuck. Would it be possible to just add a public method in
QAbstractEventDispatcher, e.g.
QAbstractEventDispatcher::sendPostedGuiEvents() or anything else? Any
other ideas?

I know this is a special case, but I think its worth to solve it.

Summary - the following use cases work:
- QApplication::processEvent() for long running methods (in case all
messages are really targeted to your Qt application).
- QApplication::sendPostedEvents() which sends every core application
events.

The following use case does not work up to now:
- Qt application has a parent with its own message loop. Window system
events get stuck and are never sent. (besides some exceptions, e.g.
resizing, since it triggers flushWindowSystemEvents() ).

Any would be appreciated!

Thanks,
Roland

PS: I've raised https://bugreports.qt-project.org/browse/QTBUG-32962
some month ago. Yesterday I tried it with 5.2.0 and forgot, I had a
local workaround in place. So contrary to what is written, it is not
fixed in 5.2.0

---
Diese E-Mail ist frei von Viren und Malware, denn der avast! Antivirus Schutz 
ist aktiv.
http://www.avast.com

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Nominating Michael Brüning as Approver

2013-12-13 Thread Allan Sandfeld Jensen
On Friday 13 December 2013, Jocelyn Turcotte wrote:
> Hello,
> 
> Michael has been working for Nokia since 2008 and joined the QtWebKit team
> in 2011, which he then followed in Digia. He has since then been
> contributing many changes to QtWebKit and has lately also been helping
> with QtWebEngine.
> 
> here are his dashboard and his contributions to upstream WebKit:
> 
> https://codereview.qt-project.org/#dashboard,1000263
> 
> https://codereview.qt-project.org/#q,owner:michael.bruning%2540digia.com+-s
> tatus:abandoned,n,z
> https://codereview.qt-project.org/#q,reviewer:michael.bruning%2540digia.co
> m+label:CodeReview%252B1,n,z
> http://trac.webkit.org/search?changeset=on&q=michael.bruning
> 
> You can find him on IRC as "mibrunin".
> I'm convinced that Michael will make a trustworthy approver.
> 
+1
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Nominating Michael Brüning as Approver

2013-12-13 Thread Thiago Macieira
On sexta-feira, 13 de dezembro de 2013 12:39:50, Jocelyn Turcotte wrote:
> Hello,
> 
> Michael has been working for Nokia since 2008 and joined the QtWebKit team
> in 2011, which he then followed in Digia. He has since then been
> contributing many changes to QtWebKit and has lately also been helping with
> QtWebEngine.
> 
> here are his dashboard and his contributions to upstream WebKit:
> 
> https://codereview.qt-project.org/#dashboard,1000263
> 
> https://codereview.qt-project.org/#q,owner:michael.bruning%2540digia.com+-st
> atus:abandoned,n,z
> https://codereview.qt-project.org/#q,reviewer:michael.bruning%2540digia.com
> +label:CodeReview%252B1,n,z
> http://trac.webkit.org/search?changeset=on&q=michael.bruning
> 
> You can find him on IRC as "mibrunin".
> I'm convinced that Michael will make a trustworthy approver.

+1

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center


signature.asc
Description: This is a digitally signed message part.
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Nominating Michael Brüning as Approver

2013-12-13 Thread Tobias Hunger
+1

On Dec 13, 2013 12:40 PM, "Jocelyn Turcotte" 
wrote:
>
> Hello,
>
> Michael has been working for Nokia since 2008 and joined the QtWebKit
team in 2011, which he then followed in Digia.
> He has since then been contributing many changes to QtWebKit and has
lately also been helping with QtWebEngine.
>
> here are his dashboard and his contributions to upstream WebKit:
>
> https://codereview.qt-project.org/#dashboard,1000263
>
>
https://codereview.qt-project.org/#q,owner:michael.bruning%2540digia.com+-status:abandoned,n,z
>
https://codereview.qt-project.org/#q,reviewer:michael.bruning%2540digia.com+label:CodeReview%252B1,n,z
> http://trac.webkit.org/search?changeset=on&q=michael.bruning
>
> You can find him on IRC as "mibrunin".
> I'm convinced that Michael will make a trustworthy approver.
>
> Best Regards,
> Jocelyn
> ___
> Development mailing list
> Development@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Nominating Michael Brüning as Approver

2013-12-13 Thread Pierre Rossi
+1


On Fri, Dec 13, 2013 at 12:39 PM, Jocelyn Turcotte <
jocelyn.turco...@digia.com> wrote:

> Hello,
>
> Michael has been working for Nokia since 2008 and joined the QtWebKit team
> in 2011, which he then followed in Digia.
> He has since then been contributing many changes to QtWebKit and has
> lately also been helping with QtWebEngine.
>
> here are his dashboard and his contributions to upstream WebKit:
>
> https://codereview.qt-project.org/#dashboard,1000263
>
>
> https://codereview.qt-project.org/#q,owner:michael.bruning%2540digia.com+-status:abandoned,n,z
>
> https://codereview.qt-project.org/#q,reviewer:michael.bruning%2540digia.com+label:CodeReview%252B1,n,z
> http://trac.webkit.org/search?changeset=on&q=michael.bruning
>
> You can find him on IRC as "mibrunin".
> I'm convinced that Michael will make a trustworthy approver.
>
> Best Regards,
> Jocelyn
> ___
> Development mailing list
> Development@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/development
>
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] Nominating Michael Brüning as Approver

2013-12-13 Thread Jocelyn Turcotte
Hello,

Michael has been working for Nokia since 2008 and joined the QtWebKit team in 
2011, which he then followed in Digia.
He has since then been contributing many changes to QtWebKit and has lately 
also been helping with QtWebEngine.

here are his dashboard and his contributions to upstream WebKit:

https://codereview.qt-project.org/#dashboard,1000263

https://codereview.qt-project.org/#q,owner:michael.bruning%2540digia.com+-status:abandoned,n,z
https://codereview.qt-project.org/#q,reviewer:michael.bruning%2540digia.com+label:CodeReview%252B1,n,z
http://trac.webkit.org/search?changeset=on&q=michael.bruning

You can find him on IRC as "mibrunin". 
I'm convinced that Michael will make a trustworthy approver.

Best Regards,
Jocelyn
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] CI will update to VS2012 SP4

2013-12-13 Thread Sarajärvi Tony
Hi all

The CI is using VS2012 SP2 currently. We will start updating them to SP4 next 
week.

Any objections?

Also VS2013 will be installed on the Win 8 machines. One configuration will be 
either changed to that or a new one will be created to cover it.

Regards,
-Tony
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development