Legacy Maemo 5 Documentation/Graphical UI Tutorial/Controls

(wikify slightly)
 
(11 intermediate revisions not shown)
Line 1: Line 1:
-
= Controls =
+
{{Legacy documentation}}
 +
 
Hildon provides a set of controls specially designed for touchscreens that allows to build simple and easy-to-use interfaces. This chapter explains how to use these widgets.
Hildon provides a set of controls specially designed for touchscreens that allows to build simple and easy-to-use interfaces. This chapter explains how to use these widgets.
== Buttons ==
== Buttons ==
-
A Hildon application can use several types of buttons. Hildon provides specialized buttons derived from GtkButton which provide additional commodities specific to the Hildon framework. Using GtkButtons and GtkToggleButtons is also recommended.
+
 
 +
A Hildon application can use several types of buttons. Hildon provides specialized buttons derived from GtkButton which provide additional commodities specific to the Hildon framework. Using <code>GtkButton</code>s and <code>GtkToggleButton</code>s is also recommended.
===Hildon Button===
===Hildon Button===
-
HildonButton is a GtkButton which usually contains two labels, title and value. It can also include an image.
 
-
To create a HildonButton, use the following functions:
+
<code>HildonButton</code> is a <code>GtkButton</code> which usually contains two labels: <code>title</code> and <code>value</code>. It can also include an image.
 +
 
 +
To create a <code>HildonButton</code>, use the following functions:
-
<tt>GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_button_new</font></span>'''</span>               <span><font color="#990000">(</font></span>HildonSizeType size<span><font color="#990000">,</font></span>
+
<source lang="c">
-
                                              HildonButtonArrangement arrangement<span><font color="#990000">);</font></span>
+
GtkWidget*  hildon_button_new              (HildonSizeType size,
-
GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_button_new_with_text</font></span>'''</span>     <span><font color="#990000">(</font></span>HildonSizeType size<span><font color="#990000">,</font></span>
+
                                            HildonButtonArrangement arrangement);
-
                                              HildonButtonArrangement arrangement<span><font color="#990000">,</font></span>
+
GtkWidget*  hildon_button_new_with_text    (HildonSizeType size,
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>title<span><font color="#990000">,</font></span>
+
                                            HildonButtonArrangement arrangement,
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>value<span><font color="#990000">)</font></span>
+
                                            const gchar *title,
-
</tt>
+
                                            const gchar *value);
 +
</source>
-
Note that in the creation of a HildonButton you must indicate the value for the properties "size" and "arrangement", choosing a Hildon size and a horizontal or vertical arrangement of the labels.
+
Note that in the creation of a <code>HildonButton</code> you must indicate the value for the properties "<code>size</code>" and "<code>arrangement</code>", choosing a [[Legacy Maemo 5 Documentation/Graphical UI Tutorial/Additions to GTK+#Hildon size types|Hildon size]] and a horizontal or vertical arrangement of the labels.
-
Both labels can be set and retrieved by using the following convenience functions.
+
You can set and retrieve both labels by using the following convenience functions:
-
<tt><span><font color="#009900">void</font></span>       <span>'''<span><font color="#000000">hildon_button_set_title</font></span>'''</span>         <span><font color="#990000">(</font></span>HildonButton <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000">,</font></span>
+
<source lang="c">
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>title<span><font color="#990000">);</font></span>
+
void        hildon_button_set_title        (HildonButton *button,
-
<span><font color="#009900">void</font></span>       <span>'''<span><font color="#000000">hildon_button_set_value</font></span>'''</span>         <span><font color="#990000">(</font></span>HildonButton <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000">,</font></span>
+
                                            const gchar *title);
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>value<span><font color="#990000">);</font></span>
+
void        hildon_button_set_value        (HildonButton *button,
-
<span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_button_get_title</font></span>'''</span>       <span><font color="#990000">(</font></span>HildonButton <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000">);</font></span>
+
                                            const gchar *value);
-
<span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_button_get_value</font></span>'''</span>       <span><font color="#990000">(</font></span>HildonButton <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000">);</font></span>
+
const gchar* hildon_button_get_title        (HildonButton *button);
-
</tt>
+
const gchar* hildon_button_get_value        (HildonButton *button);
 +
</source>
-
Alternatively, use the following function to set both labels of a HildonButton:
+
Alternatively, use the following function to set both labels of a <code>HildonButton</code>:
-
<tt><span><font color="#009900">void</font></span>       <span>'''<span><font color="#000000">hildon_button_set_text</font></span>'''</span>         <span><font color="#990000">(</font></span>HildonButton <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000">,</font></span>
+
<source lang="c">
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>title<span><font color="#990000">,</font></span>
+
void        hildon_button_set_text          (HildonButton *button,
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>value<span><font color="#990000">);</font></span>
+
                                            const gchar *title,
-
</tt>
+
                                            const gchar *value);
 +
</source>
-
To add images to HildonButtons, use the following functions to set and retrieve the current image: <code>hildon_button_set_image()</code> and <code>hildon_button_get_image()</code>.
+
To add images to <code>HildonButton</code>s, use the following functions to set and retrieve the current image: <code>hildon_button_set_image()</code> and <code>hildon_button_get_image()</code>.
You can also set the position of the image.
You can also set the position of the image.
-
<tt><span><font color="#009900">void</font></span>       <span>'''<span><font color="#000000">hildon_button_set_image_position</font></span>'''</span> <span><font color="#990000">(</font></span>HildonButton <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000">,</font></span>
+
<source lang="c">
-
                                              GtkPositionType position<span><font color="#990000">);</font></span>
+
void        hildon_button_set_image_position (HildonButton *button,
-
</tt>
+
                                              GtkPositionType position);
 +
</source>
-
Currently supported positions are GTK_POS_LEFT or GTK_POS_RIGHT.
+
Currently supported positions are <code>GTK_POS_LEFT</code> or <code>GTK_POS_RIGHT</code>.
-
The visual style (color, fonts, etc) of a HildonButton can be changed by using the function <code>hildon_button_set_style()</code>. Use HILDON_BUTTON_STYLE_NORMAL to make it look like a normal HildonButton, or HILDON_BUTTON_STYLE_PICKER to make it look like a HildonPickerButton.
+
The visual style (color, fonts, etc.) of a <code>HildonButton</code> can be changed by using the function <code>hildon_button_set_style()</code>. Use <code>HILDON_BUTTON_STYLE_NORMAL</code> to make it look like a normal <code>HildonButton</code>, or <code>HILDON_BUTTON_STYLE_PICKER</code> to make it look like a <code>HildonPickerButton</code>.
-
The next simple example shows how to create a HildonButton, set the label text and add an image.
+
The next simple example shows how to create a <code>HildonButton</code>, set the label text and add an image.
'''Example 7.1. Example of a Hildon button with a label and an image'''
'''Example 7.1. Example of a Hildon button with a label and an image'''
-
<tt>GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>
+
<source lang="c">
-
<span>'''<span><font color="#000000">create_button</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#009900">void</font></span><span><font color="#990000">)</font></span>
+
GtkWidget *
-
<span><font color="#FF0000">{</font></span>
+
create_button (void)
-
    GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
{
-
    GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>image<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
    GtkWidget *button;
-
    <span>''<span><font color="#9A1900">/* Create a hildon button */</font></span>''</span>
+
    GtkWidget *image;
-
    button <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_button_new</font></span>'''</span> <span><font color="#990000">(</font></span>HILDON_SIZE_AUTO_WIDTH <span><font color="#990000"><nowiki>|</nowiki></font></span> HILDON_SIZE_FINGER_HEIGHT<span><font color="#990000">,</font></span>
+
    /* Create a hildon button */
-
                                HILDON_BUTTON_ARRANGEMENT_VERTICAL<span><font color="#990000">);</font></span>
+
    button = hildon_button_new (HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT,
-
    <span>''<span><font color="#9A1900">/* Set labels value */</font></span>''</span>
+
                                HILDON_BUTTON_ARRANGEMENT_VERTICAL);
-
    <span>'''<span><font color="#000000">hildon_button_set_text</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">HILDON_BUTTON</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">),</font></span> <span><font color="#FF0000">"Some title"</font></span><span><font color="#990000">,</font></span> <span><font color="#FF0000">"Some value"</font></span><span><font color="#990000">);</font></span>
+
    /* Set labels value */
-
    <span>''<span><font color="#9A1900">/* Set image */</font></span>''</span>
+
    hildon_button_set_text (HILDON_BUTTON (button), "Some title", "Some value");
-
    image <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">gtk_image_new_from_stock</font></span>'''</span> <span><font color="#990000">(</font></span>GTK_STOCK_INFO<span><font color="#990000">,</font></span> GTK_ICON_SIZE_BUTTON<span><font color="#990000">);</font></span>
+
    /* Set image */
-
    <span>'''<span><font color="#000000">hildon_button_set_image</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">HILDON_BUTTON</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">),</font></span> image<span><font color="#990000">);</font></span>
+
    image = gtk_image_new_from_stock (GTK_STOCK_INFO, GTK_ICON_SIZE_BUTTON);
-
    <span>'''<span><font color="#000000">hildon_button_set_image_position</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">HILDON_BUTTON</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">),</font></span> GTK_POS_RIGHT<span><font color="#990000">);</font></span>
+
    hildon_button_set_image (HILDON_BUTTON (button), image);
-
    <span>'''<span><font color="#0000FF">return</font></span>'''</span> button<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
    hildon_button_set_image_position (HILDON_BUTTON (button), GTK_POS_RIGHT);
-
<span><font color="#FF0000">}</font></span>
+
    return button;
-
</tt>
+
}
 +
</source>
===Hildon Check Button===
===Hildon Check Button===
-
HildonCheckButton is a button that contains a label and a check box. The check box toggles between checked or unchecked.
 
-
To create a HildonCheckButton:
+
<code>HildonCheckButton</code> is a button that contains a label and a check box. The check box toggles between checked or unchecked.
-
<tt> GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_check_button_new</font></span>'''</span>         <span><font color="#990000">(</font></span>HildonSizeType size<span><font color="#990000">);</font></span>
+
To create a <code>HildonCheckButton</code>:
-
</tt>
+
 
 +
<source lang="c">
 +
GtkWidget*  hildon_check_button_new        (HildonSizeType size);
 +
</source>
Note that, again, you must specify the size of the button.
Note that, again, you must specify the size of the button.
-
The current state of the button can be retrieve or set with the following functions, respectively.
+
You can retrieve or set the current state of the button with the following functions, respectively:
-
<tt>gboolean    <span>'''<span><font color="#000000">hildon_check_button_get_active</font></span>'''</span> <span><font color="#990000">(</font></span>HildonCheckButton <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000">);</font></span>
+
<source lang="c">
-
<span><font color="#009900">void</font></span>       <span>'''<span><font color="#000000">hildon_check_button_set_active</font></span>'''</span> <span><font color="#990000">(</font></span>HildonCheckButton <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000">,</font></span>
+
gboolean    hildon_check_button_get_active  (HildonCheckButton *button);
-
                                              gboolean is_active<span><font color="#990000">);</font></span>
+
void        hildon_check_button_set_active  (HildonCheckButton *button,
-
</tt>
+
                                            gboolean is_active);
 +
</source>
-
The signal "toggled" is emitted when the state of the button changes. A handler could be attached to this signal if a further action is required.
+
The signal "<code>toggled</code>" is emitted when the state of the button changes. A handler can be attached to this signal if a further action is required.
-
Here is a simple example which creates a check button and a simple callback to handle the signal "toggled".
+
Here is a simple example which creates a check button and a simple callback to handle the signal "<code>toggled</code>".
'''Example 7.2. Example of a Hildon check button'''
'''Example 7.2. Example of a Hildon check button'''
-
<tt><span><font color="#009900">void</font></span>
+
<source lang="c">
-
<span>'''<span><font color="#000000">button_toggled</font></span>'''</span> <span><font color="#990000">(</font></span>HildonCheckButton <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000">,</font></span> gpointer user_data<span><font color="#990000">)</font></span>
+
void
-
<span><font color="#FF0000">{</font></span>
+
button_toggled (HildonCheckButton *button, gpointer user_data)
-
    gboolean active<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
{
-
    active <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_check_button_get_active</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">);</font></span>
+
    gboolean active;
-
    <span>'''<span><font color="#0000FF">if</font></span>'''</span> <span><font color="#990000">(</font></span>active<span><font color="#990000">)</font></span>
+
    active = hildon_check_button_get_active (button);
-
        <span>'''<span><font color="#000000">g_debug</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#FF0000">"Button is active"</font></span><span><font color="#990000">);</font></span>
+
    if (active)
-
    <span>'''<span><font color="#0000FF">else</font></span>'''</span>
+
      g_debug ("Button is active");
-
        <span>'''<span><font color="#000000">g_debug</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#FF0000">"Button is not active"</font></span><span><font color="#990000">);</font></span>
+
    else
-
<span><font color="#FF0000">}</font></span>
+
      g_debug ("Button is not active");
-
GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>
+
}
-
<span>'''<span><font color="#000000">create_button</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#009900">void</font></span><span><font color="#990000">)</font></span>
+
GtkWidget *
-
<span><font color="#FF0000">{</font></span>
+
create_button (void)
-
    GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
{
-
    button <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_check_button_new</font></span>'''</span> <span><font color="#990000">(</font></span>HILDON_SIZE_AUTO<span><font color="#990000">);</font></span>
+
    GtkWidget *button;
-
    <span>'''<span><font color="#000000">gtk_button_set_label</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_BUTTON</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">),</font></span> <span><font color="#FF0000">"Click me"</font></span><span><font color="#990000">);</font></span>
+
    button = hildon_check_button_new (HILDON_SIZE_AUTO);
-
    <span>'''<span><font color="#000000">g_signal_connect</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">,</font></span> <span><font color="#FF0000">"toggled"</font></span><span><font color="#990000">,</font></span> <span>'''<span><font color="#000000">G_CALLBACK</font></span>'''</span> <span><font color="#990000">(</font></span>button_toggled<span><font color="#990000">),</font></span> NULL<span><font color="#990000">);</font></span>
+
    gtk_button_set_label (GTK_BUTTON (button), "Click me");
-
    <span>'''<span><font color="#0000FF">return</font></span>'''</span> button<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
    g_signal_connect (button, "toggled", G_CALLBACK (button_toggled), NULL);
-
<span><font color="#FF0000">}</font></span>
+
    return button;
-
</tt>
+
}
-
 
+
</source>
==Using Gtk Buttons and Toggles==
==Using Gtk Buttons and Toggles==
-
As was said above, apart from Hildon specific buttons, the use of GtkButton and GtkToggleButton is also adviced in the Hildon framework.
+
 
 +
As was said above, apart from Hildon specific buttons, use <code>GtkButton</code> and <code>GtkToggleButton</code> also in the Hildon framework.
===GtkButton===
===GtkButton===
-
If only a label is needed, you do not need to use HildonButtons and a GtkButton can be used instead. You can use it as you would do in a GTK application. The only change is the creation function that you should use:
 
-
<tt>GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span>  <span>'''<span><font color="#000000">hildon_gtk_button_new</font></span>'''</span>           <span><font color="#990000">(</font></span>HildonSizeType size<span><font color="#990000">);</font></span>
+
If only a label is needed, you do not need to use <code>HildonButton</code>s and a <code>GtkButton</code> can be used instead. You can use it as you would do in a GTK+ application. The only change is the creation function that you must use:
-
</tt>
+
 
 +
<source lang="c">
 +
GtkWidget*  hildon_gtk_button_new          (HildonSizeType size);
 +
</source>
This alternative constructor allows you to set a Hildon size for the newly create function.
This alternative constructor allows you to set a Hildon size for the newly create function.
===GtkToggleButton===
===GtkToggleButton===
-
To create a GtkToggleButton in a Hildon application you should use:
 
-
<tt>GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_gtk_toggle_button_new</font></span>'''</span>   <span><font color="#990000">(</font></span>HildonSizeType size<span><font color="#990000">);</font></span>
+
To create a <code>GtkToggleButton</code> in a Hildon application you should use:
-
</tt>
+
 
 +
<source lang="c">
 +
GtkWidget*  hildon_gtk_toggle_button_new    (HildonSizeType size);
 +
</source>
==GtkRadioButton==
==GtkRadioButton==
-
To create a GtkRadioButton in a Hildon application you should use:
 
-
<tt>GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_gtk_radio_button_new</font></span>'''</span>     <span><font color="#990000">(</font></span>HildonSizeType size<span><font color="#990000">,</font></span>
+
To create a <code>GtkRadioButton</code> in a Hildon application, use:
-
                                              GSList <span><font color="#990000"><nowiki>*</nowiki></font></span>group<span><font color="#990000">);</font></span>
+
 
-
</tt>
+
<source lang="c">
 +
GtkWidget*  hildon_gtk_radio_button_new    (HildonSizeType size,
 +
                                            GSList *group);
 +
</source>
The most common use case of this type of buttons in a Hildon application is as filters in a application menu. For more information, see section Touch View Menu.
The most common use case of this type of buttons in a Hildon application is as filters in a application menu. For more information, see section Touch View Menu.
==Text display and handling ==
==Text display and handling ==
-
Text entry fields are used for entering one or more lines of plain text. Use a HildonEntry for a single-line text input or HildonTextView if you need a multi-line text input.
+
 
 +
Text entry fields are used for entering one or more lines of plain text. Use a <code>HildonEntry</code> for a single-line text input or <code>HildonTextView</code> if you need a multi-line text input.
===Hildon Text Entry===
===Hildon Text Entry===
-
The HildonEntry is a GTK+ widget which represents a text entry. It is derived from the GtkEntry widget and provides additional commodities specific to the Hildon framework.
 
-
The main additional feature is placeholder text to display if the entry is empty and not in focus.
+
The <code>HildonEntry</code> is a GTK+ widget which represents a text entry. It is derived from the <code>GtkEntry</code> widget and provides additional commodities specific to the Hildon framework.
 +
 
 +
The main additional feature is a placeholder text to display if the entry is empty and not in focus.
-
Creating a new HildonEntry:
+
Creating a new <code>HildonEntry</code>:
-
<tt>GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_entry_new</font></span>'''</span>               <span><font color="#990000">(</font></span>HildonSizeType size<span><font color="#990000">);</font></span>
+
<source lang="c">
-
</tt>
+
GtkWidget*  hildon_entry_new                (HildonSizeType size);
 +
</source>
-
Note that the creation function needs to specify a size from HildonSizeType
+
Note that the creation function needs to specify a size from <code>HildonSizeType</code>.
The placeholder is stored as a property. To set it, use the following convenience function:
The placeholder is stored as a property. To set it, use the following convenience function:
-
<tt><span><font color="#009900">void</font></span>       <span>'''<span><font color="#000000">hildon_entry_set_placeholder</font></span>'''</span>   <span><font color="#990000">(</font></span>HildonEntry <span><font color="#990000"><nowiki>*</nowiki></font></span>entry<span><font color="#990000">,</font></span>
+
<source lang="c">
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>text<span><font color="#990000">);</font></span>
+
void        hildon_entry_set_placeholder    (HildonEntry *entry,
-
</tt>
+
                                            const gchar *text);
 +
</source>
Here's a very simple example showing how to create a HindonEntry.
Here's a very simple example showing how to create a HindonEntry.
Line 168: Line 190:
'''Example 7.3. Example of a Hildon entry'''
'''Example 7.3. Example of a Hildon entry'''
-
<tt>GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>
+
<source lang="c">
-
<span>'''<span><font color="#000000">create_entry</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#009900">void</font></span><span><font color="#990000">)</font></span>
+
GtkWidget *
-
<span><font color="#FF0000">{</font></span>
+
create_entry (void)
-
    GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>entry<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
{
-
    entry <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_entry_new</font></span>'''</span> <span><font color="#990000">(</font></span>HILDON_SIZE_AUTO<span><font color="#990000">);</font></span>
+
    GtkWidget *entry;
-
    <span>'''<span><font color="#000000">hildon_entry_set_placeholder</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">HILDON_ENTRY</font></span>'''</span> <span><font color="#990000">(</font></span>entry<span><font color="#990000">),</font></span>
+
    entry = hildon_entry_new (HILDON_SIZE_AUTO);
-
                          <span><font color="#FF0000">"First name"</font></span><span><font color="#990000">);</font></span>
+
    hildon_entry_set_placeholder (HILDON_ENTRY (entry),
-
    <span>'''<span><font color="#0000FF">return</font></span>'''</span> entry<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
                          "First name");
-
<span><font color="#FF0000">}</font></span>
+
    return entry;
-
</tt>
+
}
 +
</source>
===Hildon Text Area===
===Hildon Text Area===
-
The HildonTextView is a GTK+ widget which represents a text area in Hildon applications. It is derived from the GtkTextView widget and provides additional commodities specific to the Hildon framework.
+
The <code>HildonTextView</code> is a GTK+ widget which represents a text area in Hildon applications. It is derived from the <code>GtkTextView</code> widget and provides additional commodities specific to the Hildon framework.
-
Create a HildonTextView:
+
Create a <code>HildonTextView</code>:
-
<tt>GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_text_view_new</font></span>'''</span>           <span><font color="#990000">(</font></span><span><font color="#009900">void</font></span><span><font color="#990000">);</font></span>
+
<source lang="c">
-
</tt>
+
GtkWidget*  hildon_text_view_new            (void);
 +
</source>
-
Like for the HildonTextEntry presented above, a placeholder can be stored as well using the function .
+
Like for the <code>HildonTextEntry</code> presented above, you can store a placeholder as well using the function.
-
<tt><span><font color="#009900">void</font></span>       <span>'''<span><font color="#000000">hildon_text_view_set_placeholder</font></span>'''</span>   <span><font color="#990000">(</font></span>HildonEntry <span><font color="#990000"><nowiki>*</nowiki></font></span>entry<span><font color="#990000">,</font></span>
+
<source lang="c">
-
                                                  <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>text<span><font color="#990000">);</font></span>
+
void        hildon_text_view_set_placeholder    (HildonTextView *text_view,
-
</tt>
+
                                                const gchar *text);
 +
</source>
-
The text that is being edited with a HildonTextView is represented by a object GtkTextBuffer. The following functions can be used to set and retrieve the buffer associated with a HildonTextView.
+
The text that is being edited with a <code>HildonTextView</code> is represented by a object <code>GtkTextBuffer</code>. The following functions can be used to set and retrieve the buffer associated with a <code>HildonTextView</code>.
-
<tt><span><font color="#009900">void</font></span>       <span>'''<span><font color="#000000">hildon_text_view_set_buffer</font></span>'''</span>         <span><font color="#990000">(</font></span>HildonTextView <span><font color="#990000"><nowiki>*</nowiki></font></span>text_view<span><font color="#990000">,</font></span>
+
<source lang="c">
-
                                                  GtkTextBuffer <span><font color="#990000"><nowiki>*</nowiki></font></span>buffer<span><font color="#990000">);</font></span>
+
void        hildon_text_view_set_buffer        (HildonTextView *text_view,
-
GtkTextBuffer<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_text_view_get_buffer</font></span>'''</span>     <span><font color="#990000">(</font></span>HildonTextView <span><font color="#990000"><nowiki>*</nowiki></font></span>text_view<span><font color="#990000">);</font></span>
+
                                                GtkTextBuffer *buffer);
-
</tt>
+
GtkTextBuffer* hildon_text_view_get_buffer      (HildonTextView *text_view);
 +
</source>
-
Here is an example that shows how to create a HildonTextView and how to set its placeholder. Also, the buffer is retrieved and a function is set as a handler to the "changed" of the buffer. The handler simply gets the text from the HildonTextView's buffer and prints it.
+
Here is an example that shows how to create a <code>HildonTextView</code> and how to set its placeholder. Also, the buffer is retrieved and a function is set as a handler to the "changed" of the buffer. The handler simply gets the text from the <code>HildonTextView</code>'s buffer and prints it.
'''Example 7.4. Example of a Hildon text view with a placeholder'''
'''Example 7.4. Example of a Hildon text view with a placeholder'''
-
<tt><span>'''<span><font color="#0000FF">static</font></span>'''</span> <span><font color="#009900">void</font></span>
+
<source lang="c">
-
<span>'''<span><font color="#000000">text_changed</font></span>'''</span>                                    <span><font color="#990000">(</font></span>GtkTextBuffer <span><font color="#990000"><nowiki>*</nowiki></font></span>buffer<span><font color="#990000">,</font></span>
+
static void
-
                                                  gpointer     <span><font color="#990000"><nowiki>*</nowiki></font></span>user_data<span><font color="#990000">)</font></span>
+
text_changed (GtkTextBuffer *buffer,  
-
<span><font color="#FF0000">{</font></span>
+
              gpointer *user_data)
-
    gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>text<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
{
-
    GtkTextIter start<span><font color="#990000">,</font></span> end<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
    gchar *text;
-
    <span>'''<span><font color="#000000">gtk_text_buffer_get_start_iter</font></span>'''</span> <span><font color="#990000">(</font></span>buffer<span><font color="#990000">,</font></span> <span><font color="#990000">&amp;</font></span>start<span><font color="#990000">);</font></span>
+
    GtkTextIter start, end;
-
    <span>'''<span><font color="#000000">gtk_text_buffer_get_end_iter</font></span>'''</span> <span><font color="#990000">(</font></span>buffer<span><font color="#990000">,</font></span> <span><font color="#990000">&amp;</font></span>end<span><font color="#990000">);</font></span>
+
    gtk_text_buffer_get_start_iter (buffer, &start);
-
    text <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">gtk_text_buffer_get_text</font></span>'''</span> <span><font color="#990000">(</font></span>buffer<span><font color="#990000">,</font></span> <span><font color="#990000">&amp;</font></span>start<span><font color="#990000">,</font></span> <span><font color="#990000">&amp;</font></span>end<span><font color="#990000">,</font></span> FALSE<span><font color="#990000">);</font></span>
+
    gtk_text_buffer_get_end_iter (buffer, &end);
-
    <span>'''<span><font color="#000000">g_debug</font></span>'''</span> <span><font color="#990000">(</font></span>text<span><font color="#990000">);</font></span>
+
    text = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
-
<span><font color="#FF0000">}</font></span>
+
    g_debug (text);
-
GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>
+
}
-
<span>'''<span><font color="#000000">create_text_view</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#009900">void</font></span><span><font color="#990000">)</font></span>
+
GtkWidget *
-
<span><font color="#FF0000">{</font></span>
+
create_text_view (void)
-
    GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>text_view<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
{
-
    text_view <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_text_view_new</font></span>'''</span><span><font color="#990000">();</font></span>
+
    GtkWidget *text_view;
-
    <span>'''<span><font color="#000000">hildon_text_view_set_placeholder</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">HILDON_TEXT_VIEW</font></span>'''</span> <span><font color="#990000">(</font></span>text_view<span><font color="#990000">),</font></span>
+
    GtkTextBuffer *buffer;
-
                                      <span><font color="#FF0000">"Type some text here"</font></span><span><font color="#990000">);</font></span>
+
    text_view = hildon_text_view_new();
-
    buffer <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_text_view_get_buffer</font></span>'''</span> <span><font color="#990000">(</font></span>textview<span><font color="#990000">);</font></span>
+
    hildon_text_view_set_placeholder (HILDON_TEXT_VIEW (text_view),
-
    <span>'''<span><font color="#000000">g_signal_connect</font></span>'''</span> <span><font color="#990000">(</font></span>buffer<span><font color="#990000">,</font></span>
+
                                      "Type some text here");
-
                      <span><font color="#FF0000">"changed"</font></span><span><font color="#990000">,</font></span>
+
    buffer = hildon_text_view_get_buffer(HILDON_TEXT_VIEW(text_view));
-
                      <span>'''<span><font color="#000000">G_CALLBACK</font></span>'''</span> <span><font color="#990000">(</font></span>text_changed<span><font color="#990000">),</font></span>
+
    g_signal_connect (buffer,
-
                      NULL<span><font color="#990000">);</font></span>
+
                      "changed",
-
    <span>'''<span><font color="#0000FF">return</font></span>'''</span> text_view<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
                      G_CALLBACK (text_changed),
-
<span><font color="#FF0000">}</font></span>
+
                      NULL);
-
</tt>
+
    return text_view;
 +
}
 +
</source>
===Warning===
===Warning===
-
Although HildonTextView is derived from GtkTextView, <code>gtk_text_view_get_buffer()</code> and<code> gtk_text_view_set_buffer()</code> must never be used to get/set the buffer in this widget, <code>hildon_text_view_get_buffer()</code> and <code>hildon_text_view_set_buffer()</code> must be used instead.
+
Although <code>HildonTextView</code> is derived from <code>GtkTextView</code>, <code>gtk_text_view_get_buffer()</code> and<code> gtk_text_view_set_buffer()</code> must never be used to get/set the buffer in this widget, <code>hildon_text_view_get_buffer()</code> and <code>hildon_text_view_set_buffer()</code> must be used instead.
-
 
+
==Notification widgets ==
==Notification widgets ==
-
To cover the main use cases regarding notification of users, Hildon provides banners and notes. Banner widgets display a text information during a certain period of time. Notes are specialized GtkDialogs that need a small amount of input from the user.
+
 
 +
To cover the main use cases regarding notification of users, Hildon provides banners and notes. Banner widgets display a text information during a certain period of time. Notes are specialized <code>GtkDialog</code>s that need a small amount of input from the user.
===Banners===
===Banners===
-
A HildonBanner is useful to display information which does not need any user response. This widget automatically disappears after a certain time period.
+
 
 +
A <code>HildonBanner</code> is useful to display information which does not need any user response. This widget automatically disappears after a certain time period.
To create and show a banner, use the following function:
To create and show a banner, use the following function:
-
<tt>GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_banner_show_information</font></span>'''</span> <span><font color="#990000">(</font></span>GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>widget<span><font color="#990000">,</font></span>
+
<source lang="c">
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>icon_name<span><font color="#990000">,</font></span>
+
GtkWidget*  hildon_banner_show_information  (GtkWidget *widget,
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>text<span><font color="#990000">);</font></span>
+
                                            const gchar *icon_name,
-
GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_banner_show_informationf</font></span>'''</span> <span><font color="#990000">(</font></span>GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>widget<span><font color="#990000">,</font></span>
+
                                            const gchar *text);
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>icon_name<span><font color="#990000">,</font></span>
+
GtkWidget*  hildon_banner_show_informationf (GtkWidget *widget,
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>format<span><font color="#990000">,</font></span>
+
                                            const gchar *icon_name,
-
                                              <span><font color="#990000">...);</font></span>
+
                                            const gchar *format,
-
GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> hildon_banner_show_information_with_markup
+
                                            ...);
-
                                            <span><font color="#990000">(</font></span>GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>widget<span><font color="#990000">,</font></span>
+
GtkWidget*  hildon_banner_show_information_with_markup
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>icon_name<span><font color="#990000">,</font></span>
+
                                            (GtkWidget *widget,
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>markup<span><font color="#990000">);</font></span>
+
                                            const gchar *icon_name,
-
</tt>
+
                                            const gchar *markup);
 +
</source>
-
All functions above require a widget as an argument that should be a pointer to the owner widget of the banner. Usually, the owner is the window that represents the currently displayed view.
+
All functions above require a widget as an argument that must be a pointer to the owner widget of the banner. Usually, the owner is the window that represents the currently displayed view.
Function <code>hildon_banner_show_information()</code> shows a banner with the given text.
Function <code>hildon_banner_show_information()</code> shows a banner with the given text.
Line 267: Line 297:
===Warning===
===Warning===
-
Currently, icons are not displayed in banners, so any value that you pass as the icon_name is ignored.
 
-
The period of time after the banner automatically disappear is stored in the property "timeout" (in miliseconds). A convenience function to set this property is provided:
+
Currently, icons are not displayed in banners, so any value that you pass as the <code>icon_name</code> is ignored.
-
<tt><span><font color="#009900">void</font></span>       <span>'''<span><font color="#000000">hildon_banner_set_timeout</font></span>'''</span>       <span><font color="#990000">(</font></span>HildonBanner <span><font color="#990000"><nowiki>*</nowiki></font></span>self<span><font color="#990000">,</font></span>
+
The period of time after the banner automatically disappear is stored in the property "<code>timeout</code>" (in miliseconds). A convenience function to set this property is provided:
-
                                              guint timeout<span><font color="#990000">);</font></span>
+
 
-
</tt>
+
<source lang="c">
 +
void        hildon_banner_set_timeout      (HildonBanner *self,
 +
                                            guint timeout);
 +
</source>
Here is a simple example showing how to setup and show an informational banner.
Here is a simple example showing how to setup and show an informational banner.
Line 279: Line 311:
'''Example 7.5. Setting up an informational banner'''
'''Example 7.5. Setting up an informational banner'''
-
<tt>    GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> banner<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
<source lang="c">
-
    <span>''<span><font color="#9A1900">/* Create a banner with a markup */</font></span>''</span>
+
GtkWidget* banner;
-
    banner <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_banner_show_information_with_markup</font></span>'''</span> <span><font color="#990000">(</font></span>widget<span><font color="#990000">,</font></span>
+
/* Create a banner with a markup */
-
                                                          NULL<span><font color="#990000">,</font></span>
+
banner = hildon_banner_show_information_with_markup (widget,
-
                                                          <span><font color="#FF0000">"&lt;b&gt;Information banner&lt;/b&gt;"</font></span><span><font color="#990000">);</font></span>
+
                                                    NULL,
-
    <span>'''<span><font color="#000000">hildon_banner_set_timeout</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">HILDON_BANNER</font></span>'''</span> <span><font color="#990000">(</font></span>banner<span><font color="#990000">),</font></span> <span><font color="#993399">9000</font></span><span><font color="#990000">);</font></span>
+
                                                    "<b>Information banner</b>");
-
</tt>
+
hildon_banner_set_timeout (HILDON_BANNER (banner), 9000);
 +
</source>
===Note===
===Note===
 +
Only one timed banner can exist for each window in your application. If you spawn a new banner before the previous one has timed out, the first one is replaced.
Only one timed banner can exist for each window in your application. If you spawn a new banner before the previous one has timed out, the first one is replaced.
====Notes====
====Notes====
-
HildonNotes are GtkDialogs designed to request a small amount of input from users. Usually, notes show an information text and buttons to confirm, cancel, etc. according to their type.
+
 
 +
<code>HildonNote</code>s are <code>GtkDialog</code>s designed to request a small amount of input from users. Usually, notes show an information text and buttons to confirm and cancel, for example, according to their type.
Unlike banners, notes always need a user action, that is, notes do not disappear automatically after a period of time.
Unlike banners, notes always need a user action, that is, notes do not disappear automatically after a period of time.
-
The HildonNote widget provides functions to create and show different types of notes: information notes, confirmation notes and cancel notes.
+
The <code>HildonNote</code> widget provides functions to create and show different types of notes: information notes, confirmation notes and cancel notes.
-
<tt>GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_note_new_information</font></span>'''</span>     <span><font color="#990000">(</font></span>GtkWindow <span><font color="#990000"><nowiki>*</nowiki></font></span>parent<span><font color="#990000">,</font></span>
+
<source lang="c">
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>description<span><font color="#990000">);</font></span>
+
GtkWidget*  hildon_note_new_information    (GtkWindow *parent,
-
GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_note_new_confirmation</font></span>'''</span>   <span><font color="#990000">(</font></span>GtkWindow <span><font color="#990000"><nowiki>*</nowiki></font></span>parent<span><font color="#990000">,</font></span>
+
                                            const gchar *description);
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>description<span><font color="#990000">);</font></span>
+
GtkWidget*  hildon_note_new_confirmation    (GtkWindow *parent,
-
GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> hildon_note_new_confirmation_add_buttons
+
                                            const gchar *description);
-
                                            <span><font color="#990000">(</font></span>GtkWindow <span><font color="#990000"><nowiki>*</nowiki></font></span>parent<span><font color="#990000">,</font></span>
+
GtkWidget*  hildon_note_new_confirmation_add_buttons
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>description<span><font color="#990000">,</font></span>
+
                                            (GtkWindow *parent,
-
                                              <span><font color="#990000">...);</font></span>
+
                                            const gchar *description,
-
GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> hildon_note_new_cancel_with_progress_bar
+
                                            ...);
-
                                            <span><font color="#990000">(</font></span>GtkWindow <span><font color="#990000"><nowiki>*</nowiki></font></span>parent<span><font color="#990000">,</font></span>
+
GtkWidget*  hildon_note_new_cancel_with_progress_bar
-
                                              <span>'''<span><font color="#0000FF">const</font></span>'''</span> gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>description<span><font color="#990000">,</font></span>
+
                                            (GtkWindow *parent,
-
                                              GtkProgressBar <span><font color="#990000"><nowiki>*</nowiki></font></span>progressbar<span><font color="#990000">);</font></span>
+
                                            const gchar *description,
-
</tt>
+
                                            GtkProgressBar *progressbar);
 +
</source>
Every function to create notes receives as a parameter the parent window of the newly created note. This is important in order to allow the window manager to handle the windows properly.
Every function to create notes receives as a parameter the parent window of the newly created note. This is important in order to allow the window manager to handle the windows properly.
====Information Notes====
====Information Notes====
 +
Information notes are used to show an information to the users. This note disappears when user taps outside the note's area. Otherwise the note remains visible.
Information notes are used to show an information to the users. This note disappears when user taps outside the note's area. Otherwise the note remains visible.
-
Here's an example of how to show an information note and handle the user's answer.
+
Here is an example of how to show an information note and handle the user's answer.
'''Example 7.6. Example of a Hildon information note'''
'''Example 7.6. Example of a Hildon information note'''
-
<tt><span>'''<span><font color="#0000FF">static</font></span>'''</span> <span><font color="#009900">void</font></span>
+
<source lang="c">
-
<span>'''<span><font color="#000000">show_information_note</font></span>'''</span>                         <span><font color="#990000">(</font></span>GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>parent<span><font color="#990000">)</font></span>
+
static void
-
<span><font color="#FF0000">{</font></span>
+
show_information_note                          (GtkWidget *parent)
-
  GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>window<span><font color="#990000">,</font></span> <span><font color="#990000"><nowiki>*</nowiki></font></span>note<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
{
-
  gint response<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
  GtkWidget *window, *note;
-
  note <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_note_new_information</font></span>'''</span> <span><font color="#990000">(</font></span>NULL<span><font color="#990000">,</font></span>
+
  gint response;
-
    <span><font color="#FF0000">"Lorem ipsum dolor sit amet, consectetur adipiscing elit."</font></span>
+
  note = hildon_note_new_information (NULL,
-
    <span><font color="#FF0000">"Maecenas tristique dictum est. Aenean rhoncus aliquam mi."</font></span>
+
    "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
-
    <span><font color="#FF0000">"In hac habitasse platea dictumst."</font></span><span><font color="#990000">);</font></span>
+
    "Maecenas tristique dictum est. Aenean rhoncus aliquam mi."
-
  response <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">gtk_dialog_run</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_DIALOG</font></span>'''</span> <span><font color="#990000">(</font></span>note<span><font color="#990000">));</font></span>
+
    "In hac habitasse platea dictumst.");
-
  <span>'''<span><font color="#0000FF">if</font></span>'''</span> <span><font color="#990000">(</font></span>response <span><font color="#990000"><nowiki>==</nowiki></font></span> GTK_RESPONSE_DELETE_EVENT<span><font color="#990000">)</font></span>
+
  response = gtk_dialog_run (GTK_DIALOG (note));
-
    <span>'''<span><font color="#000000">g_debug</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#FF0000">"%s: GTK_RESPONSE_DELETE_EVENT"</font></span><span><font color="#990000">,</font></span> __FUNCTION__<span><font color="#990000">);</font></span>
+
  if (response == GTK_RESPONSE_DELETE_EVENT)
-
  <span>'''<span><font color="#000000">gtk_object_destroy</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_OBJECT</font></span>'''</span> <span><font color="#990000">(</font></span>note<span><font color="#990000">));</font></span>
+
    g_debug ("%s: GTK_RESPONSE_DELETE_EVENT", __FUNCTION__);
-
<span><font color="#FF0000">}</font></span>
+
  gtk_object_destroy (GTK_OBJECT (note));
-
</tt>
+
}
 +
</source>
====Confirmation Notes====
====Confirmation Notes====
 +
Confirmation notes show an information text that is usually a question and two buttons labelled "Yes" and "No".
Confirmation notes show an information text that is usually a question and two buttons labelled "Yes" and "No".
Line 343: Line 382:
'''Example 7.7. Example of a Hildon confirmation note'''
'''Example 7.7. Example of a Hildon confirmation note'''
-
<tt><span>'''<span><font color="#0000FF">static</font></span>'''</span> <span><font color="#009900">void</font></span>
+
<source lang="c">
-
<span>'''<span><font color="#000000">show_confirmation_note</font></span>'''</span>                         <span><font color="#990000">(</font></span>GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>parent<span><font color="#990000">)</font></span>
+
static void
-
<span><font color="#FF0000">{</font></span>
+
show_confirmation_note                          (GtkWidget *parent)
-
    GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>note<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
{
-
    gint response<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
    GtkWidget *note;
-
    note <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_note_new_confirmation</font></span>'''</span> <span><font color="#990000">(</font></span>parent<span><font color="#990000">,</font></span>
+
    gint response;
-
                                          <span><font color="#FF0000">"Do you want foo ?"</font></span><span><font color="#990000">);</font></span>
+
    note = hildon_note_new_confirmation (parent,
-
    response <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">gtk_dialog_run</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_DIALOG</font></span>'''</span> <span><font color="#990000">(</font></span>note<span><font color="#990000">));</font></span>
+
                                        "Do you want foo ?");
-
    <span>'''<span><font color="#0000FF">if</font></span>'''</span> <span><font color="#990000">(</font></span>response <span><font color="#990000"><nowiki>==</nowiki></font></span> GTK_RESPONSE_DELETE_EVENT<span><font color="#990000">)</font></span>
+
    response = gtk_dialog_run (GTK_DIALOG (note));
-
      <span>'''<span><font color="#000000">g_debug</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#FF0000">"%s: GTK_RESPONSE_DELETE_EVENT"</font></span><span><font color="#990000">,</font></span> __FUNCTION__<span><font color="#990000">);</font></span>
+
    if (response == GTK_RESPONSE_DELETE_EVENT)
-
    <span>'''<span><font color="#000000">gtk_object_destroy</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_OBJECT</font></span>'''</span> <span><font color="#990000">(</font></span>note<span><font color="#990000">));</font></span>
+
      g_debug ("%s: GTK_RESPONSE_DELETE_EVENT", __FUNCTION__);
-
<span><font color="#FF0000">}</font></span>
+
    gtk_object_destroy (GTK_OBJECT (note));
-
</tt>
+
}
 +
</source>
Alternatively, you can use <code>hildon_note_new_confirmation_add_buttons()</code> to create a confirmation note with custom buttons.
Alternatively, you can use <code>hildon_note_new_confirmation_add_buttons()</code> to create a confirmation note with custom buttons.
-
'''Example 7.8. Example of a Hildon copnfirmation note with custom buttons'''
+
'''Example 7.8. Example of a Hildon confirmation note with custom buttons'''
-
<tt><span>'''<span><font color="#0000FF">static</font></span>'''</span> <span><font color="#009900">void</font></span>
+
<source lang="c">
-
<span>'''<span><font color="#000000">show_confirmation_note</font></span>'''</span>                         <span><font color="#990000">(</font></span>GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>parent<span><font color="#990000">)</font></span>
+
static void
-
<span><font color="#FF0000">{</font></span>
+
show_confirmation_note                          (GtkWidget *parent)
-
    GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>note<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
{
-
    gint response<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
    GtkWidget *note;
-
    note <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_note_new_confirmation_add_buttons</font></span>'''</span><span><font color="#990000">(</font></span>parent<span><font color="#990000">,</font></span>
+
    gint response;
-
                                                    <span><font color="#FF0000">"Do you want foo?"</font></span><span><font color="#990000">,</font></span>
+
    note = hildon_note_new_confirmation_add_buttons(parent,
-
                                                    <span><font color="#FF0000">"ACCEPT"</font></span><span><font color="#990000">,</font></span> GTK_RESPONSE_OK<span><font color="#990000">,</font></span>
+
                                                    "Do you want foo?",
-
                                                    <span><font color="#FF0000">"CANCEL"</font></span><span><font color="#990000">,</font></span> GTK_RESPONSE_CANCEL<span><font color="#990000">,</font></span>
+
                                                    "ACCEPT", GTK_RESPONSE_OK,
-
                                                    <span><font color="#FF0000">"DELETE"</font></span><span><font color="#990000">,</font></span> GTK_RESPONSE_DELETE_EVENT<span><font color="#990000">);</font></span>
+
                                                    "CANCEL", GTK_RESPONSE_CANCEL,
-
    response <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">gtk_dialog_run</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_DIALOG</font></span>'''</span> <span><font color="#990000">(</font></span>note<span><font color="#990000">));</font></span>
+
                                                    "DELETE", GTK_RESPONSE_DELETE_EVENT,
-
    <span>'''<span><font color="#0000FF">if</font></span>'''</span> <span><font color="#990000">(</font></span>response <span><font color="#990000"><nowiki>==</nowiki></font></span> GTK_RESPONSE_DELETE_EVENT<span><font color="#990000">)</font></span>
+
                                                    NULL);
-
      <span>'''<span><font color="#000000">g_debug</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#FF0000">"%s: GTK_RESPONSE_DELETE_EVENT"</font></span><span><font color="#990000">,</font></span> __FUNCTION__<span><font color="#990000">);</font></span>
+
    response = gtk_dialog_run (GTK_DIALOG (note));
-
    <span>'''<span><font color="#000000">gtk_object_destroy</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_OBJECT</font></span>'''</span> <span><font color="#990000">(</font></span>note<span><font color="#990000">));</font></span>
+
    if (response == GTK_RESPONSE_DELETE_EVENT)
-
<span><font color="#FF0000">}</font></span>
+
      g_debug ("%s: GTK_RESPONSE_DELETE_EVENT", __FUNCTION__);
-
</tt>
+
    gtk_object_destroy (GTK_OBJECT (note));
 +
}
 +
</source>
'''Cancel Notes'''
'''Cancel Notes'''
Line 386: Line 428:
'''Example 7.9. Example of a Hildon cancel note with a progress bar'''
'''Example 7.9. Example of a Hildon cancel note with a progress bar'''
-
<tt><span>'''<span><font color="#0000FF">static</font></span>'''</span> <span><font color="#009900">void</font></span>
+
<source lang="c">
-
<span>'''<span><font color="#000000">show_information_note</font></span>'''</span>                         <span><font color="#990000">(</font></span>GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>parent<span><font color="#990000">)</font></span>
+
static void
-
<span><font color="#FF0000">{</font></span>
+
show_information_note                          (GtkWidget *parent)
-
  GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>note
+
{
-
  GtkProgressBar <span><font color="#990000"><nowiki>*</nowiki></font></span>progressbar
+
  GtkWidget *note
-
  gint response<span><font color="#990000"><nowiki>;</nowiki></font></span>
+
  GtkProgressBar *progressbar
-
  progressbar <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">gtk_progress_bar_new</font><font color="#990000">()</font></span>'''
+
  gint response;
-
  note <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_note_new_cancel_with_progress_bar</font></span>'''</span> <span><font color="#990000">(</font></span>parent<span><font color="#990000">,</font></span>
+
  progressbar = gtk_progress_bar_new()
-
                                                  <span><font color="#FF0000">"A large task is happening"</font></span>
+
  note = hildon_note_new_cancel_with_progress_bar (parent,
-
                                                  <span><font color="#990000">progressbar</font></span><span><font color="#990000">);</font></span>
+
                                                  "A large task is happening"
-
  response <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">gtk_dialog_run</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_DIALOG</font></span>'''</span> <span><font color="#990000">(</font></span>note<span><font color="#990000">));</font></span>
+
                                                  progressbar);
-
  <span>'''<span><font color="#0000FF">if</font></span>'''</span> <span><font color="#990000">(</font></span>response <span><font color="#990000"><nowiki>==</nowiki></font></span> GTK_RESPONSE_DELETE_EVENT<span><font color="#990000">)</font></span>
+
  response = gtk_dialog_run (GTK_DIALOG (note));
-
    <span>'''<span><font color="#000000">g_debug</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#FF0000">"%s: GTK_RESPONSE_DELETE_EVENT"</font></span><span><font color="#990000">,</font></span> __FUNCTION__<span><font color="#990000">);</font></span>
+
  if (response == GTK_RESPONSE_DELETE_EVENT)
-
  <span>'''<span><font color="#000000">gtk_object_destroy</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_OBJECT</font></span>'''</span> <span><font color="#990000">(</font></span>note<span><font color="#990000">));</font></span>
+
    g_debug ("%s: GTK_RESPONSE_DELETE_EVENT", __FUNCTION__);
-
<span><font color="#FF0000">}</font></span>
+
  gtk_object_destroy (GTK_OBJECT (note));
 +
}
 +
</source>

Latest revision as of 14:36, 14 October 2010

Image:Ambox_content.png
This article is legacy documentation, and is superseded by Forum Nokia documentation.
The Forum Nokia documentation is available as the Hildon 2.2 UI style guide, Fremantle master layout guide and the Hildon 2.2 widget UI specification

Hildon provides a set of controls specially designed for touchscreens that allows to build simple and easy-to-use interfaces. This chapter explains how to use these widgets.


Contents

[edit] Buttons

A Hildon application can use several types of buttons. Hildon provides specialized buttons derived from GtkButton which provide additional commodities specific to the Hildon framework. Using GtkButtons and GtkToggleButtons is also recommended.

[edit] Hildon Button

HildonButton is a GtkButton which usually contains two labels: title and value. It can also include an image.

To create a HildonButton, use the following functions:

GtkWidget*  hildon_button_new               (HildonSizeType size,
                                             HildonButtonArrangement arrangement);
GtkWidget*  hildon_button_new_with_text     (HildonSizeType size,
                                             HildonButtonArrangement arrangement,
                                             const gchar *title,
                                             const gchar *value);

Note that in the creation of a HildonButton you must indicate the value for the properties "size" and "arrangement", choosing a Hildon size and a horizontal or vertical arrangement of the labels.

You can set and retrieve both labels by using the following convenience functions:

void        hildon_button_set_title         (HildonButton *button,
                                             const gchar *title);
void        hildon_button_set_value         (HildonButton *button,
                                             const gchar *value);
const gchar* hildon_button_get_title        (HildonButton *button);
const gchar* hildon_button_get_value        (HildonButton *button);

Alternatively, use the following function to set both labels of a HildonButton:

void        hildon_button_set_text          (HildonButton *button,
                                             const gchar *title,
                                             const gchar *value);

To add images to HildonButtons, use the following functions to set and retrieve the current image: hildon_button_set_image() and hildon_button_get_image().

You can also set the position of the image.

void        hildon_button_set_image_position (HildonButton *button,
                                              GtkPositionType position);

Currently supported positions are GTK_POS_LEFT or GTK_POS_RIGHT.

The visual style (color, fonts, etc.) of a HildonButton can be changed by using the function hildon_button_set_style(). Use HILDON_BUTTON_STYLE_NORMAL to make it look like a normal HildonButton, or HILDON_BUTTON_STYLE_PICKER to make it look like a HildonPickerButton.

The next simple example shows how to create a HildonButton, set the label text and add an image.

Example 7.1. Example of a Hildon button with a label and an image

GtkWidget *
create_button (void)
{
    GtkWidget *button;
    GtkWidget *image;
    /* Create a hildon button */
    button = hildon_button_new (HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT,
                                HILDON_BUTTON_ARRANGEMENT_VERTICAL);
    /* Set labels value */
    hildon_button_set_text (HILDON_BUTTON (button), "Some title", "Some value");
    /* Set image */
    image = gtk_image_new_from_stock (GTK_STOCK_INFO, GTK_ICON_SIZE_BUTTON);
    hildon_button_set_image (HILDON_BUTTON (button), image);
    hildon_button_set_image_position (HILDON_BUTTON (button), GTK_POS_RIGHT);
    return button;
}

[edit] Hildon Check Button

HildonCheckButton is a button that contains a label and a check box. The check box toggles between checked or unchecked.

To create a HildonCheckButton:

GtkWidget*  hildon_check_button_new         (HildonSizeType size);

Note that, again, you must specify the size of the button.

You can retrieve or set the current state of the button with the following functions, respectively:

gboolean    hildon_check_button_get_active  (HildonCheckButton *button);
void        hildon_check_button_set_active  (HildonCheckButton *button,
                                             gboolean is_active);

The signal "toggled" is emitted when the state of the button changes. A handler can be attached to this signal if a further action is required.

Here is a simple example which creates a check button and a simple callback to handle the signal "toggled".

Example 7.2. Example of a Hildon check button

void
button_toggled (HildonCheckButton *button, gpointer user_data)
{
    gboolean active;
    active = hildon_check_button_get_active (button);
    if (active)
       g_debug ("Button is active");
    else
       g_debug ("Button is not active");
}
GtkWidget *
create_button (void)
{
    GtkWidget *button;
    button = hildon_check_button_new (HILDON_SIZE_AUTO);
    gtk_button_set_label (GTK_BUTTON (button), "Click me");
    g_signal_connect (button, "toggled", G_CALLBACK (button_toggled), NULL);
    return button;
}

[edit] Using Gtk Buttons and Toggles

As was said above, apart from Hildon specific buttons, use GtkButton and GtkToggleButton also in the Hildon framework.

[edit] GtkButton

If only a label is needed, you do not need to use HildonButtons and a GtkButton can be used instead. You can use it as you would do in a GTK+ application. The only change is the creation function that you must use:

GtkWidget*  hildon_gtk_button_new           (HildonSizeType size);

This alternative constructor allows you to set a Hildon size for the newly create function.

[edit] GtkToggleButton

To create a GtkToggleButton in a Hildon application you should use:

GtkWidget*  hildon_gtk_toggle_button_new    (HildonSizeType size);

[edit] GtkRadioButton

To create a GtkRadioButton in a Hildon application, use:

GtkWidget*  hildon_gtk_radio_button_new     (HildonSizeType size,
                                             GSList *group);

The most common use case of this type of buttons in a Hildon application is as filters in a application menu. For more information, see section Touch View Menu.

[edit] Text display and handling

Text entry fields are used for entering one or more lines of plain text. Use a HildonEntry for a single-line text input or HildonTextView if you need a multi-line text input.

[edit] Hildon Text Entry

The HildonEntry is a GTK+ widget which represents a text entry. It is derived from the GtkEntry widget and provides additional commodities specific to the Hildon framework.

The main additional feature is a placeholder text to display if the entry is empty and not in focus.

Creating a new HildonEntry:

GtkWidget*  hildon_entry_new                (HildonSizeType size);

Note that the creation function needs to specify a size from HildonSizeType.

The placeholder is stored as a property. To set it, use the following convenience function:

void        hildon_entry_set_placeholder    (HildonEntry *entry,
                                             const gchar *text);

Here's a very simple example showing how to create a HindonEntry.

Example 7.3. Example of a Hildon entry

GtkWidget *
create_entry (void)
{
    GtkWidget *entry;
    entry = hildon_entry_new (HILDON_SIZE_AUTO);
    hildon_entry_set_placeholder (HILDON_ENTRY (entry),
	                          "First name");
    return entry;
}

[edit] Hildon Text Area

The HildonTextView is a GTK+ widget which represents a text area in Hildon applications. It is derived from the GtkTextView widget and provides additional commodities specific to the Hildon framework.

Create a HildonTextView:

GtkWidget*  hildon_text_view_new            (void);

Like for the HildonTextEntry presented above, you can store a placeholder as well using the function.

void        hildon_text_view_set_placeholder    (HildonTextView *text_view,
                                                 const gchar *text);

The text that is being edited with a HildonTextView is represented by a object GtkTextBuffer. The following functions can be used to set and retrieve the buffer associated with a HildonTextView.

void        hildon_text_view_set_buffer         (HildonTextView *text_view,
                                                 GtkTextBuffer *buffer);
GtkTextBuffer* hildon_text_view_get_buffer      (HildonTextView *text_view);

Here is an example that shows how to create a HildonTextView and how to set its placeholder. Also, the buffer is retrieved and a function is set as a handler to the "changed" of the buffer. The handler simply gets the text from the HildonTextView's buffer and prints it.

Example 7.4. Example of a Hildon text view with a placeholder

static void
text_changed (GtkTextBuffer *buffer, 
              gpointer *user_data)
{
    gchar *text;
    GtkTextIter start, end;
    gtk_text_buffer_get_start_iter (buffer, &start);
    gtk_text_buffer_get_end_iter (buffer, &end);
    text = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
    g_debug (text);
}
GtkWidget *
create_text_view (void)
{
    GtkWidget *text_view;
    GtkTextBuffer *buffer;
    text_view = hildon_text_view_new();
    hildon_text_view_set_placeholder (HILDON_TEXT_VIEW (text_view),
                                      "Type some text here");
    buffer = hildon_text_view_get_buffer(HILDON_TEXT_VIEW(text_view));
    g_signal_connect (buffer,
                      "changed",
                      G_CALLBACK (text_changed),
                      NULL);
    return text_view;
}

[edit] Warning

Although HildonTextView is derived from GtkTextView, gtk_text_view_get_buffer() and gtk_text_view_set_buffer() must never be used to get/set the buffer in this widget, hildon_text_view_get_buffer() and hildon_text_view_set_buffer() must be used instead.

[edit] Notification widgets

To cover the main use cases regarding notification of users, Hildon provides banners and notes. Banner widgets display a text information during a certain period of time. Notes are specialized GtkDialogs that need a small amount of input from the user.

[edit] Banners

A HildonBanner is useful to display information which does not need any user response. This widget automatically disappears after a certain time period.

To create and show a banner, use the following function:

GtkWidget*  hildon_banner_show_information  (GtkWidget *widget,
                                             const gchar *icon_name,
                                             const gchar *text);
GtkWidget*  hildon_banner_show_informationf (GtkWidget *widget,
                                             const gchar *icon_name,
                                             const gchar *format,
                                             ...);
GtkWidget*  hildon_banner_show_information_with_markup
                                            (GtkWidget *widget,
                                             const gchar *icon_name,
                                             const gchar *markup);

All functions above require a widget as an argument that must be a pointer to the owner widget of the banner. Usually, the owner is the window that represents the currently displayed view.

Function hildon_banner_show_information() shows a banner with the given text.

Function hildon_banner_show_informationf() shows a banner which displays the text given by the printf-like formated string applied to the parameters that the rest of the function's arguments represent.

You can also apply a Pango markup and add some attributes to the displayed text. To do that, either use hildon_banner_show_information_with_markup() to create the banner or setup the markup by calling hildon_banner_set_markup() after the initialization. [@@COMMENT@@ LINK TO PANGO MARKUP]

[edit] Warning

Currently, icons are not displayed in banners, so any value that you pass as the icon_name is ignored.

The period of time after the banner automatically disappear is stored in the property "timeout" (in miliseconds). A convenience function to set this property is provided:

void        hildon_banner_set_timeout       (HildonBanner *self,
                                             guint timeout);

Here is a simple example showing how to setup and show an informational banner.

Example 7.5. Setting up an informational banner

GtkWidget* banner;
/* Create a banner with a markup */
banner = hildon_banner_show_information_with_markup (widget,
                                                     NULL,
                                                     "<b>Information banner</b>");
hildon_banner_set_timeout (HILDON_BANNER (banner), 9000);

[edit] Note

Only one timed banner can exist for each window in your application. If you spawn a new banner before the previous one has timed out, the first one is replaced.

[edit] Notes

HildonNotes are GtkDialogs designed to request a small amount of input from users. Usually, notes show an information text and buttons to confirm and cancel, for example, according to their type.

Unlike banners, notes always need a user action, that is, notes do not disappear automatically after a period of time.

The HildonNote widget provides functions to create and show different types of notes: information notes, confirmation notes and cancel notes.

GtkWidget*  hildon_note_new_information     (GtkWindow *parent,
                                             const gchar *description);
GtkWidget*  hildon_note_new_confirmation    (GtkWindow *parent,
                                             const gchar *description);
GtkWidget*  hildon_note_new_confirmation_add_buttons
                                            (GtkWindow *parent,
                                             const gchar *description,
                                             ...);
GtkWidget*  hildon_note_new_cancel_with_progress_bar
                                            (GtkWindow *parent,
                                             const gchar *description,
                                             GtkProgressBar *progressbar);

Every function to create notes receives as a parameter the parent window of the newly created note. This is important in order to allow the window manager to handle the windows properly.

[edit] Information Notes

Information notes are used to show an information to the users. This note disappears when user taps outside the note's area. Otherwise the note remains visible.

Here is an example of how to show an information note and handle the user's answer.

Example 7.6. Example of a Hildon information note

static void
show_information_note                          (GtkWidget *parent)
{
  GtkWidget *window, *note;
  gint response;
  note = hildon_note_new_information (NULL,
    "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
    "Maecenas tristique dictum est. Aenean rhoncus aliquam mi."
    "In hac habitasse platea dictumst.");
  response = gtk_dialog_run (GTK_DIALOG (note));
  if (response == GTK_RESPONSE_DELETE_EVENT)
    g_debug ("%s: GTK_RESPONSE_DELETE_EVENT", __FUNCTION__);
  gtk_object_destroy (GTK_OBJECT (note));
}

[edit] Confirmation Notes

Confirmation notes show an information text that is usually a question and two buttons labelled "Yes" and "No".

To create a confirmation note with the text you specify and two buttons labelled "Yes"/"No", use hildon_note_new_confirmation() as follows:

Example 7.7. Example of a Hildon confirmation note

static void
show_confirmation_note                          (GtkWidget *parent)
{
    GtkWidget *note;
    gint response;
    note = hildon_note_new_confirmation (parent,
                                         "Do you want foo ?");
    response = gtk_dialog_run (GTK_DIALOG (note));
    if (response == GTK_RESPONSE_DELETE_EVENT)
      g_debug ("%s: GTK_RESPONSE_DELETE_EVENT", __FUNCTION__);
    gtk_object_destroy (GTK_OBJECT (note));
}

Alternatively, you can use hildon_note_new_confirmation_add_buttons() to create a confirmation note with custom buttons.

Example 7.8. Example of a Hildon confirmation note with custom buttons

static void
show_confirmation_note                          (GtkWidget *parent)
{
    GtkWidget *note;
    gint response;
    note = hildon_note_new_confirmation_add_buttons(parent,
                                                    "Do you want foo?",
                                                    "ACCEPT", GTK_RESPONSE_OK,
                                                    "CANCEL", GTK_RESPONSE_CANCEL,
                                                    "DELETE", GTK_RESPONSE_DELETE_EVENT,
                                                    NULL);
    response = gtk_dialog_run (GTK_DIALOG (note));
    if (response == GTK_RESPONSE_DELETE_EVENT)
      g_debug ("%s: GTK_RESPONSE_DELETE_EVENT", __FUNCTION__);
    gtk_object_destroy (GTK_OBJECT (note));
}

Cancel Notes

A cancel note displays a text, a Cancel button and a progress bar. They are useful to tell users that a long task is in progress. Also, cancel notes allow users to cancel the task in progress.

Next example shows how to create a cancel note with a progress bar. Note that to control the progress bar, additional code is needed.

Example 7.9. Example of a Hildon cancel note with a progress bar

static void
show_information_note                          (GtkWidget *parent)
{
  GtkWidget *note
  GtkProgressBar *progressbar
  gint response;
  progressbar = gtk_progress_bar_new()
  note = hildon_note_new_cancel_with_progress_bar (parent,
                                                  "A large task is happening"
                                                  progressbar);
  response = gtk_dialog_run (GTK_DIALOG (note));
  if (response == GTK_RESPONSE_DELETE_EVENT)
    g_debug ("%s: GTK_RESPONSE_DELETE_EVENT", __FUNCTION__);
  gtk_object_destroy (GTK_OBJECT (note));
}