Re: [SailfishDevel] Passing parameters back?

2015-05-11 Thread Dmitriy Purgin
Hi Chris, I suppose you have all the breweries' data in a DB table referenced by breweryInfoModel and need to extract data by locid. In this case you could wrap your breweryInfoModel in a QSortFilterProxyModel [1] and just use its filtering methods. In this case you would basically need to set you

Re: [SailfishDevel] XDG paths in QT

2015-05-11 Thread Luciano Montanaro
The behavior, in Linux, in general is for applications to install default setting files in a "global" XDG path, e.g /usr/share/config/yourappnamerc and to write it to your home directory on first change (e.g /home/nemo/.config/yourappnamerc). That said, using QStandardPaths should make things work

Re: [SailfishDevel] Update on SailfishOS roadmap

2015-05-11 Thread Anand.R.Kris
On Mon, May 11, 2015 at 6:52 PM, Soumya Bijjal < soumya.bij...@jollamobile.com> wrote: > On 11.05.2015 16:11, Anand.R.Kris wrote: > >> Thanks for the update, Soumya! Roadmap webpage looks lovely! :) >> >> > Thanks. > > Additional keyboard layouts to Dutch and Turkish languages [OS > ver.

Re: [SailfishDevel] Update on SailfishOS roadmap

2015-05-11 Thread Soumya Bijjal
On 11.05.2015 16:11, Anand.R.Kris wrote: Thanks for the update, Soumya! Roadmap webpage looks lovely! :) Thanks. Additional keyboard layouts to Dutch and Turkish languages [OS ver. 1.1.4] Related to above feature, is support (font / keyboard) for Indian languages planned for any of the fut

Re: [SailfishDevel] Update on SailfishOS roadmap

2015-05-11 Thread Anand.R.Kris
Thanks for the update, Soumya! Roadmap webpage looks lovely! :) >>> Additional keyboard layouts to Dutch and Turkish languages [OS ver. 1.1.4] Related to above feature, is support (font / keyboard) for Indian languages planned for any of the future iterations? I am using openrepos package at the

Re: [SailfishDevel] Update on SailfishOS roadmap

2015-05-11 Thread Andrea Bernabei
Well done guys, the roadmap page is quite nice and informative :) 2015-05-11 13:43 GMT+01:00 Luca Donaggio : > Great guys! I really appreciate this! > > On Mon, May 11, 2015 at 2:25 PM, Soumya Bijjal < > soumya.bij...@jollamobile.com> wrote: > >> Hello all, >> >> It's been a while since the last

Re: [SailfishDevel] Update on SailfishOS roadmap

2015-05-11 Thread Luca Donaggio
Great guys! I really appreciate this! On Mon, May 11, 2015 at 2:25 PM, Soumya Bijjal < soumya.bij...@jollamobile.com> wrote: > Hello all, > > It's been a while since the last update from us. The development of the > new UI framework and adaptation work for the Tablet have been our priority > for

[SailfishDevel] Update on SailfishOS roadmap

2015-05-11 Thread Soumya Bijjal
Hello all, It's been a while since the last update from us. The development of the new UI framework and adaptation work for the Tablet have been our priority for some time and will continue to be until we are ready with the sales release for the Tablet. Alongside this important activity, we

Re: [SailfishDevel] Passing parameters back?

2015-05-11 Thread Andrey Kozhevnikov
Hello, using normal page you can connect to page status changing using javascript code: onClicked: { var page = pageStack.push(Qt.resolvedUrl("BreweryDetailsPage.qml"), { model: locid }); page.statusChanged.connect(function() { if (page.status == PageStatus.Inactive) /* do something

[SailfishDevel] Passing parameters back?

2015-05-11 Thread Chris Walker
Hopefully somebody can help me with this problem. In my app, I'm using this approach to set up and use various models :- https://wiki.qt.io/How_to_Use_a_QSqlQueryModel_in_QML I have a list of breweries in the first page and when one is selected, I pass a parameter to the second page like this :-