Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. set top box UI with qt

set top box UI with qt

Scheduled Pinned Locked Moved Unsolved Mobile and Embedded
2 Posts 2 Posters 551 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    Alex_wang
    wrote on last edited by
    #1

    hi,

    I use qt to design the set top box UI,and a remote tv controller can control the UI with the key "Up", "Down","Left","Right" .
    The UI has received the key information from the remote tv controller,
    but how to Switch the UI interface with the key information like that the UI responses the keyboard

    1 Reply Last reply
    0
    • K Offline
      K Offline
      kumararajas
      wrote on last edited by
      #2

      It purely looks like specific implementation.

      Your architecture should talk about this.

      For example, When you press right arrow, say you want to change the channel

      switch(key)
      {
          case Right:
          {
              funcShowNextChannel();
          }
          break;
          case Left:
          {
              funcShowPrevChannel();
          }
          default:
          break;
      }
      

      Something like this may help you.

      --Kumar

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved