Tag Archives: Qt

Simplictionary – A simple dictionary reader for N9/N950 (Harmattan)

Simplictionary is a simple reader for dictionaries in XDXF format. It is almost entirely written in QML (except the usual launcher part and a tiny helper class for getting a list of installed dictionaries from the filesystem). You can download … Continue reading

Posted in My Applications, Simplictionary | Tagged , , , , | 2 Comments

VUMeter in Ovi Store

Some days ago VUMeter for Harmattan/MeeGo got accepted in the Ovi Store: http://store.ovi.com/content/210578

Posted in Announcements, My Applications, VUMeter | Tagged , , , , | Leave a comment

MeePasswords Version 1.6.0 for Harmattan

I just uploaded version 1.6.0 of MeePasswords for MeeGo/Harmattan to my and rzr’s repository. This version fixes an issue which got reported to me several times. Essentially, this issue prevented some people from using MeePasswords as there was an error … Continue reading

Posted in MeePasswords, My Applications | Tagged , , , , | 1 Comment

VUMeter for N9/N950

I just uploaded version 0.2.1 of VUMeter for Harmattan (N9/N950) to rzr’s and my repository. This is a QML port of the VUMeter version which is available for Fremantle. At the moment the Harmattan version is still missing some of … Continue reading

Posted in My Applications, VUMeter | Tagged , , , , , | 2 Comments

New Version of the QML TreeView

I already posted an implementation of a QML TreeView some time ago. In the meantime I reworked this implementation, improved data and selection handling (the TreeView now comes e.g. with currentItem and currentIndex properties), added some (hopefully useful) comments, and … Continue reading

Posted in Qt/QML, Snippets | Tagged , , , , | Leave a comment

Reorder Items in a QML ListView via Touch Gestures

The stock QML ListView is pretty handy for displaying simple data structures. While porting To-Do-O to Qt/QML (MeeGo/Harmattan to be more precise) I stumbled across a use case where I want to move / reorder items in a list. In … Continue reading

Posted in Qt/QML, Snippets | Tagged , , , , | Leave a comment

QML SectionScroller vs. QAbstractListModel

A SectionScroller essentially allows quick scrolling in large lists. Though, there are some pitfalls when you want to use a custom C++/Qt based model with a SectionScroller in QML. Please note that this should work with a QAbstractItemModel based model … Continue reading

Posted in Qt/QML, Snippets | Tagged , , , , | 1 Comment

QML TreeView

QML does not (at the time of writing) provide a component to display tree structures. There are some approaches/efforts to display tree structures http://qt-way-notes.blogspot.com  http://steveire.wordpress.com. Nonetheless I coded a TreeView on my own. The following video shows the implementation made … Continue reading

Posted in Qt/QML, Snippets | Tagged , , , , | 3 Comments

QML and Clipboard Interaction

Edit: Please make sure to look into the comments. While this is a rather old post, thankfully, still constructive comments are raised that point out important aspects. Unfortunately, my time does not permit to properly update the post nor did … Continue reading

Posted in Qt/QML, Snippets | Tagged , , | 3 Comments

QComboBox for QML

QML does not come (yet?) with the equivalent of a QComboBox. As I find a ComboBox quite useful, even for touch UIs, I wrote a simple wrapper / adapter or whatever you want to call it that enables using a … Continue reading

Posted in Qt/QML, Snippets | Tagged , , , , , , , | 2 Comments