Step 3 - Create an overlay

In this step you create an overlay that opens on top of the Settings application screen. You set the overlay to close when the user presses a keyboard key.

Create an overlay

In this section you create an overlay that opens when the user selects a specific item in a List Box.

To create an overlay:

  1. In the Node Tree select the Settings > SettingsMenu node and in the Node Components create a List Box: Item Selected trigger.

    You use this trigger to show the overlay when the user selects a specific item in a List Box.

    ../../_images/settingsmenu.png ../../_images/list-box-item-selected.png
  2. In the List Box: Item Selected trigger create a Set Property action and set:

    • Target Item to #Overlay

    • Target Property to Node > Visible

    • Value From to Fixed value

    • Fixed Value to enabled

    You set the Overlay to be visible when the user selects an item in the List Box node SettingsMenu. In the next step, you set which list item the user must select for the overlay to appear.

    ../../_images/list-box-item-selected-set-property.png
  3. In the Node Components in the List Box: Item Selected trigger right-click Conditions, select Trigger Condition, and in the condition set:

    • A

      • Type of A to Message argument

      • Message Argument to Selection

    • Operation to =

    • B

      • Type of B to Fixed

      • Fixed Value to 2

    With this condition you set the overlay to appear when the user selects the third item in the List Box node SettingsMenu. In the SettingsMenu node the third item is Car with the red warning indicator.

    ../../_images/create-trigger-condition.png ../../_images/trigger-condition.png
  4. In the Node Tree select the Settings > Overlay node and in the Properties add and set:

    • Focus Scope > Focus Scope Type to Auto-Closing Modal

    • Input > Hit Testable to enabled

    This way you make the Overlay node an auto-closing modal overlay which loses focus when key and touch input comes from outside of its boundaries.

    ../../_images/popup.png ../../_images/popup-properties.png
  5. In the Node Components > Triggers, create a Focus > Input Outside Overlay message trigger.

    Kanzi sets off the Focus: Input Outside Overlay trigger when the user taps the application area outside the Overlay node.

    ../../_images/input-outside-overlay-create.png
  6. In the Focus: Input Outside Overlay trigger, create a Set Property action, and set:

    • Target Property to Node > Visible

    • Value From to Fixed Value

    • Fixed Value to disabled

    This way you hide the Overlay node when the user taps outside it. When you hide the Overlay node, focus moves back to the SettingsMenu node.

    ../../_images/input-outside-overlay-set-property.png

In the Settings application, when in the SettingsMenu you select the Car item Kanzi shows the overlay. To close the overlay click anywhere outside the overlay.

../../_images/show-popup.gif

Close the overlay with a key

In this section you set the overlay to close when the user presses a specific keyboard key.

To close the overlay with a key:

  1. In the Node Tree select the Settings > Overlay node, in the Node Components > Input Manipulators create a Key Manipulator, and set the Logical Key to Enter.

    ../../_images/popup.png ../../_images/logical-key.png
  2. In the Node Components > Triggers, create a Key Input: Key Pressed trigger.

    ../../_images/key-pressed.png
  3. In the Node Components, from the Focus: Input Outside Overlay trigger, copy the Set Property action to the Key Input: Key Pressed trigger.

    You use this action to hide the Overlay node when the user presses the Enter key. This way you close the overlay and return the focus to the SettingsMenu node.

    ../../_images/copy-set-property-action.png ../../_images/paste-set-property-action.png

Now you can use these keyboard keys to move the focus in the application:

  • Tab and Shift Tab keys to navigate between the application screens.

  • key to move focus to the Media and Settings applications.

  • In the Media screen:

    • Tab and Shift Tab keys to navigate between the List Box nodes.

    • and keys to scroll the items in the List Box nodes.

    • Esc key to move focus back to the navigation bar.

  • In the Settings screen:

    • and keys to scroll the items in the List Box node.

    • Enter key to close the overlay.

    • Esc key to move focus back to the navigation bar.

../../_images/focus-tutorial-complete.gif

< Previous step

See also

To learn more about focus, see Focus.

To learn more about triggers and actions, see Triggers.