mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
29 lines
888 B
C++
29 lines
888 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2015 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
#include "blackmisc/input/registermetadatainput.h"
|
|
|
|
// Input headers
|
|
#include "blackmisc/input/actionhotkeylist.h"
|
|
#include "blackmisc/input/hotkeycombination.h"
|
|
#include "blackmisc/input/keyboardkeylist.h"
|
|
#include "blackmisc/input/joystickbuttonlist.h"
|
|
|
|
#include <QDBusMetaType>
|
|
|
|
namespace BlackMisc::Input
|
|
{
|
|
void registerMetadata()
|
|
{
|
|
CActionHotkey::registerMetadata();
|
|
CActionHotkeyList::registerMetadata();
|
|
CHotkeyCombination::registerMetadata();
|
|
CJoystickButton::registerMetadata();
|
|
CJoystickButtonList::registerMetadata();
|
|
CKeyboardKey::registerMetadata();
|
|
CKeyboardKeyList::registerMetadata();
|
|
qDBusRegisterMetaType<KeyCode>();
|
|
}
|
|
|
|
} // ns
|