Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Shortcut Key not working in Context Menu
Forum Updated to NodeBB v4.3 + New Features

Shortcut Key not working in Context Menu

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 1.8k Views 1 Watching
  • 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.
  • M Offline
    M Offline
    mmallad
    wrote on last edited by
    #1

    I have created context menu for my QTableWidget
    @
    QAction *action = new QAction(tr("&Load Job"),this);
    action->setShortcut(Qt::Key_Enter);
    connect(action,SIGNAL(triggered()),this,SLOT(LoadJobData()));
    ui->tableCompanyList->addAction(action);
    ui->tableCompanyList->setContextMenuPolicy(Qt::ActionsContextMenu);
    @
    and in LoadJobData() SLOT:
    @
    qDebug() << "I should be called here !";
    @

    • The problem is that It does not work when I press enter key.
    • But It works when I right click and press Load Job

    Dpak Malla

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      I think the enter key is not the best choice for a shortcut, it's wildly used for other purposes. You should at least make it a two key shortcut alt+enter etc...

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      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