12 lines
272 B
C++
12 lines
272 B
C++
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <QKeySequence>
|
|
#include <QStringView>
|
|
|
|
#include <optional>
|
|
|
|
std::optional<Qt::Key> numberRowKey(QStringView layout, QStringView variant, int number, bool shifted);
|
|
QList<QKeySequence> numberRowShortcuts(int number);
|