Re: [Interest] Qt 5 and filesystem

2013-01-03 Thread Дмитрий Козлов
Most likely, you'll have to write on C++ your component. You also can use FolderListModel ( http://doc.qt.digia.com/qt/qml-folderlistmodel.html ). For example, for my needs I made this: http://pastebin.com/BSPF3sBw http://pastebin.com/sxwCb3e5 Четверг, 3 января 2013, 21:54 +01:00 от

Re: [Interest] Qt5 mingw builds

2013-01-09 Thread Дмитрий Козлов
One month ago I cross-compiled Qt5 from git sources with mingw ( http://mxe.cc ). It took some magic to compile it. I used this script extracts sources from tar archive, builds and installs.  http://pastebin.com/ewDE61GZ But I couldn't compile Qt5 with WebKit support... ( Вторник, 8 января

Re: [Interest] QThread, correct exit.

2013-09-28 Thread Дмитрий Козлов
28.09.2013 13:57, Alexander Syvak пишет: Each thread emits blocking queued singnals to the main thread where button stop executes the code in the previous mail. 2013/9/28 Mandeep Sandhu mandeepsandhu@gmail.com mailto:mandeepsandhu@gmail.com On Sat, Sep 28, 2013 at 3:14 PM,

Re: [Interest] Custom Quick view to visualize a List-model of points on a map

2013-09-28 Thread Дмитрий Козлов
27.09.2013 17:22, Ola Røer Thorsen пишет: Hi, I have a c++ list model that inherits QAbstractListModel. It contains a list of waypoints that amongst other things have x,y screen coordinates. Points are added, removed and values are changed runtime. I want to visualize these in Quick2 on top

Re: [Interest] Qt5/Android examples on the Play store?

2013-12-30 Thread Дмитрий Козлов
31.12.2013 4:05, Bob Hood пишет: I recall this being asked quite some time back, but I'd like to ask it again: Can somebody point me to any examples of apps written using Qt 5.2 on the Google Play store right now? ___ Interest mailing list

Re: [Interest] Resolving QML binding loops?

2014-01-08 Thread Дмитрий Козлов
08.01.2014 16:10, Cornelius Hald пишет: Hi, I was wondering if there are general patterns or best practices on how to omit/resolve QML binding loops. For example, the following code does what it should do, but while resizing the window I get a lot of warnings about the binding loop.

Re: [Interest] Skip over disabled items in listview and gridview when navigating with up/down/left/right arrows

2014-03-20 Thread Дмитрий Козлов
On 17.03.2014 19:08, Rogers Nate wrote: I tried to override the flags function in the model but the function never gets called, it never printed out my debug statement or hit my break point. Not sure what to do here... Qt::ItemFlags MessageList::flags(const QModelIndex index) const {