Re: [Interest] Qt "Desktop App" for Microsoft Store

2017-05-01 Thread Maurice Kalinowski
Hi, As mentioned below, you cannot "just" push a desktop app (in Microsoft terminology "classic application") to the windows store. It has to be a Universal App (what was declared WinRT once). If you are using Qt already, the easiest is to recompile your application against Qt for WinRT and pus

Re: [Interest] building a light weight tree model

2017-05-01 Thread Ch'Gans
On 2 May 2017 at 17:55, Frank Rueter | OHUfx wrote: > Hi all, > > Here is a snippet of test code to mimic a light weight tree model. > All it is trying to do is mimic the parenting according to the directory > structure on disk using QStandardItems in a QStandardModel. > It works, but it took me

[Interest] building a light weight tree model

2017-05-01 Thread Frank Rueter | OHUfx
Hi all, Here is a snippet of test code to mimic a light weight tree model. All it is trying to do is mimic the parenting according to the directory structure on disk using QStandardItems in a QStandardModel. It works, but it took me way longer to figure out than I expected, and I have a feeling

Re: [Interest] Qt "Desktop App" for Microsoft Store

2017-05-01 Thread Robert Iakobashvili
On Tue, May 2, 2017 at 3:03 AM, Ian Clark wrote: > On 30 April 2017 at 07:57, Robert Iakobashvili wrote: >> Hi, >> >> Has anybody tried to make and publish a Qt-based Windows "Desktop App" >> at the Microsoft App Store? >> > I'm currently trying to do just that. > > I've managed to build and pack

Re: [Interest] Qt at the C++20 era

2017-05-01 Thread Tomasz Siekierda
On 1 May 2017 at 22:51, Jean-Michaël Celerier wrote: > https://twitter.com/anastasiak2512/status/858809432792338432 > https://twitter.com/sebrose/status/858347156427636738 > https://twitter.com/hatcat01/status/858360761424523266 > > I think that the Qt project, community, and company would have ev

Re: [Interest] Qt "Desktop App" for Microsoft Store

2017-05-01 Thread Ian Clark
On 30 April 2017 at 07:57, Robert Iakobashvili wrote: > Hi, > > Has anybody tried to make and publish a Qt-based Windows "Desktop App" > at the Microsoft App Store? > I'm currently trying to do just that. I've managed to build and package an app that I can sign and install locally, It also passes

Re: [Interest] CSS based pie chart ignored in QWebView

2017-05-01 Thread Frank Rueter | OHUfx
Ok, thanks. I got it to work. I don't know what I did wrong yesterday but it seems to be fine now. Cheers, frank On 1/05/17 8:44 PM, Konstantin Tokarev wrote: 01.05.2017, 10:03, "Frank Rueter | OHUfx" : Hi, I was hoping to utilise a CSS based pie chart like this in my QWebView to print som

[Interest] Qt at the C++20 era

2017-05-01 Thread Jean-Michaël Celerier
https://twitter.com/anastasiak2512/status/858809432792338432 https://twitter.com/sebrose/status/858347156427636738 https://twitter.com/hatcat01/status/858360761424523266 I think that the Qt project, community, and company would have everything to win to put its weight behind such a proposal. Best

Re: [Interest] Qt 5.7 QuickControls 2 are not multitouch??

2017-05-01 Thread Nuno Santos
Thanks for sharing. It seems that I was missing the this->setAcceptedMouseButtons(Qt::LeftButton); I will try and I will let know about the outcome. Regards, Nuno > On 1 May 2017, at 16:46, Jean-Michaël Celerier > wrote: > > Nuno Santos I just did this : > https://github.com/jcelerier/qml

[Interest] Using MultiPointTouchArea for Multiple Touch points

2017-05-01 Thread Pasiak, Emily
Hi all, I am working on developing a user interface that displays an animated camera view. I need to be able to pan, rotate and zoom the view. I have implemented the use of the QML Camera component and managed to get both zoom and rotate working via PinchArea and MultipPointTouchArea. My current

Re: [Interest] Qt 5.7 QuickControls 2 are not multitouch??

2017-05-01 Thread Jean-Michaël Celerier
Nuno Santos I just did this : https://github.com/jcelerier/ qml-creative-controls/blob/master/src/toucharea.cpp and it worked for my use case (I just need one finger per widget). --- Jean-Michaël Celerier http://www.jcelerier.name On Mon, May 1, 2017 at 3:38 PM, Nuno Santos wrote: > Hey,

Re: [Interest] Qt 5.7 QuickControls 2 are not multitouch??

2017-05-01 Thread Nuno Santos
Hey, I was never successful extending QQuickItem to override touchEvent and handle then on the C++. that’s what I was trying to say on previous email that Shawn Rutledge replied to me and I forgot to reply to him. What exactly must done (the minimal necessary steps), to have a QQuickItem resp

Re: [Interest] Qt 5.7 QuickControls 2 are not multitouch??

2017-05-01 Thread Shawn Rutledge
> On 1 May 2017, at 08:24, J-P Nurmi wrote: > > PS. Unlike for QWidgets and QGraphicsItems, there is no need to explicitly > enable touch events for QQuickItems. That has been the case, but I want to change it (adding acceptTouchEvents/setAcceptTouchEvents) to make it more consistent, to enab

Re: [Interest] What is it?

2017-05-01 Thread Igor Mironchik
2017-05-01 16:08, Thiago Macieira пишет: On Monday, 1 May 2017 03:19:24 -03 Igor Mironchik wrote: Hello, What does it mean? :-1: warning: "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.10.25017\bin\HostX64\x64\cl.exe" is used by qmake, but "" is configured i

Re: [Interest] What is it?

2017-05-01 Thread Thiago Macieira
On Monday, 1 May 2017 03:19:24 -03 Igor Mironchik wrote: > Hello, > > What does it mean? > > :-1: warning: "C:\Program Files (x86)\Microsoft Visual > > Studio\2017\Community\VC\Tools\MSVC\14.10.25017\bin\HostX64\x64\cl.exe" > is used by qmake, but "" is configured in the kit. > Please update you

[Interest] QtIFW Delete additional Files when uninstalling

2017-05-01 Thread Oliver Niebuhr
Hello. I am trying to delete additional Files and Folders from the User Home Directory with no avail. As the Documentation says that all the Uninstall Stuff must be in the ControlsScript, I have added / tried the following combinations: 1.) [In the Controller.prototype.IntroductionPageCallback] v

Re: [Interest] Qt 5.7 QuickControls 2 are not multitouch??

2017-05-01 Thread Jean-Michaël Celerier
> You can reimplement QQuickItem::touchEvent() to handle touch events. See QTouchEvent docs for the details. Thanks. I guess there's not a similar way if one wants to stay in the QML realm ? Best Jean-Michaël On Mon, May 1, 2017 at 8:24 AM, J-P Nurmi wrote: > > On 1 May 2017, at 01:31, Jean-

Re: [Interest] CSS based pie chart ignored in QWebView

2017-05-01 Thread Konstantin Tokarev
01.05.2017, 10:03, "Frank Rueter | OHUfx" : > Hi, > > I was hoping to utilise a CSS based pie chart like this in my QWebView to > print some reports. > I copied the css code from the above example to my already implemented local > CSS file, but the pie chart wont' display in the QWebView (other

[Interest] CSS based pie chart ignored in QWebView

2017-05-01 Thread Frank Rueter | OHUfx
Hi, I was hoping to utilise a CSS based pie chart like this in my QWebView to print some reports. I copied the css code from the above example to my already implemented local CSS file, but the pie chart wont' display in the QWebView (other css defin