Re: [SailfishDevel] Devel Digest, Vol 12, Issue 26

2015-04-23 Thread Fedor Zaitsev
I tested this again several times and found that this behavior happens only on the emulator - on real device everything works fine for me. Have you tried my code on real device on emulator? I am using sdk for OSX version 1502, may be it is a local bug for that sdk version 23 апр. 2015 г., в

[SailfishDevel] GCompris

2015-04-23 Thread Alex Smirnoff
Hi. I am glad to announce that, thanks to the main developers from GCompris community, Gcompris could be now started on Jolla device. More over, it is almost nothing prevents from merging Sailfish support in GCompris master branch. I have plan to place rpm on openrepos in short time to make it

Re: [SailfishDevel] GCompris

2015-04-23 Thread Alex Smirnoff
Yes,I think about irc meeting right now. But also no sure if I have enough time. 2015-04-23 10:07 GMT+02:00 Luciano Montanaro mikel...@gmail.com: Hi Lucien, On Thu, Apr 23, 2015 at 9:57 AM, Lucien Xu sfietkonstan...@free.fr wrote: Qt Quick Controls can be themed, and you can use Qt Quick

Re: [SailfishDevel] GCompris

2015-04-23 Thread Alex Smirnoff
Yes. I have already tried to use qtquickcontrols-nemo https://github.com/nemomobile/qtquickcontrols-nemo for my needs. But latter I have decided to stay with original Qt controls and wait before Jolla says me something, at least yes, we will support it in the future or no, we will never support

Re: [SailfishDevel] Bug in Page component?

2015-04-23 Thread Andrey Kozhevnikov
Your example is works for me. 23.04.2015 13:54, Fedor Zaitsev пишет: MouseArea { anchors.fill: parent onClicked: anim.start() } PropertyAnimation { id: anim target: rect property: color

Re: [SailfishDevel] GCompris

2015-04-23 Thread Lucien Xu
Hi Alex, Qt Quick Controls can be themed, and you can use Qt Quick components to do the theming of these controls. We have been doing this kind of theming work for Nemo [1]. However, doing this for Sailfish OS's Silica might require some effort, approval from Jolla etc. However, there is a

Re: [SailfishDevel] GCompris

2015-04-23 Thread Luciano Montanaro
Hi Lucien, On Thu, Apr 23, 2015 at 9:57 AM, Lucien Xu sfietkonstan...@free.fr wrote: Qt Quick Controls can be themed, and you can use Qt Quick components to do the theming of these controls. We have been doing this kind of theming work for Nemo [1]. However, doing this for Sailfish OS's Silica

[SailfishDevel] Bug in Page component?

2015-04-23 Thread Fedor Zaitsev
Hi. Today I found that standard PropertyAnimation element behavior unexpectedly. Take a look that code: import QtQuick 2.0 import Sailfish.Silica 1.0 Page { Rectangle { id: rect width: 400 height: 400 color: red MouseArea {

Re: [SailfishDevel] GCompris

2015-04-23 Thread Luciano Montanaro
Hi Alex, great to see GCompris ported to Sailfish. I suppose it will be better suited for the new tablet rather than the telepone, given the target users (children), right? I second your request for QtQuickControls support - It may help porting more applications to SailfishOs, and there are

Re: [SailfishDevel] Bug in Page component?

2015-04-23 Thread Andrey Kozhevnikov
Also in your case it's better ti use ColorAnimation as Behaviour and do not start animations manually: Behavior on color { ColorAnimation { duration: 2000 } } MouseArea { anchors.fill: parent onClicked: rect.color = green } 23.04.2015 13:54, Fedor Zaitsev пишет:

Re: [SailfishDevel] GCompris

2015-04-23 Thread martin brook
Hi This thread reminded me of this http://aseigo.blogspot.co.uk/2013/01/qml-component-apis-to-come-together.html , I'm not sure if anything came of the discussions. Also related I think is https://lists.sailfishos.org/pipermail/devel/2015-February/005741.html vgrade On Thu, Apr 23, 2015 at

Re: [SailfishDevel] GCompris

2015-04-23 Thread Luciano Montanaro
Since we are discussing this, does anyone from Jolla plan to attend Akademy 2015[1]? This would be a good topic for a BOF/workshop. *And* it's end of July, so Jolla could avoid postage costs, and deliver my tablet! :-P [1] https://dot.kde.org/2015/01/20/akademy-2015-coru%C3%B1a-spain-25-31-july

Re: [SailfishDevel] GCompris

2015-04-23 Thread Alex Smirnoff
Hi, You mean ubuntu branch in Johnny Jazeix Repository And this line, right? # install QtQuick.Controls files install(DIRECTORY /usr/lib/arm-linux-gnueabihf/qt5/qml/QtQuick/Controls/ DESTINATION QtQuick/Controls) I will ask Johnny if we could use this possibility and why ubuntu is not in a master