mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 14:54:17 +00:00
29 lines
669 B
C++
29 lines
669 B
C++
|
/*
|
||
|
SPDX-FileCopyrightText: 2021 Cyril Rossi <cyril.rossi@enioka.com>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#include "keyboardsettingsdata.h"
|
||
|
|
||
|
#include "keyboard_config.h"
|
||
|
#include "keyboardmiscsettings.h"
|
||
|
|
||
|
KeyboardSettingsData::KeyboardSettingsData(QObject *parent, const QVariantList &args)
|
||
|
: KCModuleData(parent, args)
|
||
|
, m_keyboardConfig(new KeyboardConfig(this))
|
||
|
, m_miscSettings(new KeyboardMiscSettings(this))
|
||
|
{
|
||
|
autoRegisterSkeletons();
|
||
|
}
|
||
|
|
||
|
KeyboardConfig *KeyboardSettingsData::keyboardConfig() const
|
||
|
{
|
||
|
return m_keyboardConfig;
|
||
|
}
|
||
|
|
||
|
KeyboardMiscSettings *KeyboardSettingsData::miscSettings() const
|
||
|
{
|
||
|
return m_miscSettings;
|
||
|
}
|