|
|
| (14 intermediate revisions by 7 users not shown) |
| Line 1: |
Line 1: |
| =Menus =
| | {{main|Legacy Maemo 5 Documentation/Graphical UI Tutorial/Menus}} |
| The use of menus in Hildon applications follows a very different approach from the traditional application menus.
| |
|
| |
|
| Hildon applications have no menu bar. Each window has an attached menu which activates when the user presses the window title area. Also, unlike typical menus in desktop applications, view menus do not follow a hierarchical structure. This menu, attached to a view, is called Touch View Menu. | | Hildon applications use menus in a completely different way from the traditional application menus - Hildon applications do not have a menu bar. |
|
| |
|
| Additionally Hildon provides Context menus, but avoid them when possible.
| | Each window has an attached menu that activates when the user presses the window title area. Also, unlike typical menus in desktop applications, view menus do not follow a hierarchical structure. This menu, attached to a view, is called Touch View Menu. |
|
| |
|
| | Additionally Hildon provides Context menus, but they should be avoided whenever possible. |
|
| |
|
| ==Touch view menu == | | ==Touch view menu== |
| Use the HildonAppmenu widget as a menu in the windows of a Hildon application.
| | |
| | The <code>HildonAppMenu</code> is a widget that acts like a menu in the windows of a Hildon application. |
|
| |
|
| This widget opens at the top of the screen, obscuring the topmost window, and contains several entries organized in one or two columns, depending on screen orientation. Besides entries, application menus can also contain a group of filter buttons. | | This widget opens at the top of the screen, obscuring the topmost window, and contains several entries organized in one or two columns, depending on screen orientation. Besides entries, application menus can also contain a group of filter buttons. |
|
| |
|
| The entries are GtkButtons. Assign an action to the menu item for when they are activated. | | The entries are <code>GtkButton</code>s. Assign an action to the menu item for when they are activated. |
|
| |
|
| Filters are toggle buttons that can be used for presentation/sorting purposes. For example, sorting alphabetically a list of contacts or changing the size of icons in a list. | | Filters are toggle buttons that can be used for presentation/sorting purposes. For example, sorting alphabetically a list of contacts or changing the size of icons in a list. |
|
| |
|
| To create a HildonAppMenu, use the following command: | | To create a <code>HildonAppMenu</code>, use the following command: |
| | <source lang="python"> |
| | hildon.AppMenu() |
| | </source> |
| | When the application menu is created, add entries to the menu by using the following functions: |
| | <source lang="python"> |
| | def append(self, item) |
| | def prepend(self, item) |
| | def insert(self, item, position) |
| | </source> |
| | These functions allow you to append, prepend an entry or add it in a certain position (from 0 to N-1, where N is the number of menus). |
| | |
| | It is important to keep the UI simple. Try to create the menu as short as possible and avoid adding unnecessary options. An application menu with more than 10 items probably will not have a good appearance. |
| | |
| | To add filter buttons, use the following: |
| | <source lang="python"> |
| | def add_filter(self, filter) |
| | </source> |
| | Again, be careful with the number of filters that you add to the application menu. More than 4 might not be well displayed, even less, depending on the length of the labels. Filters should be grouped and act as radio buttons, that is, for any filter, at least another filter with a different/opposite action must exist. Actually, <code>GtkRadioButton</code>s can be easily used to accomplish this by having them grouped (using <code>gtk_radio_button_new_from_widget()</code> like the next example shows) and by not drawing their indicator - with the function <code>gtk_toggle_button_set_mode()</code>. |
| | |
| | When the menu is properly created and filled up with entries and filters, add the menu to a HildonWindow. To set and retrieve a window's menu, use the following functions: |
| | <source lang="python"> |
| | def set_app_menu(self, menu) |
| | def get_app_menu(self) |
| | </source> |
| | The following example shows how to create and set up an application menu. |
| | |
| | '''Example 3.1. Example of a Hildon application menu''' |
| | <source lang="python"> |
| | # Based on C code from: |
| | # "Hildon Tutorial" version 2009-04-28 |
| | # Example 3.1, "Example of a Hildon application menu" |
| | |
| | import sys |
| | import gtk |
| | import hildon |
| | |
| | def menu_button_clicked(button, label): |
| | buttontext = button.get_label() |
| | text = "Last option selected:\n%s" % buttontext |
| | label.set_text(text) |
| | print >>sys.stderr, "Button clicked: %s" % buttontext |
| | |
| | def create_menu(label): |
| | menu = hildon.AppMenu() |
| | |
| | for i in xrange(1, 6): |
| | # Create menu entries |
| | button = hildon.GtkButton(gtk.HILDON_SIZE_AUTO) |
| | command_id = "Menu command %d" % i |
| | button.set_label(command_id) |
| | |
| | # Attach callback to clicked signal |
| | button.connect("clicked", menu_button_clicked, label) |
| | |
| | # Add entry to the view menu |
| | menu.append(button) |
|
| |
|
| <tt>GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_app_menu_new</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#009900">void</font></span><span><font color="#990000">);</font></span>
| | # Create filters |
| </tt>
| | button = hildon.GtkRadioButton(gtk.HILDON_SIZE_AUTO, None) |
| | button.set_label("filter one") |
| | button.connect("clicked", menu_button_clicked, label) |
| | menu.add_filter(button) |
| | button.set_mode(False) |
|
| |
|
| When the application menu is created, add entries to the menu by using the following functions:
| | button = hildon.GtkRadioButton(gtk.HILDON_SIZE_AUTO, button) |
| | button.set_label("filter two") |
| | button.connect("clicked", menu_button_clicked, label) |
| | menu.add_filter(button) |
| | button.set_mode(False) |
| | |
| | menu.show_all() |
| | |
| | return menu |
|
| |
|
| <tt> <span><font color="#009900">void</font></span> <span>'''<span><font color="#000000">hildon_app_menu_append</font></span>'''</span> <span><font color="#990000">(</font></span>HildonAppMenu <span><font color="#990000"><nowiki>*</nowiki></font></span>menu<span><font color="#990000">,</font></span>
| | def main(): |
| GtkButton <span><font color="#990000"><nowiki>*</nowiki></font></span>item<span><font color="#990000">);</font></span>
| | win = hildon.StackableWindow() |
| <span><font color="#009900">void</font></span> <span>'''<span><font color="#000000">hildon_app_menu_prepend</font></span>'''</span> <span><font color="#990000">(</font></span>HildonAppMenu <span><font color="#990000"><nowiki>*</nowiki></font></span>menu<span><font color="#990000">,</font></span>
| |
| GtkButton <span><font color="#990000"><nowiki>*</nowiki></font></span>item<span><font color="#990000">);</font></span>
| |
| <span><font color="#009900">void</font></span> <span>'''<span><font color="#000000">hildon_app_menu_insert</font></span>'''</span> <span><font color="#990000">(</font></span>HildonAppMenu <span><font color="#990000"><nowiki>*</nowiki></font></span>menu<span><font color="#990000">,</font></span>
| |
| GtkButton <span><font color="#990000"><nowiki>*</nowiki></font></span>item<span><font color="#990000">,</font></span>
| |
| gint position<span><font color="#990000">);</font></span>
| |
| </tt>
| |
|
| |
|
| These functions allow you to append, prepend an entry or add it in a certain position (from 0 to N-1, where N is the number of menus).
| | # Create and pack labels |
| | label = gtk.Label("This is an example of the\nHildonAppMenu widget.\n\n" |
| | "Click on the titlebar\nto pop up the menu.") |
| | label2 = gtk.Label("No menu option has been selected yet.") |
|
| |
|
| It is important keep the UI simple. Try to keep the menu as short as possible and avoid adding unnecessary options. An application menu with more that 10 items is probably not displayed well.
| | label.set_justify(gtk.JUSTIFY_CENTER) |
| | label2.set_justify(gtk.JUSTIFY_CENTER) |
|
| |
|
| To add filter buttons, use the following:
| | vbox = gtk.VBox(False, 10) |
|
| |
|
| <tt><span><font color="#009900">void</font></span> <span>'''<span><font color="#000000">hildon_app_menu_add_filter</font></span>'''</span> <span><font color="#990000">(</font></span>HildonAppMenu <span><font color="#990000"><nowiki>*</nowiki></font></span>menu<span><font color="#990000">,</font></span>
| | vbox.pack_start(label, True, True, 0) |
| GtkButton <span><font color="#990000"><nowiki>*</nowiki></font></span>filter<span><font color="#990000">);</font></span>
| | vbox.pack_start(label2, True, True, 0) |
| </tt>
| |
|
| |
|
| Again, be careful with the number of filters that you add to the application menu. More than 4 might not be well displayed, even less, depending on the length of the labels. Filters should be grouped and act as radio buttons, that is, for any filter, at least another filter with a different/opposite action must exist. Actually, GtkRadioButtons can be easily used to accomplish this by having them grouped (using <code>gtk_radio_button_new_from_widget()</code> like the next example shows) and by not drawing their indicator - with the function gtk_toggle_button_set_mode().
| | # Create menu |
| | menu = create_menu(label2) |
|
| |
|
| When the menu is properly created and filled up with entries and filters, add the menu to a HildonWindow. To set and retrieve a window's menu, use the following functions:
| | # Attach menu to the window |
| | win.set_app_menu(menu) |
|
| |
|
| <tt> <span><font color="#009900">void</font></span> <span>'''<span><font color="#000000">hildon_window_set_app_menu</font></span>'''</span> <span><font color="#990000">(</font></span>HildonWindow <span><font color="#990000"><nowiki>*</nowiki></font></span>self<span><font color="#990000">,</font></span>
| | # Add label's box to window |
| HildonAppMenu <span><font color="#990000"><nowiki>*</nowiki></font></span>menu<span><font color="#990000">);</font></span>
| | win.add(vbox) |
| HildonAppMenu<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_window_get_app_menu</font></span>'''</span> <span><font color="#990000">(</font></span>HildonWindow <span><font color="#990000"><nowiki>*</nowiki></font></span>self<span><font color="#990000">);</font></span>
| |
| </tt>
| |
|
| |
|
| The following example shows how to create and set up an application menu.
| | win.connect("delete_event", gtk.main_quit) |
|
| |
|
| '''Example 3.1. Example of a Hildon application menu'''
| | win.show_all() |
|
| |
|
| <tt><span>'''<span><font color="#000080"><nowiki>#include</nowiki></font></span>'''</span> <span><font color="#FF0000"><hildon/hildon.h></font></span>
| | gtk.main() |
|
| |
| <span>'''<span><font color="#0000FF">static</font></span>'''</span> <span><font color="#009900">void</font></span>
| |
| <span>'''<span><font color="#000000">menu_button_clicked</font></span>'''</span> <span><font color="#990000">(</font></span>GtkButton <span><font color="#990000"><nowiki>*</nowiki></font></span>button<span><font color="#990000">,</font></span>
| |
| GtkLabel <span><font color="#990000"><nowiki>*</nowiki></font></span>label<span><font color="#990000">)</font></span>
| |
| <span><font color="#FF0000">{</font></span>
| |
| <span>'''<span><font color="#0000FF">const</font></span>'''</span> <span><font color="#009900">char</font></span> <span><font color="#990000"><nowiki>*</nowiki></font></span>buttontext <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">gtk_button_get_label</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">);</font></span>
| |
| <span><font color="#009900">char</font></span> <span><font color="#990000"><nowiki>*</nowiki></font></span>text <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">g_strdup_printf</font></span>'''</span><span><font color="#990000">(</font></span><span><font color="#FF0000">"Last option selected:</font></span><span><font color="#CC33CC">\n</font></span><span><font color="#FF0000">%s"</font></span><span><font color="#990000">,</font></span> buttontext<span><font color="#990000">);</font></span>
| |
| <span>'''<span><font color="#000000">gtk_label_set_text</font></span>'''</span> <span><font color="#990000">(</font></span>label<span><font color="#990000">,</font></span> text<span><font color="#990000">);</font></span>
| |
| <span>'''<span><font color="#000000">g_free</font></span>'''</span> <span><font color="#990000">(</font></span>text<span><font color="#990000">);</font></span>
| |
| <span>'''<span><font color="#000000">g_debug</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#FF0000">"Button clicked: %s"</font></span><span><font color="#990000">,</font></span> buttontext<span><font color="#990000">);</font></span>
| |
| <span><font color="#FF0000">}</font></span>
| |
|
| |
| <span>'''<span><font color="#0000FF">static</font></span>'''</span> HildonAppMenu <span><font color="#990000"><nowiki>*</nowiki></font></span>
| |
| <span>'''<span><font color="#000000">create_menu</font></span>'''</span> <span><font color="#990000">(</font></span>GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>label<span><font color="#990000">)</font></span>
| |
| <span><font color="#FF0000">{</font></span>
| |
| <span><font color="#009900">int</font></span> i<span><font color="#990000"><nowiki>;</nowiki></font></span>
| |
| gchar <span><font color="#990000"><nowiki>*</nowiki></font></span>command_id<span><font color="#990000"><nowiki>;</nowiki></font></span>
| |
| GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span> button<span><font color="#990000"><nowiki>;</nowiki></font></span>
| |
| HildonAppMenu <span><font color="#990000"><nowiki>*</nowiki></font></span>menu <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">HILDON_APP_MENU</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">hildon_app_menu_new</font></span>'''</span> <span><font color="#990000">());</font></span>
| |
|
| |
| <span>'''<span><font color="#0000FF">for</font></span>'''</span> <span><font color="#990000">(</font></span>i <span><font color="#990000"><nowiki>=</nowiki></font></span> <span><font color="#993399">1</font></span><span><font color="#990000"><nowiki>;</nowiki></font></span> i <span><font color="#990000"><</font></span> <span><font color="#993399">6</font></span><span><font color="#990000"><nowiki>;</nowiki></font></span> i<span><font color="#990000">++)</font></span> <span><font color="#FF0000">{</font></span>
| |
| <span>''<span><font color="#9A1900">/* Create menu entries */</font></span>''</span>
| |
| button <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>HILDON_SIZE_AUTO<span><font color="#990000">);</font></span>
| |
| command_id <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">g_strdup_printf</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#FF0000">"Menu command %d"</font></span><span><font color="#990000">,</font></span> i<span><font color="#990000">);</font></span>
| |
| <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> command_id<span><font color="#990000">);</font></span>
| |
|
| |
| <span>''<span><font color="#9A1900">/* Attach callback to clicked signal */</font></span>''</span>
| |
| <span>'''<span><font color="#000000">g_signal_connect_after</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">,</font></span> <span><font color="#FF0000">"clicked"</font></span><span><font color="#990000">,</font></span>
| |
| <span>'''<span><font color="#000000">G_CALLBACK</font></span>'''</span> <span><font color="#990000">(</font></span>menu_button_clicked<span><font color="#990000">),</font></span>
| |
| label<span><font color="#990000">);</font></span>
| |
|
| |
| <span>''<span><font color="#9A1900">/* Add entry to the view menu */</font></span>''</span>
| |
| <span>'''<span><font color="#000000">hildon_app_menu_append</font></span>'''</span> <span><font color="#990000">(</font></span>menu<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">}</font></span>
| |
|
| |
| <span>''<span><font color="#9A1900">/* Create filters */</font></span>''</span>
| |
| button <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>HILDON_SIZE_AUTO<span><font color="#990000">,</font></span> NULL<span><font color="#990000">);</font></span>
| |
| <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">"filter one"</font></span><span><font color="#990000">);</font></span>
| |
| <span>'''<span><font color="#000000">g_signal_connect_after</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">,</font></span> <span><font color="#FF0000">"clicked"</font></span><span><font color="#990000">,</font></span> <span>'''<span><font color="#000000">G_CALLBACK</font></span>'''</span> <span><font color="#990000">(</font></span>menu_button_clicked<span><font color="#990000">),</font></span> label<span><font color="#990000">);</font></span>
| |
| <span>'''<span><font color="#000000">hildon_app_menu_add_filter</font></span>'''</span> <span><font color="#990000">(</font></span>menu<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>'''<span><font color="#000000">gtk_toggle_button_set_mode</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_TOGGLE_BUTTON</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">),</font></span> FALSE<span><font color="#990000">);</font></span>
| |
|
| |
| button <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_gtk_radio_button_new_from_widget</font></span>'''</span> <span><font color="#990000">(</font></span>HILDON_SIZE_AUTO<span><font color="#990000">,</font></span>
| |
| <span>'''<span><font color="#000000">GTK_RADIO_BUTTON</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">));</font></span>
| |
| <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">"filter two"</font></span><span><font color="#990000">);</font></span>
| |
| <span>'''<span><font color="#000000">g_signal_connect_after</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">,</font></span> <span><font color="#FF0000">"clicked"</font></span><span><font color="#990000">,</font></span> <span>'''<span><font color="#000000">G_CALLBACK</font></span>'''</span> <span><font color="#990000">(</font></span>menu_button_clicked<span><font color="#990000">),</font></span> label<span><font color="#990000">);</font></span>
| |
| <span>'''<span><font color="#000000">hildon_app_menu_add_filter</font></span>'''</span> <span><font color="#990000">(</font></span>menu<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>'''<span><font color="#000000">gtk_toggle_button_set_mode</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_TOGGLE_BUTTON</font></span>'''</span> <span><font color="#990000">(</font></span>button<span><font color="#990000">),</font></span> FALSE<span><font color="#990000">);</font></span>
| |
|
| |
| <span>'''<span><font color="#000000">gtk_widget_show_all</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_WIDGET</font></span>'''</span> <span><font color="#990000">(</font></span>menu<span><font color="#990000">));</font></span>
| |
|
| |
| <span>'''<span><font color="#0000FF">return</font></span>'''</span> menu<span><font color="#990000"><nowiki>;</nowiki></font></span>
| |
| <span><font color="#FF0000">}</font></span>
| |
|
| |
| <span><font color="#009900">int</font></span>
| |
| <span>'''<span><font color="#000000">main</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#009900">int</font></span> argc<span><font color="#990000">,</font></span>
| |
| <span><font color="#009900">char</font></span> <span><font color="#990000"><nowiki>**</nowiki></font></span>argv<span><font color="#990000">)</font></span>
| |
| <span><font color="#FF0000">{</font></span>
| |
| GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>win<span><font color="#990000"><nowiki>;</nowiki></font></span>
| |
| GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>label<span><font color="#990000"><nowiki>;</nowiki></font></span>
| |
| GtkWidget <span><font color="#990000"><nowiki>*</nowiki></font></span>label2<span><font color="#990000"><nowiki>;</nowiki></font></span>
| |
| GtkBox <span><font color="#990000"><nowiki>*</nowiki></font></span>vbox<span><font color="#990000"><nowiki>;</nowiki></font></span>
| |
| HildonAppMenu <span><font color="#990000"><nowiki>*</nowiki></font></span>menu<span><font color="#990000"><nowiki>;</nowiki></font></span>
| |
|
| |
| <span>'''<span><font color="#000000">hildon_gtk_init</font></span>'''</span> <span><font color="#990000">(&</font></span>argc<span><font color="#990000">,</font></span> <span><font color="#990000">&</font></span>argv<span><font color="#990000">);</font></span>
| |
|
| |
| win <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">hildon_stackable_window_new</font></span>'''</span> <span><font color="#990000">();</font></span>
| |
|
| |
| <span>''<span><font color="#9A1900">/* Create and pack labels */</font></span>''</span>
| |
| label <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">gtk_label_new</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#FF0000">"This is an example of the</font></span><span><font color="#CC33CC">\n</font></span><span><font color="#FF0000">HildonAppMenu widget.</font></span><span><font color="#CC33CC">\n\n</font></span><span><font color="#FF0000">"</font></span>
| |
| <span><font color="#FF0000">"Click on the titlebar</font></span><span><font color="#CC33CC">\n</font></span><span><font color="#FF0000">to pop up the menu."</font></span><span><font color="#990000">);</font></span>
| |
| label2 <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">gtk_label_new</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#FF0000">"No menu option has been selected yet."</font></span><span><font color="#990000">);</font></span>
| |
|
| |
| <span>'''<span><font color="#000000">gtk_label_set_justify</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_LABEL</font></span>'''</span> <span><font color="#990000">(</font></span>label<span><font color="#990000">),</font></span> GTK_JUSTIFY_CENTER<span><font color="#990000">);</font></span>
| |
| <span>'''<span><font color="#000000">gtk_label_set_justify</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_LABEL</font></span>'''</span> <span><font color="#990000">(</font></span>label2<span><font color="#990000">),</font></span> GTK_JUSTIFY_CENTER<span><font color="#990000">);</font></span>
| |
|
| |
| vbox <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">GTK_BOX</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">gtk_vbox_new</font></span>'''</span> <span><font color="#990000">(</font></span>FALSE<span><font color="#990000">,</font></span> <span><font color="#993399">10</font></span><span><font color="#990000">));</font></span>
| |
|
| |
| <span>'''<span><font color="#000000">gtk_box_pack_start</font></span>'''</span> <span><font color="#990000">(</font></span>vbox<span><font color="#990000">,</font></span> label<span><font color="#990000">,</font></span> TRUE<span><font color="#990000">,</font></span> TRUE<span><font color="#990000">,</font></span> <span><font color="#993399">0</font></span><span><font color="#990000">);</font></span>
| |
| <span>'''<span><font color="#000000">gtk_box_pack_start</font></span>'''</span> <span><font color="#990000">(</font></span>vbox<span><font color="#990000">,</font></span> label2<span><font color="#990000">,</font></span> TRUE<span><font color="#990000">,</font></span> TRUE<span><font color="#990000">,</font></span> <span><font color="#993399">0</font></span><span><font color="#990000">);</font></span>
| |
|
| |
| <span>''<span><font color="#9A1900">/* Create menu */</font></span>''</span>
| |
| menu <span><font color="#990000"><nowiki>=</nowiki></font></span> <span>'''<span><font color="#000000">create_menu</font></span>'''</span> <span><font color="#990000">(</font></span>label2<span><font color="#990000">);</font></span>
| |
|
| |
| <span>''<span><font color="#9A1900">/* Attach menu to the window */</font></span>''</span>
| |
| <span>'''<span><font color="#000000">hildon_window_set_app_menu</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">HILDON_WINDOW</font></span>'''</span> <span><font color="#990000">(</font></span>win<span><font color="#990000">),</font></span> menu<span><font color="#990000">);</font></span>
| |
|
| |
| <span>''<span><font color="#9A1900">/* Add label's box to window */</font></span>''</span>
| |
| <span>'''<span><font color="#000000">gtk_container_add</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">GTK_CONTAINER</font></span>'''</span> <span><font color="#990000">(</font></span>win<span><font color="#990000">),</font></span> <span>'''<span><font color="#000000">GTK_WIDGET</font></span>'''</span> <span><font color="#990000">(</font></span>vbox<span><font color="#990000">));</font></span>
| |
|
| |
| <span>'''<span><font color="#000000">g_signal_connect</font></span>'''</span> <span><font color="#990000">(</font></span>win<span><font color="#990000">,</font></span> <span><font color="#FF0000">"delete_event"</font></span><span><font color="#990000">,</font></span> <span>'''<span><font color="#000000">G_CALLBACK</font></span>'''</span> <span><font color="#990000">(</font></span>gtk_main_quit<span><font color="#990000">),</font></span> NULL<span><font color="#990000">);</font></span>
| |
|
| |
| <span>'''<span><font color="#000000">gtk_widget_show_all</font></span>'''</span> <span><font color="#990000">(</font></span>win<span><font color="#990000">);</font></span>
| |
|
| |
| <span>'''<span><font color="#000000">gtk_main</font></span>'''</span> <span><font color="#990000">();</font></span>
| |
|
| |
| <span>'''<span><font color="#0000FF">return</font></span>'''</span> <span><font color="#993399">0</font></span><span><font color="#990000"><nowiki>;</nowiki></font></span>
| |
| <span><font color="#FF0000">}</font></span>
| |
| </tt>
| |
|
| |
|
| | if __name__ == "__main__": |
| | main() |
| | </source> |
| Each entry and filter button in this example is attached to a function that simply changes a label in the main window. | | Each entry and filter button in this example is attached to a function that simply changes a label in the main window. |
|
| |
|
| Note that the function used to attach handlers to the entries is <code>g_signal_connect_after()</code>. So the handler are called after the default handler of the signal "clicked". The default handler for entries and filters closes the menu.
| | ==Application menus and views== |
|
| |
|
| ==Application menus and views ==
| |
| The previous example had only one view. In applications with several views, you can attach a different menu to each view and add only the options that are relevant to the displayed view. | | The previous example had only one view. In applications with several views, you can attach a different menu to each view and add only the options that are relevant to the displayed view. |
|
| |
|
| The function <code>hildon_window_set_app_menu()</code>allows to set a menu to an HildonWindow and its descendant HildonStackableWindow widget. | | The function <code>hildon_window_set_app_menu()</code>allows to set a menu to a <code>HildonWindow</code> and its descendant <code>HildonStackableWindow</code> widget. |
| | | <source lang="python"> |
| <tt> <span>'''<span><font color="#000000">hildon_window_set_app_menu</font></span>'''</span> <span><font color="#990000">(</font></span><span>'''<span><font color="#000000">HILDON_STACKABLE_WINDOW</font></span>'''</span> <span><font color="#990000">(</font></span>win<span><font color="#990000">),</font></span> menu<span><font color="#990000">);</font></span>
| | window.set_app_menu(menu) |
| </tt>
| | </source> |
| | |
| Note that submenus are not supported by view menus. Usually a menu item that would have suboptions in a desktop application is implemented as a new subview in a Hildon application. | | Note that submenus are not supported by view menus. Usually a menu item that would have suboptions in a desktop application is implemented as a new subview in a Hildon application. |
|
| |
|
| A callback function for a complex menu entry can create a new HildonStackableWindow to accomplish the task that the option refers to. The new window can contain a different view menu to contain buttons to perform the action. The buttons can even reside in the window area. | | A callback function for a complex menu entry can create a new <code>hildon.StackableWindow</code> to accomplish the task that the option refers to. The new window can contain a different view menu that aggregates buttons to perform the action. The buttons can even reside in the window area. |
| | |
|
| |
|
| ==Context menu == | | ==Context menu== |
| Context menu is usually invoked through a long press over an item on the screen, like holding a finger over an image thumbnail. The menu must contain commands directly related to the chosen item.
| |
|
| |
|
| Avoid using context menus, because they are a hidden and inconvenient way of interacting with the UI. Use HildonAppMenus instead.
| | The Context menu is usually invoked through a long press over an item on the screen, like holding a finger over an image thumbnail. The menu must contain commands directly related to the chosen item. |
|
| |
|
| To create a GtkMenu in a Hildon application, use the following function instead of <code>gtk_menu_new()</code><nowiki>: </nowiki>
| | Avoid using context menus, because they are a hidden and inconvenient way of interacting with the UI. Use <code>HildonAppMenu</code>s instead. |
|
| |
|
| <tt>GtkWidget<span><font color="#990000"><nowiki>*</nowiki></font></span> <span>'''<span><font color="#000000">hildon_gtk_menu_new</font></span>'''</span> <span><font color="#990000">(</font></span><span><font color="#009900">void</font></span><span><font color="#990000">);</font></span>
| | To create a <code>GtkMenu</code> in a Hildon application, use the following function instead of <code>gtk_menu_new()</code>: |
| </tt>
| | <source lang="python"> |
| | gtk.Menu() |
| | </source> |
| | This function creates a <code>GtkMenu</code> that allows Hildon-specific styling. |
|
| |
|
| This function creates a GtkMenu that allows Hildon specific styling.
| | When you use a <code>GtkMenu</code> in your Hildon application, consider how many menu items you are going to use, because screen space is limited. Also consider the fact that in the interests of keeping the UI clear, submenus are not allowed. |
|
| |
|
| When you use a GtkMenu in your Hildon application, consider how many menu items you are going to use, because screen space is limited. Also consider the fact that in the interests of keeping the UI clear, submenus are not allowed.
| | [[Category:Python]] |
Hildon applications use menus in a completely different way from the traditional application menus - Hildon applications do not have a menu bar.
Each window has an attached menu that activates when the user presses the window title area. Also, unlike typical menus in desktop applications, view menus do not follow a hierarchical structure. This menu, attached to a view, is called Touch View Menu.
Additionally Hildon provides Context menus, but they should be avoided whenever possible.
The HildonAppMenu is a widget that acts like a menu in the windows of a Hildon application.
This widget opens at the top of the screen, obscuring the topmost window, and contains several entries organized in one or two columns, depending on screen orientation. Besides entries, application menus can also contain a group of filter buttons.
The entries are GtkButtons. Assign an action to the menu item for when they are activated.
Filters are toggle buttons that can be used for presentation/sorting purposes. For example, sorting alphabetically a list of contacts or changing the size of icons in a list.
To create a HildonAppMenu, use the following command:
<source lang="python">
hildon.AppMenu()
</source>
When the application menu is created, add entries to the menu by using the following functions:
<source lang="python">
def append(self, item)
def prepend(self, item)
def insert(self, item, position)
</source>
These functions allow you to append, prepend an entry or add it in a certain position (from 0 to N-1, where N is the number of menus).
It is important to keep the UI simple. Try to create the menu as short as possible and avoid adding unnecessary options. An application menu with more than 10 items probably will not have a good appearance.
To add filter buttons, use the following:
<source lang="python">
def add_filter(self, filter)
</source>
Again, be careful with the number of filters that you add to the application menu. More than 4 might not be well displayed, even less, depending on the length of the labels. Filters should be grouped and act as radio buttons, that is, for any filter, at least another filter with a different/opposite action must exist. Actually, GtkRadioButtons can be easily used to accomplish this by having them grouped (using gtk_radio_button_new_from_widget() like the next example shows) and by not drawing their indicator - with the function gtk_toggle_button_set_mode().
When the menu is properly created and filled up with entries and filters, add the menu to a HildonWindow. To set and retrieve a window's menu, use the following functions:
<source lang="python">
def set_app_menu(self, menu)
def get_app_menu(self)
</source>
The following example shows how to create and set up an application menu.
Example 3.1. Example of a Hildon application menu
<source lang="python">
- Based on C code from:
- "Hildon Tutorial" version 2009-04-28
- Example 3.1, "Example of a Hildon application menu"
import sys
import gtk
import hildon
def menu_button_clicked(button, label):
buttontext = button.get_label()
text = "Last option selected:\n%s" % buttontext
label.set_text(text)
print >>sys.stderr, "Button clicked: %s" % buttontext
def create_menu(label):
menu = hildon.AppMenu()
for i in xrange(1, 6):
# Create menu entries
button = hildon.GtkButton(gtk.HILDON_SIZE_AUTO)
command_id = "Menu command %d" % i
button.set_label(command_id)
# Attach callback to clicked signal
button.connect("clicked", menu_button_clicked, label)
# Add entry to the view menu
menu.append(button)
# Create filters
button = hildon.GtkRadioButton(gtk.HILDON_SIZE_AUTO, None)
button.set_label("filter one")
button.connect("clicked", menu_button_clicked, label)
menu.add_filter(button)
button.set_mode(False)
button = hildon.GtkRadioButton(gtk.HILDON_SIZE_AUTO, button)
button.set_label("filter two")
button.connect("clicked", menu_button_clicked, label)
menu.add_filter(button)
button.set_mode(False)
menu.show_all()
return menu
def main():
win = hildon.StackableWindow()
# Create and pack labels
label = gtk.Label("This is an example of the\nHildonAppMenu widget.\n\n"
"Click on the titlebar\nto pop up the menu.")
label2 = gtk.Label("No menu option has been selected yet.")
label.set_justify(gtk.JUSTIFY_CENTER)
label2.set_justify(gtk.JUSTIFY_CENTER)
vbox = gtk.VBox(False, 10)
vbox.pack_start(label, True, True, 0)
vbox.pack_start(label2, True, True, 0)
# Create menu
menu = create_menu(label2)
# Attach menu to the window
win.set_app_menu(menu)
# Add label's box to window
win.add(vbox)
win.connect("delete_event", gtk.main_quit)
win.show_all()
gtk.main()
if __name__ == "__main__":
main()
</source>
Each entry and filter button in this example is attached to a function that simply changes a label in the main window.
Application menus and views
The previous example had only one view. In applications with several views, you can attach a different menu to each view and add only the options that are relevant to the displayed view.
The function hildon_window_set_app_menu()allows to set a menu to a HildonWindow and its descendant HildonStackableWindow widget.
<source lang="python">
window.set_app_menu(menu)
</source>
Note that submenus are not supported by view menus. Usually a menu item that would have suboptions in a desktop application is implemented as a new subview in a Hildon application.
A callback function for a complex menu entry can create a new hildon.StackableWindow to accomplish the task that the option refers to. The new window can contain a different view menu that aggregates buttons to perform the action. The buttons can even reside in the window area.
The Context menu is usually invoked through a long press over an item on the screen, like holding a finger over an image thumbnail. The menu must contain commands directly related to the chosen item.
Avoid using context menus, because they are a hidden and inconvenient way of interacting with the UI. Use HildonAppMenus instead.
To create a GtkMenu in a Hildon application, use the following function instead of gtk_menu_new():
<source lang="python">
gtk.Menu()
</source>
This function creates a GtkMenu that allows Hildon-specific styling.
When you use a GtkMenu in your Hildon application, consider how many menu items you are going to use, because screen space is limited. Also consider the fact that in the interests of keeping the UI clear, submenus are not allowed.