33 lines
1,013 B
C++
33 lines
1,013 B
C++
/*---------------------------------------------------------*\
|
|
| OpenRGBQMKORGBSettingsEntry.cpp |
|
|
| |
|
|
| User interface entry for OpenRGB QMK configuration |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "OpenRGBQMKORGBSettingsEntry.h"
|
|
#include "ui_OpenRGBQMKORGBSettingsEntry.h"
|
|
|
|
using namespace Ui;
|
|
|
|
OpenRGBQMKORGBSettingsEntry::OpenRGBQMKORGBSettingsEntry(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::OpenRGBQMKORGBSettingsEntryUi)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
OpenRGBQMKORGBSettingsEntry::~OpenRGBQMKORGBSettingsEntry()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void OpenRGBQMKORGBSettingsEntry::changeEvent(QEvent *event)
|
|
{
|
|
if(event->type() == QEvent::LanguageChange)
|
|
{
|
|
ui->retranslateUi(this);
|
|
}
|
|
}
|