Re: [Interest] sliding panel windows (was Re: Moving a frameless QQuickWindow to negative position under linux)

2014-08-13 Thread Gunnar Sletta
As Thiago and Giulio has already pointed out, this may work on some window managers. On others it might not. Qt sits on the application side of things, it is not the window system side of things. That means that Qt has very few capabilities beyond requesting a window to be shown, asking the sy

Re: [Interest] XAML and CX in Qt for Windows Phone

2014-08-13 Thread Knight Andrew
Huy Phan Quang wrote: > So, it mean "i must rebuild qt source code"??? Not for using C++/CX in your application (why would it)? You just need to tell the compiler to enable the extensions (/ZW). Qt will happily link just the same. -Andrew --- From: Knight Andrew Sent: ‎13/‎08/‎2014 4:32 CH T

[Interest] Loader keyboard problem

2014-08-13 Thread mark diener
I am having some strange behavior with a Loader sample program for QtQuick 2.2 The Listview on Screen1.qml works Here is the main.qml file: import QtQuick 2.2 import QtQuick.Window 2.1 Window { id: mainwindow visible: true width: Screen.width height: Screen.height color: "bl

Re: [Interest] XAML and CX in Qt for Windows Phone

2014-08-13 Thread Huy Phan Quang
So, it mean "i must rebuild qt source code"??? -Original Message- From: "Knight Andrew" Sent: ‎13/‎08/‎2014 4:32 CH To: "Đèn cù Phan Quang Huy" ; "interest@qt-project.org" Subject: RE: [Interest] XAML and CX in Qt for Windows Phone Hi, > Hi all ! > > In Windows Phone 8, Microsoft pr

Re: [Interest] qt5 window setGeometry and move not work in wayland platform

2014-08-13 Thread Thiago Macieira
On Wednesday 13 August 2014 18:51:35 Giulio Camuffo wrote: > Sorry, i wasn't clear. I meant we shouldn't mention the possibility of > a custom protocol, not that setting the window position may not work. We shouldn't mention a custom protocol. That's something that only someone who's already writ

Re: [Interest] qt5 window setGeometry and move not work in wayland platform

2014-08-13 Thread Giulio Camuffo
2014-08-13 18:07 GMT+03:00 Thiago Macieira : > On Wednesday 13 August 2014 10:15:28 Giulio Camuffo wrote: >> 2014-08-13 8:58 GMT+03:00 Rutledge Shawn : >> > On 12 Aug 2014, at 6:29 PM, Thiago Macieira wrote: >> >> On Tuesday 12 August 2014 17:40:11 Steve Zhou wrote: >> >>> It's a normal applicatio

Re: [Interest] Problem with QDBusArgument unmarshalling (without sending via dbus).

2014-08-13 Thread Thiago Macieira
On Wednesday 13 August 2014 15:03:28 Валерий Котов wrote: > Could you please if it is possible to “trick” Qt and perform unmarshaling > even if we do not send object via dbus? It's not possible without access to internal QDBusArgumentPrivate. You have to make a call so it will convert to a readab

Re: [Interest] qt5 window setGeometry and move not work in wayland platform

2014-08-13 Thread Thiago Macieira
On Wednesday 13 August 2014 10:15:28 Giulio Camuffo wrote: > 2014-08-13 8:58 GMT+03:00 Rutledge Shawn : > > On 12 Aug 2014, at 6:29 PM, Thiago Macieira wrote: > >> On Tuesday 12 August 2014 17:40:11 Steve Zhou wrote: > >>> It's a normal application window ,:( > >> > >> Then just let the composito

Re: [Interest] sliding panel windows (was Re: Moving a frameless QQuickWindow to negative position under linux)

2014-08-13 Thread Rutledge Shawn
On 13 Aug 2014, at 3:04 PM, hualet wrote: > Thanks for you reply, Shawn. > I’m not trying to get the sliding-panel effect, in fact, my window is just > the main window of a regular video player, > what I want is the window can be dragged like other windows, now it works > pretty fine so far ex

Re: [Interest] sliding panel windows (was Re: Moving a frameless QQuickWindow to negative position under linux)

2014-08-13 Thread Rutledge Shawn
On 13 Aug 2014, at 12:38 PM, Bo Thorsen wrote: > > I think you can do this without doing anything outside the window. But then you are confined to the space inside the window. I'm talking about sliding panels around the edges of the desktop, without having to first make a window that covers t

[Interest] Problem with QDBusArgument unmarshalling (without sending via dbus).

2014-08-13 Thread Валерий Котов
Greetings everybody! During writing some tests we faced a problem with unpacking QDBusArgument in case the message was not really sent via dbus. If we send custom type via dbus both marshaling and unmarshaling are performed without any error. But if make direct call (instead of calling via dbus) a

Re: [Interest] sliding panel windows (was Re: Moving a frameless QQuickWindow to negative position under linux)

2014-08-13 Thread Bo Thorsen
Den 13-08-2014 10:19, Rutledge Shawn skrev: > > On 13 Aug 2014, at 5:33 AM, hualet wrote: > >> Hi, all >> There’s a frameless QQuickWindow which contains my actual qml content stuff >> in my application, and I just used the setX() and setY() method of that >> window to simulate moving, but it’s

Re: [Interest] Fwd: XAML and CX in Qt for Windows Phone

2014-08-13 Thread Knight Andrew
Yes, C# frameworks like AdMob require you to write some C# methods which are then exposed to native code. I'm afraid I can't offer much insight into how to do that, but I'm sure you can find examples on the web. As I said, calling CX code from your Qt application is no problem if you set the com

[Interest] Fwd: XAML and CX in Qt for Windows Phone

2014-08-13 Thread Đèn cù Phan Quang Huy
Thanks, Andrew! I'm very intersted in Qt UI, and I don't want XAML as GUI for my game. We choosen Qt Quick because Qt Quick :). We have experient with cocos2d-x but we changed to Qt because Qt is fully cross-platform, stable, cute code model and special QML. But C# calling is mandatory in my compa

Re: [Interest] XAML and CX in Qt for Windows Phone

2014-08-13 Thread Knight Andrew
Hi, > Hi all ! > > In Windows Phone 8, Microsoft provided a new technique for native development > (C++). There are 2 template for native : > > Native Only (only use C++) template: this template only use pure C++ with > limited access to Platform API (C# implementation like Camera, Push > Not

[Interest] XAML and CX in Qt for Windows Phone

2014-08-13 Thread Đèn cù Phan Quang Huy
Hi all ! In Windows Phone 8, Microsoft provided a new technique for native development (C++). There are 2 template for native : - Native Only (only use C++) template: this template only use pure C++ with limited access to Platform API (C# implementation like Camera, Push Notification, et

[Interest] sliding panel windows (was Re: Moving a frameless QQuickWindow to negative position under linux)

2014-08-13 Thread Rutledge Shawn
On 13 Aug 2014, at 5:33 AM, hualet wrote: > Hi, all > There’s a frameless QQuickWindow which contains my actual qml content stuff > in my application, and I just used the setX() and setY() method of that > window to simulate moving, but it’s not able to move that window to an > negative positi

Re: [Interest] qt5 window setGeometry and move not work in wayland platform

2014-08-13 Thread Giulio Camuffo
2014-08-13 8:58 GMT+03:00 Rutledge Shawn : > > On 12 Aug 2014, at 6:29 PM, Thiago Macieira wrote: > >> On Tuesday 12 August 2014 17:40:11 Steve Zhou wrote: >>> It's a normal application window ,:( >> >> Then just let the compositor position it. It should be good enough. > > I guess we have to docu