Re: [Interest] Needed working stop/start for animated SVG

2017-01-11 Thread Konstantin Shegunov
On Wed, Jan 11, 2017 at 4:34 PM, Serge K via Interest < interest@qt-project.org> wrote: > What will be my benefits for this solution if I will already have working > libs? > Your benefit would be that someone else could make use of your patch, just as you are using thousands of lines of code

Re: [Interest] Needed working stop/start for animated SVG

2017-01-11 Thread Serge K via Interest
Other issue about patch is - I do not know how it should work internally. To understand I must break my main project, then investigate specific Qt internals (I really do not know how Qt works with Android and how Android should work), find they solution, write code, assemble Qt with it, test

Re: [Interest] Needed working stop/start for animated SVG

2017-01-11 Thread Shawn Rutledge
> On 11 Jan 2017, at 13:43, Serge K via Interest > wrote: > > I am not sure about patch. I'm going distribute my product using Ministro to > reduce space used by Qt libraries. There will be several "parts" of this > product distributed separately. But they will use

Re: [Interest] Needed working stop/start for animated SVG

2017-01-11 Thread Serge K via Interest
ndroid drawable >> system is running the animation, not Qt. >> >> Sent: Tuesday, January 10, 2017 at 12:55 PM >> From: "Serge K via Interest" < interest@qt-project.org > >> To: interest < interest@qt-project.org > >> Subject:

Re: [Interest] Needed working stop/start for animated SVG

2017-01-11 Thread Shawn Rutledge
55 PM > From: "Serge K via Interest" <interest@qt-project.org> > To: interest <interest@qt-project.org> > Subject: Re: [Interest] Needed working stop/start for animated SVG > > SVG animation appeared first in Qt 4.1. I used it in Qt 5. > > Just needed stop and start

Re: [Interest] Needed working stop/start for animated SVG

2017-01-10 Thread Jason H
Well android wasn't around in 4.1 days... it seems the Android drawable system is running the animation, not Qt.    Sent: Tuesday, January 10, 2017 at 12:55 PM From: "Serge K via Interest" <interest@qt-project.org> To: interest <interest@qt-project.org> Subject: Re: [Interes

Re: [Interest] Needed working stop/start for animated SVG

2017-01-10 Thread Serge K via Interest
SVG animation appeared first in Qt 4.1. I used it in Qt 5. Just needed stop and start timer with two methods. WHY THIS WAS NOT DONE BEFORE??? IN FIRST 4.1 RELEASE? :-((( >Вторник, 10 января 2017, 20:41 +03:00 от Konstantin Tokarev >: > > > >10.01.2017, 20:37, "Serge K via

Re: [Interest] Needed working stop/start for animated SVG

2017-01-10 Thread Konstantin Tokarev
10.01.2017, 20:37, "Serge K via Interest" : > I created widget with animated SVG for my projects. It starts after loading > if signal svg->repaintNeeded() is connected to update() of my widget. To stop > and restart it I found a hack - disconnect this signal and reload

[Interest] Needed working stop/start for animated SVG

2017-01-10 Thread Serge K via Interest
I created widget with animated SVG for my projects. It starts after loading if signal svg->repaintNeeded() is connected to update() of my widget. To stop and restart it I found a hack - disconnect this signal and reload SVG image. In Windows and Linux this stops animation. Stupid but working.