[SailfishDevel] dqml

2016-07-03 Thread Petr Vytovtov
Hello! When I saw records of Sailfish Community Event I noticed that a speaker was using dqml tool [1]. How to build and run it for Sailfish development correctly? Thanks in advance! [1] https://github.com/sletta/dqml Regards, Petr___ SailfishOS.org

[SailfishDevel] Development environment

2015-12-30 Thread Petr Vytovtov
Hello! I know Qt Creator is a de facto standard for Qt development and, as a result, Sailfish OS development. But it is slow and uncomfortable for me. Is there anyone who uses alternative environments? What can you advice, if yes. Thanks in advance! Regards, Petr__

Re: [SailfishDevel] UX issues

2015-10-24 Thread Petr Vytovtov
Hi! First: After tapping on the list item will be better to open **Page** which allows to edit details. Firstly, it is similar to standard Notes app (you can edit note ans save it when return to the notes list). Secondly, it looks simpler without **Dialog** header. Second: For adding new prope

[SailfishDevel] Changing keyboard layouts in QtCreator

2015-08-29 Thread Petr Vytovtov
Hello! There is a problem with QtCreator in current SDK version. I use Ubuntu 15.04 and cannot change keyboard layouts while I use this IDE. How this bug can be fixed? Thanks in advance! Regards, Petr [Linux User Group Udmurtia](https://udmlug.wordpress.com/)___

Re: [SailfishDevel] Compiling and installing libsocialcache

2015-08-21 Thread Petr Vytovtov
l Message Subject: Re: [SailfishDevel] Compiling and installing libsocialcache Time (UTC): August 21 2015 10:20 am From: jussi.pakka...@jolla.com To: devel@lists.sailfishos.org On 19.08.2015 14:16, Petr Vytovtov wrote: > >>> Why don't you simply develop with the Sailfish SDK

Re: [SailfishDevel] Compiling and installing libsocialcache

2015-08-19 Thread Petr Vytovtov
argets used to build are hosted inside this OS. You need to use sb2 to enter in one of those targets. Why don't you simply develop with the Sailfish SDK ? Regards, Lucien -- De: "Petr Vytovtov" À: devel@lists.sailfishos.org Envoyé: Mercredi 19 Août 2015 06:30:34

[SailfishDevel] Compiling and installing libsocialcache

2015-08-18 Thread Petr Vytovtov
Hello! I want to help to develop open source part of Sailfish OS and to start improve vk integration. I cloned this repository: https://github.com/nemomobile/libsocialcache/tree/vk - and built it with MerSDK. Next, I tried to install packages: [mersdk@SailfishSDK RPMS]$ rpm -i ./libsoci

Re: [SailfishDevel] Accessing C++ properties from QML

2015-08-13 Thread Petr Vytovtov
You can try to use signals and slots like this: Header class // ... { // ... signals: void somethingWasDone(); // } Source // ... someMethod() { // Do something emit somethingWasDone(); } // ... QML // ... Connections { target: // Your module onSomethin

[SailfishDevel] OpenGL usage

2015-07-15 Thread Petr Vytovtov
Hello! I've tried to make this example: http://doc.qt.io/qt-5/qtquick-scenegraph-openglunderqml-example.html. But the app shows only a label and a rectangle (the screenshot in attachments). Is it possible to use OpenGL on Sailfish? If yes how can I do it? My opengl-test.cpp file: ``` #if