mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-30 10:47:50 -05:00
* Removing .qm files from Windows build as they are inbuilt as of a7adfe251
* Moving translation change code to the OpenRGBSettingsPage
* Adding a changeEvent() to applicable Widgets to facilitate language updates
* Workaround added to TabLabel to accomodate translation context origin
* Added zh_TW locale to OpenRGB.pro
* Updated all translations to include the latest untranslated strings
42 lines
884 B
C++
42 lines
884 B
C++
#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();
|
|
}
|