Qt Components Hildon  0.20
QML components for Maemo5 with Hildon styling.
 All Classes Functions Properties Groups Pages

Introduction

Qt Components Hildon is a set of QML components that enables programmers to create Maemo5 applications with Hildon styling using QML.

Getting Started

Source Code

The source code can be found at GitHub.

Installation

The latest version of Qt Components Hildon can be installed from the Extras-Devel repository.

Hello World!

Below is the classic 'Hello World!' using Qt Components Hildon:

import QtQuick 1.0
import org.hildon.components 1.0
Window {
id: window
title: qsTr("Hello World Example")
visible: true
anchors.centerIn: parent
text: qsTr("Hello World!")
}
}

More complete examples can be found in the examples subdirectory of the source code at GitHub.