[SailfishDevel] Spinner

2013-06-13 Thread Lucien XU
Hello ! I wanted to know if there is a "Spinner" type component for Sailfish. Something to indicate that there is a task in progress, but that we don't know the state of the task. I have found that "progress circle" in the components demo. But it seems to be tailored for tasks for which we kno

[SailfishDevel] Fwd: RE: Spinner

2013-06-13 Thread Lucien XU
FYI--- Begin Message --- Hi Lucien, Sailfish Silica will have BusyIndicator component with size variants small, medium and large (size: BusyIndicatorSize.Small/Medium/Large). Page { BusyIndicator { anchors.centerIn: parent running: model.status == Model.Loading } } Cheer

Re: [SailfishDevel] Fwd: RE: Spinner

2013-06-13 Thread abhishek . mrt22
Nice to know :) -- Sent from my Nokia N9 On 13/06/13 9:48 PM Lucien XU wrote: FYI ___ SailfishOS.org Devel mailing list

[SailfishDevel] Playing a wav in Sailfish

2013-06-13 Thread joao morgado
Hi I'm porting a app from Meego/Symbian, I need to play a wav file. I used  importQtMultimediaKit1.1 and SoundEffect element. I tought QtMultimediaKit was only available in Meego / Symbian, but my app runs fine in the emulator, so I guess I'm good to go. I don't hear any sound, I'm assuming it's

[SailfishDevel] Make cover page equal to First page

2013-06-13 Thread joao morgado
Hi again The app that I'm portin from Meego, it's a timer, so I need the cover to look the same has the first page, so the user can see the time running in the cover, just like in the first page. So, I did: ApplicationWindow { initialPage:FirstPage{} cover:initialPage//Qt.resolvedUrl("cover/Co

Re: [SailfishDevel] Make cover page equal to First page

2013-06-13 Thread Joona Petrell
Hi João, Application cover should have it's own UI, because it has different layout dimensions than the full-screen application page, different background (often CoverBackground) and in most cases should have cover actions. Cover and a page can share an UI component, provided that UI component

Re: [SailfishDevel] Playing a wav in Sailfish

2013-06-13 Thread christopher . lamb
Hi João I have just made a little demo project, importing QtMultimediaKit 1.1, and a SoundEffect Component. I added a Button component to the Column to play the sound when clicked. My Demo works, I get a swish sound when the button is clicked. You will find the code of my FirstPage at the b