File indexing completed on 2024-04-28 05:52:14

0001 // SPDX-License-Identifier: LGPL-2.1-only
0002 
0003 #include "qglobalshortcut.h"
0004 #include <QKeySequence>
0005 
0006 quint32 QGlobalShortcut::toNativeKeycode(Qt::Key k) {
0007     // TODO
0008 }
0009 
0010 quint32 QGlobalShortcut::toNativeModifiers(Qt::KeyboardModifiers m) {
0011     // TODO
0012 }
0013 
0014 void QGlobalShortcut::registerKey(quint32 k, quint32 m) {
0015     // TODO
0016 }
0017 
0018 void QGlobalShortcut::unregisterKey(quint32 k, quint32 m) {
0019     // TODO
0020 }
0021