1/*
2 SPDX-FileCopyrightText: 2008 Michael Jansen <kde@michael-jansen.biz>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#ifndef KGLOBALSHORTCUTINFO_P_H
8#define KGLOBALSHORTCUTINFO_P_H
9
10/**
11 * @internal
12 */
13
14static const int maxSequenceLength = 4;
15
16#include "kglobalaccel.h"
17#include "kglobalshortcutinfo.h"
18
19class KGlobalShortcutInfoPrivate
20{
21public:
22 QString contextUniqueName;
23 QString contextFriendlyName;
24 QString componentUniqueName;
25 QString componentFriendlyName;
26 QString uniqueName;
27 QString friendlyName;
28 QList<QKeySequence> keys;
29 QList<QKeySequence> defaultKeys;
30};
31
32#endif /* #ifndef KGLOBALSHORTCUTINFO_P_H */
33

source code of kglobalaccel/src/kglobalshortcutinfo_p.h