assign numbers 1-9 as shortcuts for the first 9 results of system applications

This commit is contained in:
2019-06-01 13:38:58 +02:00
parent 45abb2bf27
commit 1dc7ef935d
3 changed files with 8 additions and 3 deletions

View File

@ -57,6 +57,7 @@ int EntryPushButton::getRow() const { return config.row; }
int EntryPushButton::getCol() const { return config.col; }
QString EntryPushButton::getName() const { return config.name; }
QString EntryPushButton::getShortcutKey() const { return config.key; }
void EntryPushButton::setShortcutKey(QString key) { this->config.key = key; }
void EntryPushButton::setRow(int row) { this->config.row = row; }
void EntryPushButton::setCol(int col) { this->config.col = col; }
QStringList EntryPushButton::getArguments() const { return this->config.arguments; }