Re: [SailfishDevel] using icon image provider with custom icons

2020-05-25 Thread Dmitriy Sedov
In my case, i hust use standart image with custom ShaderEffect , like in my button implementation MouseArea { id: iconButton width: panel.buttonSize height: panel.buttonHeight Image { id: buttonImage source: emojiModel.categoryIcon(modelData); anchors.cen

[SailfishDevel] Mallit keyboard in non Silica App

2020-01-09 Thread Dmitriy Sedov
Question to Rinigus =) First, you have great work wit Flatpak! Respect! Second, i am working with port of Godot Game Engine, its allready work, but, I still haven't figured out how to call a maliit keyboard in a non silica application. As I see you have figured it out, please share your experi

Re: [SailfishDevel] ListView , Image with large height and EGL errors (AL13N)

2019-05-31 Thread Dmitriy Sedov
when i use Image with big images, i use code like this:| Image { onSourceSizeChanged: { if( sourceSize.width > 3264 ) sourceSize.width = 3264 if( sourceSize.height > 3264 ) sourceSize.height = 3264 } cache:

Re: [SailfishDevel] OpenAL in SailfishOS

2018-03-27 Thread Dmitriy Sedov
I am try build cAudio lib, I am already build it with qmake. But in sailfish I can’t hear any sound, its look like it work, but just silence from emulator and device. Other sounds in system are playing nice. Is somebody try to use OpenAL in Sailfish? Is it works properly? P.S. Sorry for my Engl

Re: [SailfishDevel] "Unnamed application is not responding" - How to respond from C and python? (Martin Kampas)

2018-02-14 Thread Dmitriy Sedov
I had the same issue, when porting Irrlicht Engine https://together.jolla.com/question/165688/nearly-done-irrlicht-19-opengles2-engine-port/ If I right understand you, in C in Wayland you need to say Wayl

Re: [SailfishDevel] Sailfish application with pure Wayland

2017-08-29 Thread Dmitriy Sedov
error… Thanks for all! > Hi, > > maybe here someone can help you: > > http://talk.maemo.org/showthread.php?t=98882 > > /Michael. > > Am 22.08.2017 um 10:08 schrieb Dmitriy Sedov: >> I am trying to porting Irrlicht engine to Sailfish OS, and i don’t >> now

[SailfishDevel] Sailfish application with pure Wayland

2017-08-22 Thread Dmitriy Sedov
I am trying to porting Irrlicht engine to Sailfish OS, and i don’t now where I can get Display Resolution and DPI in Wayland code? How I can receive signal from OS when application closing by user in sailfish ( I always get error when app is closing, because Irrlicht don’t now about this, and tr