File indexing completed on 2024-12-08 03:39:24
0001 /* 0002 SPDX-FileCopyrightText: 2008 Michael Jansen <kde@michael-jansen.biz> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef KGLOBALSHORTCUTINFO_P_H 0008 #define KGLOBALSHORTCUTINFO_P_H 0009 0010 /** 0011 * @internal 0012 */ 0013 0014 static const int maxSequenceLength = 4; 0015 0016 #include "kglobalaccel.h" 0017 #include "kglobalshortcutinfo.h" 0018 0019 class KGlobalShortcutInfoPrivate 0020 { 0021 public: 0022 QString contextUniqueName; 0023 QString contextFriendlyName; 0024 QString componentUniqueName; 0025 QString componentFriendlyName; 0026 QString uniqueName; 0027 QString friendlyName; 0028 QList<QKeySequence> keys; 0029 QList<QKeySequence> defaultKeys; 0030 }; 0031 0032 #endif /* #ifndef KGLOBALSHORTCUTINFO_P_H */