mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-10 08:14:47 -07:00
added message shortcuts
This commit is contained in:
parent
fb03c5cdbb
commit
6a537979d0
7 changed files with 158 additions and 7 deletions
|
|
@ -21,14 +21,14 @@ Player::Player(const QString &_name, int _id, QPointF _base, bool _local, CardDa
|
|||
|
||||
aViewLibrary = new QAction(tr("&View library"), this);
|
||||
if (local)
|
||||
aViewLibrary->setShortcut(tr("F5"));
|
||||
aViewLibrary->setShortcut(tr("F3"));
|
||||
connect(aViewLibrary, SIGNAL(triggered()), this, SLOT(actViewLibrary()));
|
||||
aViewTopCards = new QAction(tr("View &top cards of library..."), this);
|
||||
connect(aViewTopCards, SIGNAL(triggered()), this, SLOT(actViewTopCards()));
|
||||
|
||||
aViewGraveyard = new QAction(tr("&View graveyard"), this);
|
||||
if (local)
|
||||
aViewGraveyard->setShortcut(tr("F6"));
|
||||
aViewGraveyard->setShortcut(tr("F4"));
|
||||
connect(aViewGraveyard, SIGNAL(triggered()), this, SLOT(actViewGraveyard()));
|
||||
|
||||
aViewRfg = new QAction(tr("&View removed cards"), this);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue