[yast-devel] yast2-qt with Context Menus

yast2-qt has support for context menus now. Context menus are supported by almost all UI frameworks and most people got used to them. Therefore it’s high time to provide context menus in the YaST Qt UI as well. yast2-qt-2.18.6 offers this feature, packages are available in my build service repository. In four simple steps YCP programmers can benefit from this new feature: Step 1: Create a widget and tell via `opt(`contextMenu) that a ContextMenuActivated Event should be emitted when the user right clicks the widget: `SelectionBox( `id(`sport), `opt(`notify,`immediate, `contextMenu), "Open a context menu:", [ "Item1", "Item2", "Item3" ] ); Step 2: Wait and analyze events: event = UI::WaitForEvent( ... ); ... if ( event["EventReason"]:”" == “ContextMenuActivated” ) ... Step 3: Open a context menu. The argument of OpenContextMenu() describes the menu structure: UI::OpenContextMenu( `menu( [ `item(`id(`folder), "&Folder" ), `menu( "&Document", [ `item(`id(`text), "&Text File" ), `item(`id(`image), "&Image" ) ]) ] )); Step 4: Analyze the returned `id and trigger an action. An example called ContextMenu.ycp is included in the package yast2-ycp-ui-bindings. Usability A Context menu provides shortcuts to actions for a certain widget or item. This features improves usability when it’s used properly. Application programmers should avoid making certain features only using context menus because users might not find them. Please keep in mind that YaST ncurses doesn’t provide context menus. Each operation that is only available via a context menu is useless in YaST ncurses because the user cannot select it. See: http://lizards.opensuse.org/2009/03/06/yast-qt-ui-with-context-menus/ Thomas -- To unsubscribe, e-mail: yast-devel+unsubscribe@opensuse.org For additional commands, e-mail: yast-devel+help@opensuse.org

Stanislav Visnovsky wrote:
On Piatok 06 March 2009 17:36:39 Thomas Goettlicher wrote:
Nice, but ... http://lizards.opensuse.org/2009/03/06/context-menus-in-yast-partitioner/ (menu with no compatible buttons below) ... shows the very first example of usage which is also a bit incompatible with the Thomas' statement: --- cut --- A Context menu provides shortcuts to actions for a certain widget or item. This features improves usability when it’s used properly. Application programmers should avoid making certain features only using context menus because users might not find them. Please keep in mind that YaST ncurses doesn’t provide context menus. Each operation that is only available via a context menu is useless in YaST ncurses because the user cannot select it. --- cut --- Is usability a "rule" or rather a "suggestion"? Do we have another options? For instance, [Menu Button] if all the available functionality (buttons) don't fit the screen? Thx && Bye Lukas
participants (3)
-
Lukas Ocilka
-
Stanislav Visnovsky
-
Thomas Goettlicher