Hildon-Extras

(HeAboutDialog)
(HeFullscreenButton)
Line 38: Line 38:
This button can be very handy for developers who would like to provide some description about the functionality of a check box.
This button can be very handy for developers who would like to provide some description about the functionality of a check box.
 +
 +
[[Image:HeFullscreenButton.png|Thumb|The HeFullScreenButton]]
=== HeFullscreenButton ===
=== HeFullscreenButton ===
HeFullscreenButton is a button to '''leave''' full screen mode. It is visible after the user touched the screen or pressed a key and it vanishes after 5 seconds of inactivity.
HeFullscreenButton is a button to '''leave''' full screen mode. It is visible after the user touched the screen or pressed a key and it vanishes after 5 seconds of inactivity.
-
 
-
[[Image:HeFullscreenButton.png]]
 
=== HeSimpleColorDialog ===
=== HeSimpleColorDialog ===

Revision as of 14:37, 19 July 2010

Hildon-Extras is a set of community-contributed widgets (that's GTK+ widgets, not Desktop widgets) and dialogs that can be used by application developers to provide a usable, well-balanced interface. Some of these widgets provide functionality that the "stock" Hildon widgets don't provide, and some dialogs are touch-friendly versions of existing dialogs in GTK+ and/or Hildon.

Contents

List of applications using Hildon-Extras

Widget Gallery

The about dialog from MaePad

HeAboutDialog

The HeAboutDialog is a replacement for GtkAboutDialog and provides a finger-friendly, good-looking about dialog with optional buttons for:

  • Project website
  • Bug tracker ("Enter new bug")
  • Donations page

There is a wrapper that can be used by Qt-based applications for this dialog in QtHeWrapper.

If you are writing a Python application, you might be interested in the Python port of HeAboutDialog: Download about.py

An example check button

HeCheckButton

HeCheckButton is a check button with primary and secondary labels. The standard HildonCheckButton supports only one label.

This button can be very handy for developers who would like to provide some description about the functionality of a check box.

The HeFullScreenButton

HeFullscreenButton

HeFullscreenButton is a button to leave full screen mode. It is visible after the user touched the screen or pressed a key and it vanishes after 5 seconds of inactivity.

HeSimpleColorDialog

This dialog provides a finger-friendly, limited list of colors (a Tango-ish color palette) for the user to choose from. Especially useful when the color selection does not have to be "that special shade of green" but rather "a nice green" (for example to colorize categories or items).

Example code and use cases:

  • MaePad uses it for coloring the text of checklist items and for the color in sketches (src/ui/callbacks.c)

HeColorDialog

Let the user select a color by selecting the intensity of the red, green and blue channel. Also provides hex input/output of the color.

Image:HeColorDialog.png

HeFontDialog

Lets the user choose a font together with a font size. It also offers bold and italic styles.

Image:HeFontDialog.png

HeColorButton

On tapping the HeColorButton opens the HeColorDialog and lets the user select a color. This color is then displayed on the HeColorButton.

Image:HeColorButton.png

HeFontButton

On tapping the HeFontButton displays a HeFontDialog that lets the user select a font. The selected font is then displayed on the HeFontButton.

Image:HeFontButton.png