mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-27 09:17:51 -05:00
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
/*---------------------------------------------------------*\
|
|
| OpenRGBPluginContainer.h |
|
|
| |
|
|
| User interface entry for OpenRGB plugin container widget|
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "OpenRGBPluginContainer.h"
|
|
#include "ui_OpenRGBPluginContainer.h"
|
|
|
|
Ui::OpenRGBPluginContainer::OpenRGBPluginContainer(QWidget *plugin, QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::OpenRGBPluginContainerUi)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
plugin_widget = plugin;
|
|
plugin_widget->setParent(this);
|
|
|
|
ui->PluginContainerLayout->layout()->addWidget(plugin_widget);
|
|
|
|
Hide();
|
|
}
|
|
|
|
Ui::OpenRGBPluginContainer::~OpenRGBPluginContainer()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void Ui::OpenRGBPluginContainer::changeEvent(QEvent *event)
|
|
{
|
|
if(event->type() == QEvent::LanguageChange)
|
|
{
|
|
ui->retranslateUi(this);
|
|
}
|
|
}
|
|
|
|
void Ui::OpenRGBPluginContainer::Hide()
|
|
{
|
|
plugin_widget->hide();
|
|
ui->PluginContainerLayout->layout()->invalidate();
|
|
}
|
|
|
|
void Ui::OpenRGBPluginContainer::Show()
|
|
{
|
|
plugin_widget->show();
|
|
ui->PluginContainerLayout->layout()->invalidate();
|
|
}
|